2007-11-23 03:03:03 +03:00
|
|
|
/* ---------------------------------------------- */
|
|
|
|
/* alloca86.S */
|
|
|
|
|
2009-05-17 00:30:13 +04:00
|
|
|
.globl alloca
|
2007-11-23 03:03:03 +03:00
|
|
|
|
2009-05-17 00:30:13 +04:00
|
|
|
alloca:
|
2007-11-23 03:03:03 +03:00
|
|
|
pop %edx
|
|
|
|
pop %eax
|
|
|
|
add $3,%eax
|
|
|
|
and $-4,%eax
|
|
|
|
jz p3
|
2008-01-16 23:16:35 +03:00
|
|
|
|
|
|
|
#ifdef TCC_TARGET_PE
|
2007-11-23 03:03:03 +03:00
|
|
|
p1:
|
|
|
|
cmp $4096,%eax
|
|
|
|
jle p2
|
|
|
|
sub $4096,%esp
|
|
|
|
sub $4096,%eax
|
|
|
|
test %eax,(%esp)
|
|
|
|
jmp p1
|
|
|
|
p2:
|
2008-01-16 23:16:35 +03:00
|
|
|
#endif
|
|
|
|
|
2007-11-23 03:03:03 +03:00
|
|
|
sub %eax,%esp
|
|
|
|
mov %esp,%eax
|
|
|
|
p3:
|
|
|
|
push %edx
|
|
|
|
push %edx
|
|
|
|
ret
|
|
|
|
|
2011-01-04 11:38:52 +03:00
|
|
|
/* mark stack as nonexecutable */
|
|
|
|
#if defined __ELF__ && defined __linux__
|
|
|
|
.section .note.GNU-stack,"",@progbits
|
|
|
|
#endif
|
2007-11-23 03:03:03 +03:00
|
|
|
/* ---------------------------------------------- */
|