|
@@ -12,23 +12,24 @@ use core::intrinsics;
|
|
#[naked]
|
|
#[naked]
|
|
#[cfg_attr(not(feature = "mangled-names"), no_mangle)]
|
|
#[cfg_attr(not(feature = "mangled-names"), no_mangle)]
|
|
pub unsafe fn ___chkstk_ms() {
|
|
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");
|
|
|
|
|
|
+ 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();
|
|
intrinsics::unreachable();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -45,25 +46,26 @@ pub unsafe fn __alloca() {
|
|
#[naked]
|
|
#[naked]
|
|
#[cfg_attr(not(feature = "mangled-names"), no_mangle)]
|
|
#[cfg_attr(not(feature = "mangled-names"), no_mangle)]
|
|
pub unsafe fn ___chkstk() {
|
|
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)
|
|
|
|
|
|
+ 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");
|
|
|
|
|
|
+ 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();
|
|
intrinsics::unreachable();
|
|
}
|
|
}
|