Module mmtk::util::alloc::allocators
source · Expand description
A list of all the allocators, embedded in Mutator
Structs§
Enums§
- This type describes allocator information. It is used to generate fast paths for the GC. All offset fields are relative to
Mutator
. - This type describe an allocator in the
crate::Mutator
. For some VM bindings, they may need to access this type from native code. This type is equivalent to the following native types: #[repr(C)] struct AllocatorSelector { tag: AllocatorSelectorTag, payload: u8, } #[repr(u8)] enum AllocatorSelectorTag { BumpPointer, LargeObject, … }