2002-12-09 20:37:24 +00:00
|
|
|
/* ELF startup code for HPPA.
|
2015-01-02 16:28:19 +00:00
|
|
|
Copyright (C) 2002-2015 Free Software Foundation, Inc.
|
2002-12-09 20:37:24 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
2004-08-16 04:51:04 +00:00
|
|
|
In addition to the permissions in the GNU Lesser General Public
|
|
|
|
License, the Free Software Foundation gives you unlimited
|
|
|
|
permission to link the compiled version of this file with other
|
|
|
|
programs, and to distribute those programs without any restriction
|
|
|
|
coming from the use of this file. (The GNU Lesser General Public
|
|
|
|
License restrictions do apply in other respects; for example, they
|
|
|
|
cover modification of the file, and distribution when not linked
|
|
|
|
into another program.)
|
|
|
|
|
|
|
|
Note that people who make modified versions of this file are not
|
|
|
|
obligated to grant this special exception for their modified
|
|
|
|
versions; it is their choice whether to do so. The GNU Lesser
|
|
|
|
General Public License gives permission to release a modified
|
|
|
|
version without this exception; this exception also makes it
|
|
|
|
possible to release a modified version which carries forward this
|
|
|
|
exception.
|
|
|
|
|
2002-12-09 20:37:24 +00:00
|
|
|
The GNU C Library 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. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2000-10-15 03:33:33 +00:00
|
|
|
|
|
|
|
.import main, code
|
|
|
|
.import $global$, data
|
|
|
|
.import __libc_start_main, code
|
2002-12-09 20:37:24 +00:00
|
|
|
.import __libc_csu_fini, code
|
|
|
|
.import __libc_csu_init, code
|
2000-10-15 03:33:33 +00:00
|
|
|
|
2013-06-05 20:26:40 +00:00
|
|
|
/* Have the linker create plabel words so we get PLABEL32
|
|
|
|
relocs and not 21/14. The use of 21/14 relocs is only
|
2006-09-13 21:56:09 +00:00
|
|
|
supported in the latest dynamic linker. */
|
2006-01-10 07:54:47 +00:00
|
|
|
.section .rodata
|
|
|
|
.align 4
|
|
|
|
.Lpmain:
|
|
|
|
.word P%main
|
|
|
|
.Lp__libc_start_main:
|
|
|
|
.word P%__libc_start_main
|
|
|
|
.Lp__libc_csu_fini:
|
|
|
|
.word P%__libc_csu_fini
|
|
|
|
.Lp__libc_csu_init:
|
|
|
|
.word P%__libc_csu_init
|
|
|
|
|
|
|
|
.text
|
|
|
|
.align 4
|
2000-10-15 03:33:33 +00:00
|
|
|
.globl _start
|
|
|
|
.export _start, ENTRY
|
2001-06-05 06:20:45 +00:00
|
|
|
.type _start,@function
|
2000-10-15 03:33:33 +00:00
|
|
|
_start:
|
2006-09-13 21:56:09 +00:00
|
|
|
/* At entry to the function we have:
|
|
|
|
|
|
|
|
r26 - Unused
|
|
|
|
r25 - argc
|
|
|
|
r24 - argv
|
|
|
|
r23 - False _dl_fini plabel address
|
|
|
|
|
2013-06-05 20:26:40 +00:00
|
|
|
This function is called from the lower half of RTLD_START.
|
2006-09-13 21:56:09 +00:00
|
|
|
|
|
|
|
The call to __libc_start_main expects:
|
|
|
|
|
|
|
|
1. r26 - Application main
|
|
|
|
2. r25 - argc
|
|
|
|
3. r24 - argv
|
|
|
|
4. r23 - __libc_csu_init
|
|
|
|
5. sp-52 - __libc_csu_fini
|
|
|
|
6. sp-56 - rtld_fini
|
2013-06-05 20:26:40 +00:00
|
|
|
7. sp-60 - stackend */
|
2000-10-15 03:33:33 +00:00
|
|
|
|
|
|
|
.proc
|
|
|
|
.callinfo
|
2006-09-13 21:56:09 +00:00
|
|
|
/* Clear previous-sp. */
|
|
|
|
stw %r0, -4(%sp)
|
|
|
|
/* Setup the stack and frame. */
|
|
|
|
stw %rp, -20(%sp)
|
2000-10-15 03:33:33 +00:00
|
|
|
ldo 64(%sp), %sp
|
2006-09-13 21:56:09 +00:00
|
|
|
stw %sp, -4(%sp)
|
|
|
|
stw %r19, -32(%sp)
|
|
|
|
|
|
|
|
/* argc and argv should be in 25 and 24 (2nd and 3rd argument) */
|
|
|
|
/* void (*rtld_fini) (void) (6th argument) */
|
|
|
|
stw %r23, -56(%sp)
|
|
|
|
/* Need to setup 1, 4, 5, and 7th arguments */
|
2006-01-10 07:54:47 +00:00
|
|
|
|
2014-07-07 14:14:26 +00:00
|
|
|
#ifdef SHARED
|
2006-01-10 07:54:47 +00:00
|
|
|
/* load main (1st argument) */
|
2009-11-15 19:30:29 +00:00
|
|
|
addil LT'.Lpmain, %r19
|
|
|
|
ldw RT'.Lpmain(%r1), %r26
|
2006-01-10 07:54:47 +00:00
|
|
|
ldw 0(%r26),%r26
|
|
|
|
/* void (*init) (void) (4th argument) */
|
2009-11-15 19:30:29 +00:00
|
|
|
addil LT'.Lp__libc_csu_init, %r19
|
|
|
|
ldw RT'.Lp__libc_csu_init(%r1), %r23
|
2006-01-10 07:54:47 +00:00
|
|
|
ldw 0(%r23), %r23
|
|
|
|
/* void (*fini) (void) (5th argument) */
|
2009-11-15 19:30:29 +00:00
|
|
|
addil LT'.Lp__libc_csu_fini, %r19
|
|
|
|
ldw RT'.Lp__libc_csu_fini(%r1), %r22
|
2006-01-10 07:54:47 +00:00
|
|
|
ldw 0(%r22), %r22
|
|
|
|
#else
|
|
|
|
/* load main (1st argument) */
|
|
|
|
ldil LR'.Lpmain, %r26
|
|
|
|
ldw RR'.Lpmain(%r26), %r26
|
|
|
|
/* void (*init) (void) (4th argument) */
|
|
|
|
ldil LR'.Lp__libc_csu_init, %r23
|
|
|
|
ldw RR'.Lp__libc_csu_init(%r23), %r23
|
|
|
|
/* void (*fini) (void) (5th argument) */
|
|
|
|
ldil LR'.Lp__libc_csu_fini, %r22
|
|
|
|
ldw RR'.Lp__libc_csu_fini(%r22), %r22
|
|
|
|
#endif
|
|
|
|
/* Store 5th argument */
|
2000-10-15 03:33:33 +00:00
|
|
|
stw %r22, -52(%sp)
|
2006-01-10 07:54:47 +00:00
|
|
|
/* void *stack_end (7th argument) */
|
2000-10-15 03:33:33 +00:00
|
|
|
stw %sp, -60(%sp)
|
|
|
|
|
|
|
|
/* load global */
|
|
|
|
ldil L%$global$, %dp
|
|
|
|
ldo R%$global$(%dp), %dp
|
|
|
|
|
|
|
|
bl __libc_start_main,%r2
|
|
|
|
nop
|
|
|
|
/* die horribly if it returned (it shouldn't) */
|
2006-01-10 07:54:47 +00:00
|
|
|
iitlbp %r0,(%sr0,%r0)
|
2000-10-15 03:33:33 +00:00
|
|
|
nop
|
|
|
|
|
|
|
|
.procend
|
|
|
|
|
2002-10-01 19:42:02 +00:00
|
|
|
/* Define a symbol for the first piece of initialized data. */
|
|
|
|
.data
|
|
|
|
.globl __data_start
|
|
|
|
__data_start:
|
|
|
|
.long 0
|
|
|
|
.weak data_start
|
|
|
|
data_start = __data_start
|