2.9
[glibc/nacl-glibc.git] / sysdeps / alpha / elf / start.S
blobebe14b4c8ecbdb0176ce3325028c51a4da3ba801
1 /* Startup code for Alpha/ELF.
2    Copyright (C) 1993, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003
3    Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
5    Contributed by Richard Henderson <rth@tamu.edu>
7    The GNU C Library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 2.1 of the License, or (at your option) any later version.
12    In addition to the permissions in the GNU Lesser General Public
13    License, the Free Software Foundation gives you unlimited
14    permission to link the compiled version of this file with other
15    programs, and to distribute those programs without any restriction
16    coming from the use of this file. (The GNU Lesser General Public
17    License restrictions do apply in other respects; for example, they
18    cover modification of the file, and distribution when not linked
19    into another program.)
21    Note that people who make modified versions of this file are not
22    obligated to grant this special exception for their modified
23    versions; it is their choice whether to do so. The GNU Lesser
24    General Public License gives permission to release a modified
25    version without this exception; this exception also makes it
26    possible to release a modified version which carries forward this
27    exception.
29    The GNU C Library is distributed in the hope that it will be useful,
30    but WITHOUT ANY WARRANTY; without even the implied warranty of
31    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
32    Lesser General Public License for more details.
34    You should have received a copy of the GNU Lesser General Public
35    License along with the GNU C Library; if not, write to the Free
36    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
37    02111-1307 USA.  */
39 #include <sysdep.h>
41         .text
42         .align 3
43         .globl _start
44         .ent _start, 0
45         .type _start,@function
46 _start:
47         .frame  $15, 0, $15
48         br      gp, 1f
49 1:      ldgp    gp, 0(gp)
50         subq    sp, 16, sp
51         mov     0, $15
52         .prologue 0
54   /* Load address of the user's main function.  */
55         lda     a0, main
57         ldl     a1, 16(sp)      /* get argc */
58         lda     a2, 24(sp)      /* get argv */
60   /* Load address of our own entry points to .fini and .init.  */
61         lda     a3, __libc_csu_init
62         lda     a4, __libc_csu_fini
64   /* Store address of the shared library termination function.  */
65         mov     v0, a5
67   /* Provide the highest stack address to the user code.  */
68         stq     sp, 0(sp)
70   /* Call the user's main function, and exit with its value.
71      But let the libc call main.  */
72         jsr     ra, __libc_start_main
74   /* Die very horribly if exit returns.  Call_pal hlt is callable from
75      kernel mode only; this will result in an illegal instruction trap.  */
76         call_pal 0
77         .end _start
79 /* For ECOFF backwards compatibility. */
80 weak_alias (_start, __start)
82 /* Define a symbol for the first piece of initialized data.  */
83         .data
84         .globl __data_start
85 __data_start:
86         .weak data_start
87         data_start = __data_start