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
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
45 .type _start,@function
54 /* Load address of the user's main function. */
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. */
67 /* Provide the highest stack address to the user code. */
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. */
79 /* For ECOFF backwards compatibility. */
80 weak_alias (_start, __start)
82 /* Define a symbol for the first piece of initialized data. */
87 data_start = __data_start