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
|
|
|
|
2017-07-23 22:24:11 +03:00
|
|
|
#ifdef _WIN32
|
2007-11-23 03:03:03 +03:00
|
|
|
p1:
|
|
|
|
cmp $4096,%eax
|
2014-07-11 04:41:51 +04:00
|
|
|
jbe p2
|
2014-07-10 08:37:20 +04:00
|
|
|
test %eax,-4096(%esp)
|
2007-11-23 03:03:03 +03:00
|
|
|
sub $4096,%esp
|
|
|
|
sub $4096,%eax
|
|
|
|
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
|
|
|
|
|
|
|
|
/* ---------------------------------------------- */
|