Skip to content

Commit dbca154

Browse files
committed
Removed unused ppp.rs
1 parent 14e8f4d commit dbca154

File tree

5 files changed

+1
-172
lines changed

5 files changed

+1
-172
lines changed

gc/mmtk/src/binding.rs

-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ use mmtk::MMTK;
1010

1111
use crate::abi;
1212
use crate::abi::RubyBindingOptions;
13-
use crate::ppp::PPPRegistry;
1413
use crate::weak_proc::WeakProcessor;
1514
use crate::Ruby;
1615

@@ -60,7 +59,6 @@ pub struct RubyBinding {
6059
pub upcalls: *const abi::RubyUpcalls,
6160
pub plan_name: Mutex<Option<CString>>,
6261
pub weak_proc: WeakProcessor,
63-
pub ppp_registry: PPPRegistry,
6462
pub(crate) moved_givtbl: Mutex<HashMap<ObjectReference, MovedGIVTblEntry>>,
6563
pub gc_thread_join_handles: Mutex<Vec<JoinHandle<()>>>,
6664
pub wb_unprotected_objects: Mutex<HashSet<ObjectReference>>,
@@ -88,7 +86,6 @@ impl RubyBinding {
8886
upcalls,
8987
plan_name: Mutex::new(None),
9088
weak_proc: WeakProcessor::new(),
91-
ppp_registry: PPPRegistry::new(),
9289
moved_givtbl: Default::default(),
9390
gc_thread_join_handles: Default::default(),
9491
wb_unprotected_objects: Default::default(),

gc/mmtk/src/collection.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ impl Collection<Ruby> for VMCollection {
1616
crate::CONFIGURATION.gc_enabled.load(Ordering::Relaxed)
1717
}
1818

19-
fn stop_all_mutators<F>(tls: VMWorkerThread, mut mutator_visitor: F)
19+
fn stop_all_mutators<F>(_tls: VMWorkerThread, mut mutator_visitor: F)
2020
where
2121
F: FnMut(&'static mut mmtk::Mutator<Ruby>),
2222
{
2323
(upcalls().stop_the_world)();
24-
crate::binding().ppp_registry.pin_ppp_children(tls);
2524
(upcalls().get_mutators)(
2625
Self::notify_mutator_ready::<F>,
2726
&mut mutator_visitor as *mut F as *mut _,

gc/mmtk/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ extern crate libc;
22
extern crate mmtk;
33
#[macro_use]
44
extern crate log;
5-
#[macro_use]
65
extern crate probe;
76

87
use std::collections::HashSet;
@@ -23,7 +22,6 @@ pub mod api;
2322
pub mod binding;
2423
pub mod collection;
2524
pub mod object_model;
26-
pub mod ppp;
2725
pub mod reference_glue;
2826
pub mod scanning;
2927
pub mod utils;

gc/mmtk/src/ppp.rs

-164
This file was deleted.

gc/mmtk/src/scanning.rs

-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ impl Scanning<Ruby> for VMScanning {
134134
crate::binding()
135135
.weak_proc
136136
.process_weak_stuff(worker, tracer_context);
137-
crate::binding().ppp_registry.cleanup_ppps();
138137
false
139138
}
140139

0 commit comments

Comments
 (0)