2010-11-07 14:42:29 +01:00
|
|
|
|
|
|
|
.global ___chkstk
|
|
|
|
.global __alloca
|
|
|
|
|
|
|
|
.section .text
|
|
|
|
|
2011-08-07 15:02:30 +02:00
|
|
|
#.def ___chkstk; .scl 2; .type 32; .endef
|
|
|
|
#.def __alloca; .scl 2; .type 32; .endef
|
2010-11-07 14:42:29 +01:00
|
|
|
___chkstk:
|
|
|
|
__alloca:
|
|
|
|
pushl %ecx /* save temp */
|
|
|
|
leal 8(%esp), %ecx /* point past return addr */
|
|
|
|
subl %eax, %ecx
|
|
|
|
cmpl %fs:4, %ecx # check low stack limit
|
|
|
|
jb 1f
|
|
|
|
|
|
|
|
movl %esp, %eax /* save old stack pointer */
|
|
|
|
movl %ecx, %esp /* decrement stack */
|
|
|
|
movl (%eax), %ecx /* recover saved temp */
|
|
|
|
movl 4(%eax), %eax /* recover return address */
|
|
|
|
|
|
|
|
/* Push the return value back. Doing this instead of just
|
|
|
|
jumping to %eax preserves the cached call-return stack
|
|
|
|
used by most modern processors. */
|
|
|
|
pushl %eax
|
|
|
|
ret
|
|
|
|
1:
|
|
|
|
int3 #trap to debugger
|
|
|
|
.ascii "Stack overflow"
|
|
|
|
|
2011-03-11 19:52:24 +01:00
|
|
|
|