Struct mmtk::scheduler::gc_work::SFTProcessEdges
source · pub struct SFTProcessEdges<VM: VMBinding> {
pub base: ProcessEdgesBase<VM>,
}
Expand description
A general process edges implementation using SFT. A plan can always implement their own process edges. However,
Most plans can use this work packet for tracing amd they do not need to provide a plan-specific trace object work packet.
If they choose to use this type, they need to provide a correct implementation for some related methods
(such as Space.set_copy_for_sft_trace()
, SFT.sft_trace_object()
).
Some plans are not using this type, mostly due to more complex tracing. Either it is impossible to use this type, or
there is performance overheads for using this general trace type. In such cases, they implement their specific process edges.
Fields§
§base: ProcessEdgesBase<VM>
Methods from Deref<Target = ProcessEdgesBase<VM>>§
pub fn set_worker(&mut self, worker: &mut GCWorker<VM>)
pub fn worker(&self) -> &'static mut GCWorker<VM>
pub fn mmtk(&self) -> &'static MMTK<VM>
pub fn plan(&self) -> &'static dyn Plan<VM = VM>
sourcepub fn pop_nodes(&mut self) -> Vec<ObjectReference>
pub fn pop_nodes(&mut self) -> Vec<ObjectReference>
Pop all nodes from nodes, and clear nodes to an empty vector.
pub fn is_roots(&self) -> bool
Trait Implementations§
source§impl<VM: VMBinding> Deref for SFTProcessEdges<VM>
impl<VM: VMBinding> Deref for SFTProcessEdges<VM>
source§impl<VM: VMBinding> DerefMut for SFTProcessEdges<VM>
impl<VM: VMBinding> DerefMut for SFTProcessEdges<VM>
source§impl<VM: VMBinding> ProcessEdgesWork for SFTProcessEdges<VM>
impl<VM: VMBinding> ProcessEdgesWork for SFTProcessEdges<VM>
§type ScanObjectsWorkType = ScanObjects<SFTProcessEdges<VM>>
type ScanObjectsWorkType = ScanObjects<SFTProcessEdges<VM>>
The work packet type for scanning objects when using this ProcessEdgesWork.
source§fn new(
edges: Vec<<<Self as ProcessEdgesWork>::VM as VMBinding>::VMEdge>,
roots: bool,
mmtk: &'static MMTK<VM>,
bucket: WorkBucketStage
) -> Self
fn new( edges: Vec<<<Self as ProcessEdgesWork>::VM as VMBinding>::VMEdge>, roots: bool, mmtk: &'static MMTK<VM>, bucket: WorkBucketStage ) -> Self
Create a
ProcessEdgesWork
. Read moresource§fn trace_object(&mut self, object: ObjectReference) -> ObjectReference
fn trace_object(&mut self, object: ObjectReference) -> ObjectReference
Trace an MMTk object. The implementation should forward this call to the policy-specific
trace_object()
methods, depending on which space this object is in.
If the object is not in any MMTk space, the implementation should forward the call to
ActivePlan::vm_trace_object()
to let the binding handle the tracing.source§fn create_scan_work(
&self,
nodes: Vec<ObjectReference>,
roots: bool
) -> ScanObjects<Self>
fn create_scan_work( &self, nodes: Vec<ObjectReference>, roots: bool ) -> ScanObjects<Self>
Create an object-scanning work packet to be used for this ProcessEdgesWork. Read more
source§const CAPACITY: usize = 4_096usize
const CAPACITY: usize = 4_096usize
The maximum number of edges that should be put to one of this work packets.
The caller who creates a work packet of this trait should be responsible to
comply with this capacity.
Higher capacity means the packet will take longer to finish, and may lead to
bad load balancing. On the other hand, lower capacity would lead to higher cost
on scheduling many small work packets. It is important to find a proper capacity.
source§const OVERWRITE_REFERENCE: bool = true
const OVERWRITE_REFERENCE: bool = true
Do we update object reference? This has to be true for a moving GC.
source§const SCAN_OBJECTS_IMMEDIATELY: bool = true
const SCAN_OBJECTS_IMMEDIATELY: bool = true
If true, we do object scanning in this work packet with the same worker without scheduling overhead.
If false, we will add object scanning work packets to the global queue and allow other workers to work on it.
source§fn cache_roots_for_sanity_gc(&mut self)
fn cache_roots_for_sanity_gc(&mut self)
If the work includes roots, we will store the roots somewhere so for sanity GC, we can do another
transitive closure from the roots.
source§fn start_or_dispatch_scan_work(&mut self, work_packet: impl GCWork<Self::VM>)
fn start_or_dispatch_scan_work(&mut self, work_packet: impl GCWork<Self::VM>)
Start the a scan work packet. If SCAN_OBJECTS_IMMEDIATELY, the work packet will be executed immediately, in this method.
Otherwise, the work packet will be added the Closure work bucket and will be dispatched later by the scheduler.
source§fn flush(&mut self)
fn flush(&mut self)
Flush the nodes in ProcessEdgesBase, and create a ScanObjects work packet for it. If the node set is empty,
this method will simply return with no work packet created.
source§fn process_edge(
&mut self,
slot: <<Self as ProcessEdgesWork>::VM as VMBinding>::VMEdge
)
fn process_edge( &mut self, slot: <<Self as ProcessEdgesWork>::VM as VMBinding>::VMEdge )
Process an edge, including loading the object reference from the memory slot,
trace the object and store back the new object reference if necessary.
source§fn process_edges(&mut self)
fn process_edges(&mut self)
Process all the edges in the work packet.
Auto Trait Implementations§
impl<VM> !RefUnwindSafe for SFTProcessEdges<VM>
impl<VM> Send for SFTProcessEdges<VM>
impl<VM> !Sync for SFTProcessEdges<VM>
impl<VM> Unpin for SFTProcessEdges<VM>where <VM as VMBinding>::VMEdge: Unpin,
impl<VM> !UnwindSafe for SFTProcessEdges<VM>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.