-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement simple allocator using enif_{alloc,free}
- Loading branch information
Showing
9 changed files
with
57 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
use std::alloc::{GlobalAlloc, Layout}; | ||
|
||
const SIZEOF_USIZE: usize = std::mem::size_of::<usize>(); | ||
const MAX_ALIGN: usize = 8; | ||
|
||
#[cfg(feature = "allocator")] | ||
#[global_allocator] | ||
static ALLOCATOR: EnifAllocator = EnifAllocator; | ||
|
||
/// Allocator implementation that forwards all allocation calls to Erlang's allocator. Allows the | ||
/// memory usage to be tracked by the BEAM. | ||
pub struct EnifAllocator; | ||
|
||
unsafe impl GlobalAlloc for EnifAllocator { | ||
unsafe fn alloc(&self, layout: Layout) -> *mut u8 { | ||
if layout.align() > MAX_ALIGN { | ||
// overallocate | ||
let padded = layout.pad_to_align(); | ||
let total_size = SIZEOF_USIZE + padded.size(); | ||
let ptr = rustler_sys::enif_alloc(total_size) as *mut u8; | ||
|
||
let ptr1 = ptr.wrapping_add(SIZEOF_USIZE); | ||
let aligned_ptr = ptr1.wrapping_add(ptr1.align_offset(layout.align())); | ||
|
||
let header = aligned_ptr.wrapping_sub(SIZEOF_USIZE); | ||
*(header as *mut usize) = ptr as usize; | ||
|
||
aligned_ptr | ||
} else { | ||
rustler_sys::enif_alloc(layout.size()) as *mut u8 | ||
} | ||
} | ||
|
||
unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { | ||
let ptr = if layout.align() > MAX_ALIGN { | ||
let header = ptr.wrapping_sub(SIZEOF_USIZE); | ||
let ptr = *(header as *mut usize); | ||
ptr as *mut rustler_sys::c_void | ||
} else { | ||
ptr as *mut rustler_sys::c_void | ||
}; | ||
rustler_sys::enif_free(ptr); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters