1997-06-21 02:01:37 +00:00
|
|
|
/* Startup code compliant to the ELF Mips ABI.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 1995-2020 Free Software Foundation, Inc.
|
1997-06-26 22:16:52 +00:00
|
|
|
This file is part of the GNU C Library.
|
1997-06-21 02:01:37 +00:00
|
|
|
|
1997-06-26 22:16:52 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
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.
|
1997-06-21 02:01:37 +00:00
|
|
|
|
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.
|
|
|
|
|
1997-06-26 22:16:52 +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
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-06-21 02:01:37 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
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/>. */
|
1997-06-21 02:01:37 +00:00
|
|
|
|
2001-04-11 11:56:35 +00:00
|
|
|
#define __ASSEMBLY__ 1
|
1997-07-12 23:28:11 +00:00
|
|
|
#include <entry.h>
|
2004-11-24 04:36:11 +00:00
|
|
|
#include <sgidefs.h>
|
2003-03-17 15:47:13 +00:00
|
|
|
#include <sys/asm.h>
|
1997-07-12 23:28:11 +00:00
|
|
|
|
|
|
|
#ifndef ENTRY_POINT
|
|
|
|
#error ENTRY_POINT needs to be defined for start.S on MIPS/ELF.
|
|
|
|
#endif
|
|
|
|
|
1997-06-21 02:01:37 +00:00
|
|
|
/* This is the canonical entry point, usually the first thing in the text
|
|
|
|
segment. The SVR4/Mips ABI (pages 3-31, 3-32) says that when the entry
|
|
|
|
point runs, most registers' values are unspecified, except for:
|
|
|
|
|
2000-05-24 16:16:17 +00:00
|
|
|
v0 ($2) Contains a function pointer to be registered with `atexit'.
|
1997-06-26 22:16:52 +00:00
|
|
|
This is how the dynamic linker arranges to have DT_FINI
|
1997-06-21 02:01:37 +00:00
|
|
|
functions called for shared libraries that have been loaded
|
|
|
|
before this code runs.
|
|
|
|
|
|
|
|
sp ($29) The stack contains the arguments and environment:
|
1997-06-26 22:16:52 +00:00
|
|
|
0(%esp) argc
|
1997-06-21 02:01:37 +00:00
|
|
|
4(%esp) argv[0]
|
|
|
|
...
|
|
|
|
(4*argc)(%esp) NULL
|
|
|
|
(4*(argc+1))(%esp) envp[0]
|
|
|
|
...
|
|
|
|
NULL
|
|
|
|
ra ($31) The return address register is set to zero so that programs
|
|
|
|
that search backword through stack frames recognize the last
|
|
|
|
stack frame.
|
|
|
|
*/
|
|
|
|
|
2000-02-01 08:28:15 +00:00
|
|
|
|
|
|
|
/* We need to call:
|
|
|
|
__libc_start_main (int (*main) (int, char **, char **), int argc,
|
|
|
|
char **argv, void (*init) (void), void (*fini) (void),
|
|
|
|
void (*rtld_fini) (void), void *stack_end)
|
|
|
|
*/
|
2013-06-05 20:26:40 +00:00
|
|
|
|
1997-06-26 22:16:52 +00:00
|
|
|
.text
|
1997-07-12 23:28:11 +00:00
|
|
|
.globl ENTRY_POINT
|
2001-06-05 06:20:45 +00:00
|
|
|
.type ENTRY_POINT,@function
|
2013-02-27 23:45:07 +00:00
|
|
|
#ifndef __mips16
|
1997-07-12 23:28:11 +00:00
|
|
|
ENTRY_POINT:
|
2013-02-27 23:45:07 +00:00
|
|
|
# ifdef __PIC__
|
2003-03-17 15:47:13 +00:00
|
|
|
SETUP_GPX($0)
|
|
|
|
SETUP_GPX64($25,$0)
|
2013-02-27 23:45:07 +00:00
|
|
|
# else
|
2003-03-17 15:47:13 +00:00
|
|
|
PTR_LA $28, _gp /* Setup GP correctly if we're non-PIC. */
|
1997-06-21 02:01:37 +00:00
|
|
|
move $31, $0
|
2013-02-27 23:45:07 +00:00
|
|
|
# endif
|
1997-06-21 02:01:37 +00:00
|
|
|
|
2003-03-17 15:47:13 +00:00
|
|
|
PTR_LA $4, main /* main */
|
|
|
|
PTR_L $5, 0($29) /* argc */
|
|
|
|
PTR_ADDIU $6, $29, PTRSIZE /* argv */
|
2013-06-05 20:26:40 +00:00
|
|
|
|
2003-03-17 15:47:13 +00:00
|
|
|
/* Allocate space on the stack for seven arguments (o32 only)
|
2013-06-05 20:26:40 +00:00
|
|
|
and make sure the stack is aligned to double words (8 bytes)
|
2003-03-17 15:47:13 +00:00
|
|
|
on o32 and quad words (16 bytes) on n32 and n64. */
|
2013-06-05 20:26:40 +00:00
|
|
|
|
2003-03-17 15:47:13 +00:00
|
|
|
and $29, -2 * SZREG
|
2013-02-27 23:45:07 +00:00
|
|
|
# if _MIPS_SIM == _ABIO32
|
2003-03-17 15:47:13 +00:00
|
|
|
PTR_SUBIU $29, 32
|
2013-02-27 23:45:07 +00:00
|
|
|
# endif
|
2003-03-17 15:47:13 +00:00
|
|
|
PTR_LA $7, __libc_csu_init /* init */
|
|
|
|
PTR_LA $8, __libc_csu_fini
|
2013-02-27 23:45:07 +00:00
|
|
|
# if _MIPS_SIM == _ABIO32
|
2003-03-17 15:47:13 +00:00
|
|
|
PTR_S $8, 16($29) /* fini */
|
|
|
|
PTR_S $2, 20($29) /* rtld_fini */
|
|
|
|
PTR_S $29, 24($29) /* stack_end */
|
2013-02-27 23:45:07 +00:00
|
|
|
# else
|
2003-03-17 15:47:13 +00:00
|
|
|
move $9, $2 /* rtld_fini */
|
|
|
|
move $10, $29 /* stack_end */
|
2013-02-27 23:45:07 +00:00
|
|
|
# endif
|
2014-12-02 23:04:43 +00:00
|
|
|
PTR_LA $25, __libc_start_main
|
|
|
|
jalr $25
|
1997-06-21 02:01:37 +00:00
|
|
|
hlt: b hlt /* Crash if somehow it does return. */
|
|
|
|
|
2013-02-27 23:45:07 +00:00
|
|
|
#elif _MIPS_SIM == _ABIO32 /* __mips16 */
|
|
|
|
/* MIPS16 entry point. */
|
|
|
|
.set mips16
|
|
|
|
ENTRY_POINT:
|
|
|
|
# ifdef __PIC__
|
|
|
|
li $3, %hi(_gp_disp)
|
|
|
|
addiu $4, $pc, %lo(_gp_disp)
|
|
|
|
sll $3, 16
|
|
|
|
addu $3, $4
|
|
|
|
move $gp, $3
|
|
|
|
# else
|
|
|
|
li $3, %hi(_gp)
|
|
|
|
sll $3, 16
|
|
|
|
addiu $3, %lo(_gp)
|
|
|
|
move $gp, $3
|
|
|
|
# endif
|
|
|
|
/* Tie end of stack frames. */
|
|
|
|
li $4, 0
|
|
|
|
move $31, $4
|
|
|
|
/* Create new SP value in $7, including alignment. */
|
|
|
|
li $4, 2 * SZREG
|
|
|
|
neg $4, $4
|
|
|
|
move $7, $sp
|
|
|
|
and $7, $4
|
|
|
|
addiu $7, -32
|
|
|
|
/* Load arguments with original SP. */
|
|
|
|
lw $5, 0($sp)
|
|
|
|
addiu $6, $sp, PTRSIZE
|
|
|
|
/* Update SP. */
|
|
|
|
move $sp, $7
|
|
|
|
/* Lay out last arguments, and call __libc_start_main(). */
|
|
|
|
# ifdef __PIC__
|
|
|
|
sw $7, 24($sp) /* stack_end */
|
|
|
|
lw $4, %got(__libc_csu_fini)($3)
|
|
|
|
lw $7, %got(__libc_csu_init)($3) /* init */
|
|
|
|
sw $4, 16($sp) /* fini */
|
|
|
|
lw $4, %got(main)($3) /* main */
|
|
|
|
lw $3, %call16(__libc_start_main)($3)
|
|
|
|
sw $2, 20($sp) /* rtld_fini */
|
|
|
|
move $25, $3
|
|
|
|
jalr $3
|
|
|
|
# else
|
|
|
|
lw $4, 1f
|
|
|
|
sw $7, 24($sp) /* stack_end */
|
|
|
|
lw $7, 2f /* init */
|
|
|
|
sw $4, 16($sp) /* fini */
|
|
|
|
lw $4, 3f /* main */
|
|
|
|
sw $2, 20($sp) /* rtld_fini */
|
2014-12-02 23:04:43 +00:00
|
|
|
/* Load and call __libc_start_main(). */
|
|
|
|
lw $3, 4f
|
|
|
|
jalr $3
|
2013-02-27 23:45:07 +00:00
|
|
|
# endif
|
|
|
|
hlt: b hlt /* Crash if somehow it does return. */
|
|
|
|
# ifndef __PIC__
|
|
|
|
.align 2
|
|
|
|
1: .word __libc_csu_fini
|
|
|
|
2: .word __libc_csu_init
|
|
|
|
3: .word main
|
2014-12-02 23:04:43 +00:00
|
|
|
4: .word __libc_start_main
|
2013-02-27 23:45:07 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
#else /* __mips16 && _MIPS_SIM != _ABIO32 */
|
|
|
|
# error "MIPS16 support for N32/N64 not implemented"
|
|
|
|
|
|
|
|
#endif /* __mips16 */
|
|
|
|
|
1997-06-21 02:01:37 +00:00
|
|
|
/* Define a symbol for the first piece of initialized data. */
|
|
|
|
.data
|
|
|
|
.globl __data_start
|
|
|
|
__data_start:
|
1997-07-12 23:28:11 +00:00
|
|
|
.long 0
|
1997-06-21 02:01:37 +00:00
|
|
|
.weak data_start
|
|
|
|
data_start = __data_start
|