pub struct JitAllocator { /* private fields */ }
Expand description
A simple implementation of memory manager that uses virtual_memory. functions to manage virtual memory for JIT compiled code.
Implementation notes:
-
Granularity of allocated blocks is different than granularity for a typical C malloc. In addition, the allocator can use several memory pools having a different granularity to minimize the maintenance overhead. Multiple pools feature requires
kFlagUseMultiplePools
flag to be set. -
The allocator doesn’t store any information in executable memory, instead, the implementation uses two bit-vectors to manage allocated memory of each allocator-block. The first bit-vector called ‘used’ is used to track used memory (where each bit represents memory size defined by granularity) and the second bit vector called ‘stop’ is used as a sentinel to mark where the allocated area ends.
-
Internally, the allocator also uses RB tree to keep track of all blocks across all pools. Each inserted block is added to the tree so it can be matched fast during
release()
andshrink()
.
Implementations§
Source§impl JitAllocator
impl JitAllocator
Sourcepub fn new(params: JitAllocatorOptions) -> Box<Self>
pub fn new(params: JitAllocatorOptions) -> Box<Self>
Creates a new JitAllocator instance.
Sourcepub unsafe fn reset(&mut self, reset_policy: ResetPolicy)
pub unsafe fn reset(&mut self, reset_policy: ResetPolicy)
Resets current allocator by emptying all pools and blocks.
Frees all memory is ResetPolicy::Hard
is specified or immediate_release
in JitAllocatorOptions is specific.
Sourcepub fn alloc(&mut self, size: usize) -> Result<(*const u8, *mut u8), Error>
pub fn alloc(&mut self, size: usize) -> Result<(*const u8, *mut u8), Error>
Allocates size
bytes in the executable memory region.
Returns two pointers. One points to Read-Execute mapping and another to Read-Write mapping.
All code writes must go to the Read-Write mapping.
Sourcepub unsafe fn release(&mut self, rx_ptr: *const u8) -> Result<(), Error>
pub unsafe fn release(&mut self, rx_ptr: *const u8) -> Result<(), Error>
Releases the memory allocated by alloc
.
§SAFETY
rx_ptr
must have been returned fromalloc
rx_ptr
must have been allocaetd from this allocatorrx_ptr
must not have been passed torelease
beforerx_ptr
must point to read-execute part of memory returned fromalloc
.