Skip to content
Snippets Groups Projects
dlmalloc.rs 1.42 KiB
Newer Older
use core::{
    alloc::{GlobalAlloc, Layout},
    sync::atomic::{AtomicUsize, Ordering},
};
Jeremy Soller's avatar
Jeremy Soller committed

Jeremy Soller's avatar
Jeremy Soller committed
use super::types::*;
Jeremy Soller's avatar
Jeremy Soller committed

extern "C" {
    fn create_mspace(capacity: size_t, locked: c_int) -> usize;
Jeremy Soller's avatar
Jeremy Soller committed
    fn dlmalloc(bytes: size_t) -> *mut c_void;
    fn dlmemalign(alignment: size_t, bytes: size_t) -> *mut c_void;
    fn dlrealloc(oldmem: *mut c_void, bytes: size_t) -> *mut c_void;
    fn dlfree(mem: *mut c_void);
}

pub struct Allocator {
    mstate: AtomicUsize,
}

pub const NEWALLOCATOR: Allocator = Allocator {
    mstate: AtomicUsize::new(0),
};
Jeremy Soller's avatar
Jeremy Soller committed

impl Allocator {
    pub fn set_book_keeper(&self, mstate: usize) {
        self.mstate.store(mstate, Ordering::Relaxed);
    }
    pub fn get_book_keeper(&self) -> usize {
        self.mstate.load(Ordering::Relaxed)
    }
}
Jeremy Soller's avatar
Jeremy Soller committed
unsafe impl<'a> GlobalAlloc for Allocator {
    unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
        alloc_align(layout.size(), layout.align()) as *mut u8
Jeremy Soller's avatar
Jeremy Soller committed
    }

Jeremy Soller's avatar
Jeremy Soller committed
    unsafe fn dealloc(&self, ptr: *mut u8, _layout: Layout) {
Jeremy Soller's avatar
Jeremy Soller committed
    }
}

pub unsafe fn alloc(size: usize) -> *mut c_void {
    dlmalloc(size)
}

pub unsafe fn alloc_align(size: usize, alignment: usize) -> *mut c_void {
    dlmemalign(alignment, size)
}

pub unsafe fn realloc(ptr: *mut c_void, size: size_t) -> *mut c_void {
    dlrealloc(ptr, size)
}

pub unsafe fn free(ptr: *mut c_void) {
    dlfree(ptr)
}

pub fn new_mspace() -> usize {
    unsafe { create_mspace(0, 0) }
}