Systemd/klibc/klibc/arch/i386/exits.S
greg@kroah.com a41a0e28c2 [PATCH] added klibc version 0.82 (cvs tree) to the udev tree.
Not hooked up to the build yet.
2005-04-26 21:05:23 -07:00

46 lines
718 B
ArmAsm

#
# exit and _exit get included in *every* program, and gcc generates
# horrible code for them. Yes, this only saves a few bytes, but
# it does it in every program.
#
#include <asm/unistd.h>
.data
.align 4
.globl __exit_handler
.type __exit_handler,@object
__exit_handler:
.long _exit
.size __exit_handler,4
.text
.align 4
.globl exit
.type exit,@function
exit:
jmp *(__exit_handler)
.size exit,.-exit
/* No need to save any registers... we're exiting! */
.text
.align 4
.globl _exit
.type _exit,@function
_exit:
#ifdef REGPARM
movl %eax,%ebx
#else
popl %ebx
popl %ebx
#endif
#if __NR_exit == 1
xorl %eax,%eax
incl %eax
#else
movl $__NR_exit,%eax
#endif
int $0x80
hlt
.size _exit,.-exit