2002-12-09 20:37:24 +00:00
|
|
|
/* ELF startup code for HPPA.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2002-2024 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
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2000-10-15 03:33:33 +00:00
|
|
|
|
|
|
|
.import main, code
|
|
|
|
.import $global$, data
|
|
|
|
.import __libc_start_main, code
|
|
|
|
|
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. */
|
2017-11-29 01:01:05 +00:00
|
|
|
#ifdef PIC
|
2015-08-15 02:15:49 +00:00
|
|
|
.section .data.rel.ro,"aw",@progbits
|
|
|
|
#else
|
|
|
|
.section .rodata,"a",@progbits
|
|
|
|
#endif
|
2006-01-10 07:54:47 +00:00
|
|
|
.align 4
|
|
|
|
.Lpmain:
|
|
|
|
.word P%main
|
|
|
|
.Lp__libc_start_main:
|
|
|
|
.word P%__libc_start_main
|
|
|
|
|
|
|
|
.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
|
2021-02-25 11:10:57 +00:00
|
|
|
4. r23 - init (unused)
|
|
|
|
5. sp-52 - fini (unused)
|
2006-09-13 21:56:09 +00:00
|
|
|
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)
|
2017-11-29 01:01:05 +00:00
|
|
|
|
2006-09-13 21:56:09 +00:00
|
|
|
/* Need to setup 1, 4, 5, and 7th arguments */
|
2006-01-10 07:54:47 +00:00
|
|
|
|
2017-11-29 01:01:05 +00:00
|
|
|
#ifdef PIC
|
|
|
|
/* Load $global$ address into %dp */
|
|
|
|
bl .+8, %dp
|
|
|
|
addil L'$global$-$PIC_pcrel$0+1, %dp
|
|
|
|
ldo R'$global$-$PIC_pcrel$0+5(%r1), %dp
|
|
|
|
|
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
|
|
|
|
#else
|
2017-11-29 01:01:05 +00:00
|
|
|
/* Load $global$ address into %dp */
|
|
|
|
ldil L%$global$, %dp
|
|
|
|
ldo R%$global$(%dp), %dp
|
|
|
|
|
2006-01-10 07:54:47 +00:00
|
|
|
/* load main (1st argument) */
|
|
|
|
ldil LR'.Lpmain, %r26
|
|
|
|
ldw RR'.Lpmain(%r26), %r26
|
|
|
|
#endif
|
2021-02-25 11:10:57 +00:00
|
|
|
ldi 0,%r23 /* Used to be init. */
|
|
|
|
ldi 0,%r22 /* Used to be fini. */
|
2006-01-10 07:54:47 +00:00
|
|
|
/* 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)
|
|
|
|
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
|