Move x86 trampoline to naked function

Close #19
master
John Ericson 2016-07-16 13:17:22 -07:00 committed by edef
parent 1ea4b01eda
commit 75ca6f66e1
2 changed files with 15 additions and 23 deletions

View File

@ -29,35 +29,26 @@ impl StackPointer {
}
pub unsafe fn init(stack: &Stack, f: unsafe extern "C" fn(usize) -> !) -> StackPointer {
let g: usize;
asm!(
r#"
# Push address of the trampoline.
call 1f
# Pop function.
popl %ebx
# Push argument.
pushl %eax
# Call it.
call *%ebx
1:
# Pop address of the trampoline.
popl %eax
"#
: "={eax}" (g)
:
: "memory"
: "volatile"
);
#[naked]
unsafe extern "C" fn trampoline() -> ! {
asm!(
r#"
# Pop function.
popl %ebx
# Push argument.
pushl %eax
# Call it.
call *%ebx
"# ::: "memory" : "volatile");
::core::intrinsics::unreachable()
}
let mut sp = StackPointer::new(stack);
sp.push(0); // alignment
sp.push(0); // alignment
sp.push(0); // alignment
sp.push(f as usize); // function
sp.push(g as usize); // trampoline
sp.push(trampoline as usize);
sp
}

View File

@ -2,6 +2,7 @@
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
#![feature(asm)]
#![cfg_attr(target_arch = "x86", feature(naked_functions, core_intrinsics))]
#![no_std]
//! libfringe is a low-level green threading library.