1996-07-18 08:41:17 +00:00
|
|
|
/* Startup code for Alpha/ELF.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 1993-2017 Free Software Foundation, Inc.
|
1997-06-26 22:16:52 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Richard Henderson <rth@tamu.edu>
|
|
|
|
|
|
|
|
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-26 22:16:52 +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-26 22:16:52 +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
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
Wed Feb 14 00:21:17 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/unix/sysv/linux/alpha/Makefile,
sysdeps/unix/sysv/linux/alpha/brk.S,
sysdeps/unix/sysv/linux/alpha/fpu_control.c,
sysdeps/unix/sysv/linux/alpha/fpu_control.h,
sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
sysdeps/unix/sysv/linux/alpha/pipe.S,
sysdeps/unix/sysv/linux/alpha/setfpucw.c,
sysdeps/unix/sysv/linux/alpha/sigprocmask.c,
sysdeps/unix/sysv/linux/alpha/speed.c,
sysdeps/unix/sysv/linux/alpha/start.S,
sysdeps/unix/sysv/linux/alpha/syscall.S,
sysdeps/unix/sysv/linux/alpha/syscalls.list,
sysdeps/unix/sysv/linux/alpha/sysdep.S,
sysdeps/unix/sysv/linux/alpha/sysdep.h: New files.
1996-03-19 19:51:23 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
|
|
|
.text
|
1996-06-19 06:38:28 +00:00
|
|
|
.align 3
|
1996-09-07 04:10:03 +00:00
|
|
|
.globl _start
|
1996-09-05 02:48:53 +00:00
|
|
|
.ent _start, 0
|
2001-06-05 06:20:45 +00:00
|
|
|
.type _start,@function
|
1996-08-11 01:30:23 +00:00
|
|
|
_start:
|
2004-08-25 19:59:01 +00:00
|
|
|
.frame $15, 0, $15
|
1996-06-19 06:38:28 +00:00
|
|
|
br gp, 1f
|
|
|
|
1: ldgp gp, 0(gp)
|
1998-06-27 09:51:18 +00:00
|
|
|
subq sp, 16, sp
|
2004-08-25 19:59:01 +00:00
|
|
|
mov 0, $15
|
1998-08-23 04:08:17 +00:00
|
|
|
.prologue 0
|
1996-06-19 06:38:28 +00:00
|
|
|
|
1998-03-31 23:18:03 +00:00
|
|
|
/* Load address of the user's main function. */
|
|
|
|
lda a0, main
|
1996-06-19 06:38:28 +00:00
|
|
|
|
1998-06-27 09:51:18 +00:00
|
|
|
ldl a1, 16(sp) /* get argc */
|
|
|
|
lda a2, 24(sp) /* get argv */
|
Wed Feb 14 00:21:17 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/unix/sysv/linux/alpha/Makefile,
sysdeps/unix/sysv/linux/alpha/brk.S,
sysdeps/unix/sysv/linux/alpha/fpu_control.c,
sysdeps/unix/sysv/linux/alpha/fpu_control.h,
sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
sysdeps/unix/sysv/linux/alpha/pipe.S,
sysdeps/unix/sysv/linux/alpha/setfpucw.c,
sysdeps/unix/sysv/linux/alpha/sigprocmask.c,
sysdeps/unix/sysv/linux/alpha/speed.c,
sysdeps/unix/sysv/linux/alpha/start.S,
sysdeps/unix/sysv/linux/alpha/syscall.S,
sysdeps/unix/sysv/linux/alpha/syscalls.list,
sysdeps/unix/sysv/linux/alpha/sysdep.S,
sysdeps/unix/sysv/linux/alpha/sysdep.h: New files.
1996-03-19 19:51:23 +00:00
|
|
|
|
1998-03-31 23:18:03 +00:00
|
|
|
/* Load address of our own entry points to .fini and .init. */
|
2002-12-09 20:37:24 +00:00
|
|
|
lda a3, __libc_csu_init
|
|
|
|
lda a4, __libc_csu_fini
|
Wed Feb 14 00:21:17 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/unix/sysv/linux/alpha/Makefile,
sysdeps/unix/sysv/linux/alpha/brk.S,
sysdeps/unix/sysv/linux/alpha/fpu_control.c,
sysdeps/unix/sysv/linux/alpha/fpu_control.h,
sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
sysdeps/unix/sysv/linux/alpha/pipe.S,
sysdeps/unix/sysv/linux/alpha/setfpucw.c,
sysdeps/unix/sysv/linux/alpha/sigprocmask.c,
sysdeps/unix/sysv/linux/alpha/speed.c,
sysdeps/unix/sysv/linux/alpha/start.S,
sysdeps/unix/sysv/linux/alpha/syscall.S,
sysdeps/unix/sysv/linux/alpha/syscalls.list,
sysdeps/unix/sysv/linux/alpha/sysdep.S,
sysdeps/unix/sysv/linux/alpha/sysdep.h: New files.
1996-03-19 19:51:23 +00:00
|
|
|
|
1998-03-31 23:18:03 +00:00
|
|
|
/* Store address of the shared library termination function. */
|
|
|
|
mov v0, a5
|
Wed Feb 14 00:21:17 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/unix/sysv/linux/alpha/Makefile,
sysdeps/unix/sysv/linux/alpha/brk.S,
sysdeps/unix/sysv/linux/alpha/fpu_control.c,
sysdeps/unix/sysv/linux/alpha/fpu_control.h,
sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
sysdeps/unix/sysv/linux/alpha/pipe.S,
sysdeps/unix/sysv/linux/alpha/setfpucw.c,
sysdeps/unix/sysv/linux/alpha/sigprocmask.c,
sysdeps/unix/sysv/linux/alpha/speed.c,
sysdeps/unix/sysv/linux/alpha/start.S,
sysdeps/unix/sysv/linux/alpha/syscall.S,
sysdeps/unix/sysv/linux/alpha/syscalls.list,
sysdeps/unix/sysv/linux/alpha/sysdep.S,
sysdeps/unix/sysv/linux/alpha/sysdep.h: New files.
1996-03-19 19:51:23 +00:00
|
|
|
|
1998-06-27 09:51:18 +00:00
|
|
|
/* Provide the highest stack address to the user code. */
|
|
|
|
stq sp, 0(sp)
|
|
|
|
|
1998-03-31 23:18:03 +00:00
|
|
|
/* Call the user's main function, and exit with its value.
|
1998-06-27 09:51:18 +00:00
|
|
|
But let the libc call main. */
|
1998-03-31 23:18:03 +00:00
|
|
|
jsr ra, __libc_start_main
|
1996-09-05 02:48:53 +00:00
|
|
|
|
1996-06-19 06:38:28 +00:00
|
|
|
/* Die very horribly if exit returns. Call_pal hlt is callable from
|
|
|
|
kernel mode only; this will result in an illegal instruction trap. */
|
|
|
|
call_pal 0
|
1996-09-05 02:48:53 +00:00
|
|
|
.end _start
|
|
|
|
|
|
|
|
/* For ECOFF backwards compatibility. */
|
2005-05-26 14:30:48 +00:00
|
|
|
weak_alias (_start, __start)
|
2000-12-06 04:05:25 +00:00
|
|
|
|
|
|
|
/* Define a symbol for the first piece of initialized data. */
|
|
|
|
.data
|
|
|
|
.globl __data_start
|
|
|
|
__data_start:
|
|
|
|
.weak data_start
|
|
|
|
data_start = __data_start
|