-
-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade V8 binaries for 9.6.180.12 version
- Loading branch information
1 parent
ef77cad
commit edc2bd4
Showing
91 changed files
with
15,031 additions
and
12,942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# C++ Garbage Collection | ||
# Oilpan: C++ Garbage Collection | ||
|
||
This directory provides an open-source garbage collection library for C++. | ||
Oilpan is an open-source garbage collection library for C++ that can be used stand-alone or in collaboration with V8's JavaScript garbage collector. | ||
|
||
The library is under construction, meaning that *all APIs in this directory are incomplete and considered unstable and should not be used*. | ||
**Key properties** | ||
- Trace-based garbage collection; | ||
- Precise on-heap memory layout; | ||
- Conservative on-stack memory layout; | ||
- Allows for collection with and without considering stack; | ||
- Incremental and concurrent marking; | ||
- Incremental and concurrent sweeping; | ||
- Non-incremental and non-concurrent compaction for selected spaces; | ||
|
||
See the [Hello World](https://chromium.googlesource.com/v8/v8/+/main/samples/cppgc/hello-world.cc) example on how to get started using Oilpan to manage C++ code. | ||
|
||
Oilpan follows V8's project organization, see e.g. on how we accept [contributions](https://v8.dev/docs/contribute) and [provide a stable API](https://v8.dev/docs/api). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.