Expand description
This module provides the trait Slot and related traits and types which allow VMs to
customize the layout of slots and the behavior of loading and updating object references in
slots.
Structs§
- Address
Range Iterator - Iterate slots within
Range<Address>. - Simple
Slot - A simple slot implementation that represents a word-sized slot which holds the raw address of
an
ObjectReference, or 0 if it is holding a null reference. - Unimplemented
Memory Slice - Memory slice type with empty implementations. For VMs that do not use the memory slice type.
- Unimplemented
Memory Slice Slot Iterator - Slot iterator for
UnimplementedMemorySlice.
Traits§
- Memory
Slice - A abstract memory slice represents a piece of heap memory which may contains many slots.
- Slot
Slotis an abstraction for MMTk to load and update object references in memory.