mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-17 05:20:08 +08:00
f486b19f56
so that tests/boundtest.c links as well.
52 lines
1.0 KiB
ArmAsm
52 lines
1.0 KiB
ArmAsm
/* ---------------------------------------------- */
|
|
/* alloca86_64.S */
|
|
|
|
#ifdef __APPLE__
|
|
#define __bound_alloca ___bound_alloca
|
|
#define __bound_alloca_nr ___bound_alloca_nr
|
|
#endif
|
|
|
|
.globl __bound_alloca
|
|
__bound_alloca:
|
|
|
|
#ifdef _WIN32
|
|
inc %rcx # add one extra to separate regions
|
|
jmp alloca
|
|
.globl __bound_alloca_nr
|
|
__bound_alloca_nr:
|
|
dec %rcx
|
|
push %rax
|
|
mov %rcx,%rdx
|
|
mov %rax,%rcx
|
|
sub $32,%rsp
|
|
call __bound_new_region
|
|
add $32,%rsp
|
|
pop %rax
|
|
ret
|
|
#else
|
|
pop %rdx
|
|
mov %rdi,%rax
|
|
mov %rax,%rsi # size, a second parm to the __bound_new_region
|
|
|
|
add $15 + 1,%rax # add one extra to separate regions
|
|
and $-16,%rax
|
|
jz p3
|
|
|
|
|
|
sub %rax,%rsp
|
|
mov %rsp,%rdi # pointer, a first parm to the __bound_new_region
|
|
mov %rsp,%rax
|
|
|
|
push %rdx
|
|
push %rax
|
|
call __bound_new_region
|
|
pop %rax
|
|
pop %rdx
|
|
|
|
p3:
|
|
push %rdx
|
|
ret
|
|
#endif
|
|
|
|
/* ---------------------------------------------- */
|