1996-07-18 08:41:17 +00:00
|
|
|
/* Startup code for Alpha/ELF.
|
2001-06-05 06:20:45 +00:00
|
|
|
Copyright (C) 1993,1995,1996,1997,1998,2000,2001 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
|
|
|
|
|
|
|
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
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
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:
|
1996-06-19 06:38:28 +00:00
|
|
|
.frame fp, 0, zero
|
|
|
|
mov zero, fp
|
|
|
|
br gp, 1f
|
|
|
|
1: ldgp gp, 0(gp)
|
1998-06-27 09:51:18 +00:00
|
|
|
subq sp, 16, sp
|
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. */
|
|
|
|
lda a3, _init
|
|
|
|
lda a4, _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. */
|
|
|
|
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:
|
|
|
|
.long 0
|
|
|
|
.weak data_start
|
|
|
|
data_start = __data_start
|