123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- #
- # $Id$
- # This file is part of the Free Pascal run time library.
- # Copyright (c) 1999-2000 by Michael Van Canneyt and Peter Vreman
- # members of the Free Pascal development team.
- #
- # See the file COPYING.FPC, included in this distribution,
- # for details about the copyright.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY;without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- #
- #**********************************************************************}
- #
- # Linux ELF startup code for Free Pascal
- #
- .file "prt1.as"
- .text
- .globl _start
- .type _start,@function
- _start:
- /* First locate the start of the environment variables */
- popl %esi
- movl %eax,%edi
- movl %esp,%ebx /* Points to the arguments */
- movl %esi,%eax
- incl %eax
- shll $2,%eax
- addl %esp,%eax
- andl $0xfffffff8,%esp /* Align stack */
- movl %eax,operatingsystem_parameter_envp /* Move the environment pointer */
- movl %esi,operatingsystem_parameter_argc /* Move the argument counter */
- movl %ebx,operatingsystem_parameter_argv /* Move the argument pointer */
- movl %edi,%eax
- xorl %ebp,%ebp
- pushl %eax
- pushl %esp
- pushl %edx
- pushl $_fini_dummy
- pushl $_init_dummy
- pushl %ebx
- pushl %esi
- pushl $cmain
- call __libc_start_main
- hlt
- /* fake main routine which will be run from libc */
- cmain:
- /* save return address */
- popl %eax
- movl %eax,___fpc_ret
- movl %ebx,___fpc_ret_ebx
- movl %esi,___fpc_ret_esi
- movl %edi,___fpc_ret_edi
- pushl %eax
- call __gmon_start__
- /* start the program */
- call PASCALMAIN
- hlt
- .globl _haltproc
- .type _haltproc,@function
- _haltproc:
- movzwl operatingsystem_result,%eax
- movl ___fpc_ret,%edx /* return to libc */
- movl ___fpc_ret_ebx,%ebx
- movl ___fpc_ret_esi,%esi
- movl ___fpc_ret_edi,%edi
- push %edx
- _init_dummy:
- _fini_dummy:
- ret
- .globl __gmon_start__
- .type __gmon_start__,@function
- __gmon_start__:
- pushl %ebp
- movl __monstarted,%eax
- leal 0x1(%eax),%edx
- movl %esp,%ebp
- movl %edx,__monstarted
- testl %eax,%eax
- jnz .Lnomonstart
- pushl $etext /* Initialize gmon */
- pushl $_start
- call monstartup
- addl $8,%esp
- pushl $_mcleanup
- call atexit
- addl $4,%esp
- .Lnomonstart:
- movl %ebp,%esp
- popl %ebp
- ret
- .data
- .align 4
- ___fpc_ret: /* return address to libc */
- .long 0
- ___fpc_ret_ebx:
- .long 0
- ___fpc_ret_esi:
- .long 0
- ___fpc_ret_edi:
- .long 0
- .bss
- .lcomm __monstarted,4
- .type ___fpc_brk_addr,@object
- .comm ___fpc_brk_addr,4 /* heap management */
- .comm operatingsystem_parameter_envp,4
- .comm operatingsystem_parameter_argc,4
- .comm operatingsystem_parameter_argv,4
- #
- # $Log$
- # Revision 1.6 2004-07-03 21:50:31 daniel
- # * Modified bootstrap code so separate prt0.as/prt0_10.as files are no
- # longer necessary
- #
- # Revision 1.5 2004/03/10 20:38:59 peter
- # * only i386 needs cprt21 to link with glibc 2.1+
- #
- # Revision 1.4 2002/09/07 16:01:20 peter
- # * old logs removed and tabs fixed
- #
|