Logo
Explore Help
Sign In
fluencelabs/musl
1
0
Fork 0
You've already forked musl
mirror of https://github.com/fluencelabs/musl synced 2025-05-29 15:41:36 +00:00
Code Issues Projects Releases Wiki Activity
musl/crt/i386/crt1.s

20 lines
235 B
ArmAsm
Raw Normal View History

add support for init/finit (constructors and destructors) this is mainly in hopes of supporting c++ (not yet possible for other reasons) but will also help applications/libraries which use (and more often, abuse) the gcc __attribute__((__constructor__)) feature in "C" code. x86_64 and arm versions of the new startup asm are untested and may have minor problems.
2012-02-06 14:39:09 -05:00
.weak _init
.weak _fini
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
.text
.global _start
_start:
consistency cleanup: removed redundant size suffixed from i386 asm
2012-05-02 21:03:25 -04:00
xor %ebp,%ebp
pop %ecx
mov %esp,%eax
and $-16,%esp
push %esp
push %esp
push %edx
push $_fini
push $_init
push %eax
push %ecx
push $main
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
call __libc_start_main
make startup code PIE-compatible
2011-02-21 22:26:31 -05:00
1: jmp 1b
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.23.8 Page: 71ms Template: 3ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API