2016-09-27 13:22:10 +08:00
|
|
|
#![allow(unused_imports)]
|
|
|
|
|
2016-08-17 06:46:46 +08:00
|
|
|
use core::intrinsics;
|
|
|
|
|
|
|
|
// NOTE These functions are implemented using assembly because they using a custom
|
|
|
|
// calling convention which can't be implemented using a normal Rust function
|
2016-08-18 01:53:56 +08:00
|
|
|
|
|
|
|
// NOTE These functions are never mangled as they are not tested against compiler-rt
|
|
|
|
// and mangling ___chkstk would break the `jmp ___chkstk` instruction in __alloca
|
|
|
|
|
2016-08-17 06:46:46 +08:00
|
|
|
#[cfg(windows)]
|
|
|
|
#[naked]
|
2016-08-18 01:53:56 +08:00
|
|
|
#[no_mangle]
|
2016-08-17 06:46:46 +08:00
|
|
|
pub unsafe fn ___chkstk_ms() {
|
|
|
|
asm!("push %rcx
|
|
|
|
push %rax
|
|
|
|
cmp $$0x1000,%rax
|
|
|
|
lea 24(%rsp),%rcx
|
|
|
|
jb 1f
|
|
|
|
2:
|
|
|
|
sub $$0x1000,%rcx
|
|
|
|
test %rcx,(%rcx)
|
|
|
|
sub $$0x1000,%rax
|
|
|
|
cmp $$0x1000,%rax
|
|
|
|
ja 2b
|
|
|
|
1:
|
|
|
|
sub %rax,%rcx
|
|
|
|
test %rcx,(%rcx)
|
|
|
|
pop %rax
|
|
|
|
pop %rcx
|
|
|
|
ret");
|
|
|
|
intrinsics::unreachable();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
#[naked]
|
2016-08-18 01:53:56 +08:00
|
|
|
#[no_mangle]
|
2016-08-17 06:46:46 +08:00
|
|
|
pub unsafe fn __alloca() {
|
2016-08-18 01:11:38 +08:00
|
|
|
asm!("mov %rcx,%rax // x64 _alloca is a normal function with parameter in rcx
|
|
|
|
jmp ___chkstk // Jump to ___chkstk since fallthrough may be unreliable");
|
|
|
|
intrinsics::unreachable();
|
2016-08-17 06:46:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
#[naked]
|
2016-08-18 01:53:56 +08:00
|
|
|
#[no_mangle]
|
2016-08-17 06:46:46 +08:00
|
|
|
pub unsafe fn ___chkstk() {
|
|
|
|
asm!("push %rcx
|
|
|
|
cmp $$0x1000,%rax
|
|
|
|
lea 16(%rsp),%rcx // rsp before calling this routine -> rcx
|
|
|
|
jb 1f
|
|
|
|
2:
|
|
|
|
sub $$0x1000,%rcx
|
|
|
|
test %rcx,(%rcx)
|
|
|
|
sub $$0x1000,%rax
|
|
|
|
cmp $$0x1000,%rax
|
|
|
|
ja 2b
|
|
|
|
1:
|
|
|
|
sub %rax,%rcx
|
|
|
|
test %rcx,(%rcx)
|
|
|
|
|
|
|
|
lea 8(%rsp),%rax // load pointer to the return address into rax
|
|
|
|
mov %rcx,%rsp // install the new top of stack pointer into rsp
|
|
|
|
mov -8(%rax),%rcx // restore rcx
|
|
|
|
push (%rax) // push return address onto the stack
|
|
|
|
sub %rsp,%rax // restore the original value in rax
|
|
|
|
ret");
|
|
|
|
intrinsics::unreachable();
|
|
|
|
}
|