mirror of
https://github.com/frida/tinycc
synced 2024-11-24 16:49:44 +03:00
34 lines
528 B
ArmAsm
34 lines
528 B
ArmAsm
/* ---------------------------------------------- */
|
|
/* alloca86_64.S */
|
|
|
|
#include "../config.h"
|
|
|
|
.globl alloca
|
|
|
|
alloca:
|
|
pop %rdx
|
|
mov %rdi,%rax
|
|
add $15,%rax
|
|
and $-16,%rax
|
|
jz p3
|
|
|
|
#ifdef TCC_TARGET_PE
|
|
/* XXX: not tested */
|
|
p1:
|
|
cmp $4096,%rax
|
|
jle p2
|
|
sub $4096,%rsp
|
|
sub $4096,%rax
|
|
test %rax,(%rsp)
|
|
jmp p1
|
|
p2:
|
|
#endif
|
|
|
|
sub %rax,%rsp
|
|
mov %rsp,%rax
|
|
p3:
|
|
push %rdx
|
|
ret
|
|
|
|
/* ---------------------------------------------- */
|