Struct mmtk::util::heap::gc_trigger::MemBalancerStats
source · struct MemBalancerStats {
allocation_pages_prev: Option<f64>,
allocation_time_prev: Option<f64>,
collection_pages_prev: Option<f64>,
collection_time_prev: Option<f64>,
allocation_pages: f64,
allocation_time: f64,
collection_pages: f64,
collection_time: f64,
gc_start_time: Instant,
gc_end_time: Instant,
gc_release_live_pages: usize,
gc_end_live_pages: usize,
}
Fields§
§allocation_pages_prev: Option<f64>
Previous allocated memory in pages.
allocation_time_prev: Option<f64>
Previous allocation duration in secs
collection_pages_prev: Option<f64>
Previous collected memory in pages
collection_time_prev: Option<f64>
Previous colleciton duration in secs
allocation_pages: f64
Allocated memory in pages
allocation_time: f64
Allocation duration in secs
collection_pages: f64
Collected memory in pages (memory traversed during collection)
collection_time: f64
Collection duration in secs
gc_start_time: Instant
The time when this GC starts
gc_end_time: Instant
The time when this GC ends
gc_release_live_pages: usize
The live pages before we release memory.
gc_end_live_pages: usize
The live pages at the GC end
Implementations§
source§impl MemBalancerStats
impl MemBalancerStats
fn generational_mem_stats_on_gc_start<VM: VMBinding>( &mut self, _plan: &dyn GenerationalPlan<VM = VM> )
fn generational_mem_stats_on_gc_release<VM: VMBinding>( &mut self, plan: &dyn GenerationalPlan<VM = VM> )
sourcefn generational_mem_stats_on_gc_end<VM: VMBinding>(
&mut self,
plan: &dyn GenerationalPlan<VM = VM>
) -> bool
fn generational_mem_stats_on_gc_end<VM: VMBinding>( &mut self, plan: &dyn GenerationalPlan<VM = VM> ) -> bool
Return true if we should compute a new heap limit. Only do so at the end of a mature GC
fn non_generational_mem_stats_on_gc_start<VM: VMBinding>( &mut self, mmtk: &'static MMTK<VM> )
fn non_generational_mem_stats_on_gc_release<VM: VMBinding>( &mut self, mmtk: &'static MMTK<VM> )
fn non_generational_mem_stats_on_gc_end<VM: VMBinding>( &mut self, mmtk: &'static MMTK<VM> )
Trait Implementations§
source§impl Clone for MemBalancerStats
impl Clone for MemBalancerStats
source§fn clone(&self) -> MemBalancerStats
fn clone(&self) -> MemBalancerStats
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for MemBalancerStats
impl Debug for MemBalancerStats
source§impl Default for MemBalancerStats
impl Default for MemBalancerStats
impl Copy for MemBalancerStats
Auto Trait Implementations§
impl RefUnwindSafe for MemBalancerStats
impl Send for MemBalancerStats
impl Sync for MemBalancerStats
impl Unpin for MemBalancerStats
impl UnwindSafe for MemBalancerStats
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>
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>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
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.§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