Skip to content

Commit 1776af2

Browse files
committed
No scanning an object twice in each GC.
This PR forces each object to be scanned at most once in each GC. In this way, no two GC workers will scan the same object at the same time. This can solve some potential problems such as data races in cleaning the code cache. Currently this only affects the MarkSweep plan.
1 parent 65b0db6 commit 1776af2

File tree

3 files changed

+24
-19
lines changed

3 files changed

+24
-19
lines changed

mmtk/Cargo.lock

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mmtk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ features = ["is_mmtk_object", "object_pinning", "sticky_immix_non_moving_nursery
3737

3838
# Uncomment the following lines to use mmtk-core from the official repository.
3939
git = "https://github.com/mmtk/mmtk-core.git"
40-
rev = "ec745353a8de72b645613e0fef3ab7f5f1ad9bd1"
40+
rev = "68bf1b638263b250b12e55ef25bf8d09b01ca0b0"
4141

4242
# Uncomment the following line to use mmtk-core from a local repository.
4343
#path = "../../mmtk-core"

mmtk/src/scanning.rs

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ use mmtk::{Mutator, MutatorContext};
1010
pub struct VMScanning {}
1111

1212
impl Scanning<Ruby> for VMScanning {
13+
/// CRuby may do some non-thread-safe operations, such as cleaning up the call cache, while
14+
/// scanning an object. We force each object to be scanned at most once during each GC. This
15+
/// currently only affects the MarkSweep plan.
16+
const UNIQUE_OBJECT_ENQUEUING: bool = true;
17+
1318
fn support_slot_enqueuing(_tls: VMWorkerThread, _object: ObjectReference) -> bool {
1419
false
1520
}

0 commit comments

Comments
 (0)