ZoneAllocator

Struct ZoneAllocator 

Source
pub struct ZoneAllocator<'a> { /* private fields */ }
Expand description

A zone allocator for arbitrary sized allocations.

Has a bunch of SCAllocator and through that can serve allocation requests for many different object sizes up to (MAX_SIZE_CLASSES) by selecting the right SCAllocator for allocation and deallocation.

The allocator provides to refill functions refill and refill_large to provide the underlying SCAllocator with more memory in case it runs out.

Implementations§

Source§

impl<'a> ZoneAllocator<'a>

Source

pub const MAX_ALLOC_SIZE: usize = 131_072usize

Maximum size that allocated within LargeObjectPages (2 MiB). This is also the maximum object size that this allocator can handle.

Source

pub const MAX_BASE_ALLOC_SIZE: usize = 256usize

Maximum size which is allocated with ObjectPages (4 KiB pages).

e.g. this is 4 KiB - 80 bytes of meta-data.

Source

pub const fn new() -> ZoneAllocator<'a>

Source

pub fn get_max_size(current_size: usize) -> Option<usize>

Return maximum size an object of size current_size can use.

Used to optimize realloc.

Source

pub fn try_reclaim_base_pages<F>(&mut self, to_reclaim: usize, dealloc: F)
where F: Fn(*mut ObjectPage<'_>),

Reclaims empty pages by calling dealloc on it and removing it from the empty lists in the SCAllocator.

The dealloc function is called at most reclaim_base_max times for base pages, and at most reclaim_large_max for large pages.

Source

pub fn try_reclaim_large_pages<F>(&mut self, to_reclaim: usize, dealloc: F)

Reclaims empty pages by calling dealloc on it and removing it from the empty lists in the SCAllocator.

The dealloc function is called at most reclaim_base_max times for base pages, and at most reclaim_large_max for large pages.

Trait Implementations§

Source§

impl<'a> Allocator<'a> for ZoneAllocator<'a>

Source§

fn allocate(&mut self, layout: Layout) -> Result<NonNull<u8>, AllocationError>

Allocate a pointer to a block of memory described by layout.

Source§

fn deallocate( &mut self, ptr: NonNull<u8>, layout: Layout, ) -> Result<(), AllocationError>

Deallocates a pointer to a block of memory, which was previously allocated by allocate.

§Arguments
  • ptr - Address of the memory location to free.
  • layout - Memory layout of the block pointed to by ptr.
Source§

unsafe fn refill( &mut self, layout: Layout, new_page: &'a mut ObjectPage<'a>, ) -> Result<(), AllocationError>

Refills the SCAllocator for a given Layout with an ObjectPage.

§Safety

ObjectPage needs to be emtpy etc.

Source§

unsafe fn refill_large( &mut self, layout: Layout, new_page: &'a mut LargeObjectPage<'a>, ) -> Result<(), AllocationError>

Refills the SCAllocator for a given Layout with an ObjectPage.

§Safety

ObjectPage needs to be emtpy etc.

Source§

impl<'a> Default for ZoneAllocator<'a>

Source§

fn default() -> ZoneAllocator<'a>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for ZoneAllocator<'a>

§

impl<'a> RefUnwindSafe for ZoneAllocator<'a>

§

impl<'a> Send for ZoneAllocator<'a>

§

impl<'a> Sync for ZoneAllocator<'a>

§

impl<'a> Unpin for ZoneAllocator<'a>

§

impl<'a> !UnwindSafe for ZoneAllocator<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.