v8/include/cppgc
Anton Bikineev 5785d98b4b cppgc: Add initial implementation of young generation
This adds the following things:
- age table for 4K regions;
- generational barrier for mixed 4K regions;
- unmarking for major collections;
- young generation flags.

Bug: chromium:1029379
Change-Id: Ief1229f0dac5f90c5f06d3168c8ffb4b7d1f1b53
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2246566
Commit-Queue: Anton Bikineev <bikineev@chromium.org>
Reviewed-by: Omer Katz <omerkatz@chromium.org>
Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68379}
2020-06-17 06:48:10 +00:00
..
internal cppgc: Add initial implementation of young generation 2020-06-17 06:48:10 +00:00
allocation.h cppgc: Introduce AllocationHandle 2020-06-10 23:11:20 +00:00
common.h heap,cppgc: Update StackState enum values 2020-05-12 12:07:27 +00:00
custom-space.h cppgc: Allocation cleanups 2020-05-11 15:50:28 +00:00
DEPS cppgc: Add public target to build against 2020-04-21 12:48:23 +00:00
garbage-collected.h cppgc: Use static_assert to force semi colon after macro 2020-05-13 21:47:48 +00:00
heap.h cppgc: Various trivial fixes 2020-06-15 18:25:51 +00:00
liveness-broker.h cppgc: Add some more API documentation 2020-05-27 14:09:11 +00:00
macros.h cppgc: Add initial implementation of young generation 2020-06-17 06:48:10 +00:00
member.h Fix LINT exceptions across the code base 2020-04-27 16:37:04 +00:00
persistent.h Fix LINT exceptions across the code base 2020-04-27 16:37:04 +00:00
platform.h cppgc: Add basic heap growing strategy 2020-06-08 17:55:53 +00:00
prefinalizer.h cppgc: Rework pre-finalizer registration 2020-06-11 20:12:21 +00:00
README.md
source-location.h cppgc: Adds docs to SourceLocation 2020-06-08 18:31:36 +00:00
trace-trait.h cppgc: Another round of API docs 2020-06-08 13:06:22 +00:00
type-traits.h cppgc: Make Trace methods const 2020-04-20 13:15:13 +00:00
visitor.h cppgc: Another round of docs 2020-06-08 17:22:48 +00:00

C++ Garbage Collection

This directory provides an open-source garbage collection library for C++.

The library is under construction, meaning that all APIs in this directory are incomplete and considered unstable and should not be used.