1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#![no_std]
#[allow(nonstandard_style)]
pub fn with_alloca<R, F>(size: usize, f: F) -> R
where
F: FnOnce(&mut [u8]) -> R,
{
unsafe {
use ::core::ffi::c_void;
type cb_t = unsafe extern "C" fn(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, size);
ret = Some(f.take().unwrap()(slice));
};
fn with_F_of_val<F>(_: &mut F) -> cb_t
where
F: FnMut(*mut u8),
{
unsafe extern "C" fn trampoline<F: FnMut(*mut u8)>(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()
}
}
#[cfg(test)]
mod tests;