mirror of
https://github.com/frida/tinycc
synced 2024-12-20 12:12:34 +03:00
50b040ef83
This enables native unwind semantics with longjmp on win64 by putting an entry into the .pdata section for each compiled fuction. Also, the function now use a fixed stack and store arguments into X(%rsp) rather than using push.
78 lines
1.7 KiB
ArmAsm
78 lines
1.7 KiB
ArmAsm
/* ---------------------------------------------- */
|
|
/* chkstk86.s */
|
|
|
|
#include "../../config.h"
|
|
|
|
/* ---------------------------------------------- */
|
|
#ifndef TCC_TARGET_X86_64
|
|
/* ---------------------------------------------- */
|
|
|
|
.globl __chkstk
|
|
|
|
__chkstk:
|
|
xchg (%esp),%ebp /* store ebp, get ret.addr */
|
|
push %ebp /* push ret.addr */
|
|
lea 4(%esp),%ebp /* setup frame ptr */
|
|
push %ecx /* save ecx */
|
|
mov %ebp,%ecx
|
|
P0:
|
|
sub $4096,%ecx
|
|
test %eax,(%ecx)
|
|
sub $4096,%eax
|
|
cmp $4096,%eax
|
|
jge P0
|
|
sub %eax,%ecx
|
|
test %eax,(%ecx)
|
|
|
|
mov %esp,%eax
|
|
mov %ecx,%esp
|
|
mov (%eax),%ecx /* restore ecx */
|
|
jmp *4(%eax)
|
|
|
|
/* ---------------------------------------------- */
|
|
#else
|
|
/* ---------------------------------------------- */
|
|
|
|
.globl __chkstk
|
|
|
|
__chkstk:
|
|
xchg (%rsp),%rbp /* store ebp, get ret.addr */
|
|
push %rbp /* push ret.addr */
|
|
lea 8(%rsp),%rbp /* setup frame ptr */
|
|
push %rcx /* save ecx */
|
|
mov %rbp,%rcx
|
|
movslq %eax,%rax
|
|
P0:
|
|
sub $4096,%rcx
|
|
test %rax,(%rcx)
|
|
sub $4096,%rax
|
|
cmp $4096,%rax
|
|
jge P0
|
|
sub %rax,%rcx
|
|
test %rax,(%rcx)
|
|
|
|
mov %rsp,%rax
|
|
mov %rcx,%rsp
|
|
mov (%rax),%rcx /* restore ecx */
|
|
jmp *8(%rax)
|
|
|
|
/* ---------------------------------------------- */
|
|
/* setjmp/longjmp support */
|
|
|
|
.globl tinyc_no_getbp
|
|
tinyc_no_getbp:
|
|
.byte 0x90
|
|
|
|
.globl tinyc_getbp
|
|
tinyc_getbp:
|
|
xor %rax,%rax
|
|
cmp %al,tinyc_no_getbp(%rax)
|
|
je t1
|
|
mov %rbp,%rax
|
|
t1:
|
|
ret
|
|
|
|
/* ---------------------------------------------- */
|
|
#endif
|
|
/* ---------------------------------------------- */
|