pub(super) struct ConcurrentImmixGCWorkContext<VM>(PhantomData<VM>);Expand description
The GCWorkContext implementation for concurrent marking. Note that it overrides the
RootsWorkFactory.
Tuple Fields§
§0: PhantomData<VM>Trait Implementations§
Source§impl<VM: VMBinding> GCWorkContext for ConcurrentImmixGCWorkContext<VM>
impl<VM: VMBinding> GCWorkContext for ConcurrentImmixGCWorkContext<VM>
type VM = VM
type PlanType = ConcurrentImmix<VM>
Source§type DefaultTrace = PlanTrace<<ConcurrentImmixGCWorkContext<VM> as GCWorkContext>::PlanType, TRACE_KIND_FAST>
type DefaultTrace = PlanTrace<<ConcurrentImmixGCWorkContext<VM> as GCWorkContext>::PlanType, TRACE_KIND_FAST>
The
Trace implementation to use for tracing edges that do not have special pinning
requirements. Concrete plans and spaces may choose to move or not to move the objects the
traced edges point to.Source§type PinningTrace = PlanTrace<<ConcurrentImmixGCWorkContext<VM> as GCWorkContext>::PlanType, TRACE_KIND_FAST>
type PinningTrace = PlanTrace<<ConcurrentImmixGCWorkContext<VM> as GCWorkContext>::PlanType, TRACE_KIND_FAST>
Source§fn make_roots_work_factory(
mmtk: &'static MMTK<Self::VM>,
) -> impl RootsWorkFactory<<Self::VM as VMBinding>::VMSlot>
fn make_roots_work_factory( mmtk: &'static MMTK<Self::VM>, ) -> impl RootsWorkFactory<<Self::VM as VMBinding>::VMSlot>
Create an instance of
RootsWorkFactory for root scanning in the current GC. Read moreAuto Trait Implementations§
impl<VM> Freeze for ConcurrentImmixGCWorkContext<VM>
impl<VM> RefUnwindSafe for ConcurrentImmixGCWorkContext<VM>where
VM: RefUnwindSafe,
impl<VM> Send for ConcurrentImmixGCWorkContext<VM>where
VM: Send,
impl<VM> Sync for ConcurrentImmixGCWorkContext<VM>where
VM: Sync,
impl<VM> Unpin for ConcurrentImmixGCWorkContext<VM>where
VM: Unpin,
impl<VM> UnwindSafe for ConcurrentImmixGCWorkContext<VM>where
VM: UnwindSafe,
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>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which 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)
Converts
&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)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more