#![no_std]
use core::mem::{align_of, size_of, MaybeUninit};
#[allow(nonstandard_style)]
pub fn with_alloca<R, F>(size: usize, f: F) -> R
where
F: FnOnce(&mut [MaybeUninit<u8>]) -> R,
{
unsafe {
use ::core::ffi::c_void;
type cb_t = unsafe extern "C" fn(size: usize, ptr: *mut u8, data: *mut c_void);
extern "C" {
fn c_with_alloca(size: usize, cb: cb_t, data: *mut c_void);
}
let mut f = Some(f);
let mut ret = None::<R>;
let ref mut f = |ptr: *mut u8| {
let slice = ::core::slice::from_raw_parts_mut(ptr.cast::<MaybeUninit<u8>>(), size);
ret = Some(f.take().unwrap()(slice));
};
#[inline(always)]
fn with_F_of_val<F>(_: &mut F) -> cb_t
where
F: FnMut(*mut u8),
{
unsafe extern "C" fn trampoline<F: FnMut(*mut u8)>(
_size: usize,
ptr: *mut u8,
data: *mut c_void,
) {
(&mut *data.cast::<F>())(ptr);
}
trampoline::<F>
}
c_with_alloca(size, with_F_of_val(f), <*mut _>::cast::<c_void>(f));
ret.unwrap()
}
}
pub fn with_alloca_zeroed<R, F>(size: usize, f: F) -> R
where
F: FnOnce(&mut [u8]) -> R,
{
with_alloca(size, |memory| unsafe {
core::ptr::write_bytes(memory.as_mut_ptr().cast::<u8>(), 0, size);
f(core::mem::transmute(memory))
})
}
pub fn alloca<T, R, F>(f: F) -> R
where
F: FnOnce(&mut MaybeUninit<T>) -> R,
{
with_alloca(size_of::<T>() + (align_of::<T>() - 1), |memory| unsafe {
let mut raw_memory = memory.as_mut_ptr();
if raw_memory as usize % align_of::<T>() != 0 {
raw_memory = raw_memory.add(align_of::<T>() - raw_memory as usize % align_of::<T>());
}
f(&mut *raw_memory.cast::<MaybeUninit<T>>())
})
}
#[cfg(test)]
mod tests;