#[repr(C)]pub struct TenuredHeap {
pub bits: usize,
}Expand description
The TenuredHeap
-
Pointers which are statically known to only reference “tenured” objects can avoid the extra overhead of SpiderMonkey’s post write barriers.
-
Objects in the “tenured” heap have stronger alignment restrictions than those in the “nursery”, so it is possible to store flags in the lower bits of pointers known to be tenured. TenuredHeap wraps a normal tagged pointer with a nice API for accessing the flag bits and adds various assertions to ensure that it is not mis-used.
GC things are said to be “tenured” when they are located in the long-lived heap: e.g. they have gained tenure as an object by surviving past at least one GC. For performance, SpiderMonkey allocates some things which are known to normally be long lived directly into the tenured generation; for example, global objects. Additionally, SpiderMonkey does not visit individual objects when deleting non-tenured objects, so object with finalizers are also always tenured; for instance, this includes most DOM objects.
The considerations to keep in mind when using a TenuredHeap
- It is invalid for a TenuredHeap
to refer to a non-tenured thing. - It is however valid for a Heap
to refer to a tenured thing. - It is not possible to store flag bits in a Heap
.
Fields§
§bits: usizeTrait Implementations§
Source§impl Debug for TenuredHeap
impl Debug for TenuredHeap
Source§impl PartialEq for TenuredHeap
impl PartialEq for TenuredHeap
impl StructuralPartialEq for TenuredHeap
Auto Trait Implementations§
impl Freeze for TenuredHeap
impl RefUnwindSafe for TenuredHeap
impl Send for TenuredHeap
impl Sync for TenuredHeap
impl Unpin for TenuredHeap
impl UnwindSafe for TenuredHeap
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
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes