v8/include/cppgc
Michael Lippautz 852294fc4a heap,cppgc: Support for termination GC
Termination GCs are used to destroy remaining C++ object on the
managed heap to free potential off-heap memory. This is important for
gracefully shutting down workers.

Drive-by: Add guard prohibiting recursive sweeping calls on the
  mutator thread.

Bug: chromium:1056170
Change-Id: I02ea3b632d38f5beab18cc8f077cf717ed877909
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2631504
Commit-Queue: Michael Lippautz <mlippautz@chromium.org>
Reviewed-by: Omer Katz <omerkatz@chromium.org>
Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#72155}
2021-01-19 14:08:18 +00:00
..
internal heap,cppgc: Support for termination GC 2021-01-19 14:08:18 +00:00
allocation.h cppgc: Add example for AdditionalBytes 2020-11-11 18:06:48 +00:00
common.h cppgc: Forward enum deprecation 2020-12-14 15:22:09 +00:00
cross-thread-persistent.h cppgc: Add support for const T in Member and friends 2021-01-14 09:10:25 +00:00
custom-space.h Reland "cppgc: Port backing store compaction." 2020-10-23 14:42:30 +00:00
default-platform.h cppgc: Fix and merge cppgc samples 2020-11-26 09:12:35 +00:00
DEPS cppgc: Use libplatform as default platform 2020-10-08 18:16:52 +00:00
ephemeron-pair.h cppgc: Improve API documentation 2020-10-19 09:36:18 +00:00
garbage-collected.h cppgc: Improve API documentation 2020-10-19 09:36:18 +00:00
heap-consistency.h cppgc: Refactor write barriers 2020-11-25 15:29:24 +00:00
heap.h cppgc: Allow to disable incremental marking/sweeping 2020-12-10 15:59:38 +00:00
liveness-broker.h cppgc: Improve API documentation 2020-10-19 09:36:18 +00:00
macros.h cppgc: Add initial implementation of young generation 2020-06-17 06:48:10 +00:00
member.h cppgc: Add support for const T in Member and friends 2021-01-14 09:10:25 +00:00
name-provider.h cppgc: Add naming infrastructure 2020-10-08 12:25:21 +00:00
OWNERS cppgc: Make bikineev and omerkatz owners of include/cppgc 2020-08-28 08:05:30 +00:00
persistent.h cppgc: Add support for const T in Member and friends 2021-01-14 09:10:25 +00:00
platform.h cppgc: Provide default implementation of Platform::GetTracingController 2020-11-20 15:22:54 +00:00
prefinalizer.h cppgc: Add more basic type traits 2020-11-11 14:59:08 +00:00
README.md cppgc: Hello world 2020-03-23 21:42:56 +00:00
source-location.h cppgc: Improve API documentation 2020-10-19 09:36:18 +00:00
trace-trait.h cppgc: Provide TraceTraitBase that users can inherit from 2020-10-08 19:22:21 +00:00
type-traits.h cppgc: Add more basic type traits 2020-11-11 14:59:08 +00:00
visitor.h cppgc: Add more basic type traits 2020-11-11 14:59:08 +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.