riscv64: fix linking with binutils 2.40
[uclibc-ng.git] / libc / sysdeps / linux / xtensa / crt1.S
blob3fa14ae583a95b2ae55033d8889bd800abc7e215
1 /* Startup code compliant to the ELF Xtensa ABI.
2    Copyright (C) 2001, 2007 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    In addition to the permissions in the GNU Lesser General Public
11    License, the Free Software Foundation gives you unlimited
12    permission to link the compiled version of this file with other
13    programs, and to distribute those programs without any restriction
14    coming from the use of this file. (The GNU Lesser General Public
15    License restrictions do apply in other respects; for example, they
16    cover modification of the file, and distribution when not linked
17    into another program.)
19    Note that people who make modified versions of this file are not
20    obligated to grant this special exception for their modified
21    versions; it is their choice whether to do so. The GNU Lesser
22    General Public License gives permission to release a modified
23    version without this exception; this exception also makes it
24    possible to release a modified version which carries forward this
25    exception.
27    The GNU C Library is distributed in the hope that it will be useful,
28    but WITHOUT ANY WARRANTY; without even the implied warranty of
29    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
30    Lesser General Public License for more details.
32    You should have received a copy of the GNU Lesser General Public
33    License along with the GNU C Library; if not, see
34    <http://www.gnu.org/licenses/>.  */
36 #include <features.h>
38 #ifndef __UCLIBC_CTOR_DTOR__
39         .weak _init
40         .weak _fini
41 #endif
43 /* This is the canonical entry point, usually the first thing in the text
44    segment.  When the entry point runs, most register values are unspecified,
45    except for:
47         a2      Contains a function pointer to be registered with `atexit'.
48                 This is how the dynamic linker arranges to have DT_FINI
49                 functions called for shared libraries that have been loaded
50                 before this code runs.
52         a1      The stack (i.e., a1+16) contains the arguments and environment:
53                 a1+0                    argc
54                 a1+4                    argv[0]
55                 ...
56                 a1+(4*argc)             NULL
57                 a1+(4*(argc+1))         envp[0]
58                 ...
59                                         NULL
61   Setup parameters accordingly (for a call4).  See function prototype
62   from sysdeps/generic/libc-start.c
64         a6 = *main
65         a7 = argc
66         a8 = ubp_av
67         a9 = *init
68         a10 = *fini
69         a11 = *rtld_fini
70         [sp+0] = stack_end
71  */
73         .text
74         .align  4
75         .literal_position
76         .global _start
77         .type   _start, @function
78 _start:
79 #ifdef L_rcrt1
80         .begin  no-transform
81         call0   1f
82 .Lret_addr:
83         .end    no-transform
84         .align  4
86 #endif
87 #if defined(__XTENSA_WINDOWED_ABI__)
88 #ifdef L_rcrt1
89         movi    a6, .Lret_addr
90         sub     a6, a0, a6
91         movi    a0, 0
92         movi    a4, reloc_static_pie
93         add     a4, a4, a6
94         callx4  a4
95 #else
96         /* Clear a0 to obviously mark the outermost frame.  */
97         movi    a0, 0
98 #endif
100         /* Load up the user's main function.  */
101         movi    a6, main
103         /* Extract the arguments as encoded on the stack and set up
104            the arguments for `main': argc, argv.  envp will be determined
105            later in __uClibc_main.  */
106         l32i    a7, a1, 0       /* Load the argument count.  */
107         addi    a8, a1, 4       /* Compute the argv pointer.  */
109         /* Push address of our own entry points to .fini and .init.  */
110         movi    a9, _init
111         movi    a10, _fini
113         /* Setup the shared library termination function.  */
114         mov     a11, a2
116         /* Provide the highest stack address to the user code (for stacks
117            which grow downwards).  Note that we destroy the stack version
118            of argc here.  */
119         s32i    a1, a1, 0
121         /* Call the user's main function, and exit with its value.
122            But let the libc call main.    */
123         movi    a4, __uClibc_main
124         callx4  a4
125 #elif defined(__XTENSA_CALL0_ABI__)
126 #ifdef L_rcrt1
127         mov     a12, a2
128         movi    a2, .Lret_addr
129         sub     a2, a0, a2
130         movi    a0, reloc_static_pie
131         add     a0, a0, a2
132         callx0  a0
133         mov     a7, a12
134 #else
135         /* Setup the shared library termination function.  */
136         mov     a7, a2
137 #endif
139         /* Load up the user's main function.  */
140         movi    a2, main
142         /* Extract the arguments as encoded on the stack and set up
143            the arguments for `main': argc, argv.  envp will be determined
144            later in __uClibc_main.  */
145         l32i    a3, a1, 0       /* Load the argument count.  */
146         addi    a4, a1, 4       /* Compute the argv pointer.  */
148         /* Push address of our own entry points to .fini and .init.  */
149         movi    a5, _init
150         movi    a6, _fini
152         /* Provide the highest stack address to the user code (for stacks
153            which grow downwards).  Note that we destroy the stack version
154            of argc here.  */
155         s32i    a1, a1, 0
157         /* Call the user's main function, and exit with its value.
158            But let the libc call main.    */
159         movi    a0, __uClibc_main
160         callx0  a0
161 #else
162 #error Unsupported Xtensa ABI
163 #endif
165         /* Crash if somehow `exit' does return.  */
166         ill
168         /* Define a symbol for the first piece of initialized data.  */
169         .data
170         .align  4
171         .global __data_start
172 __data_start:
173         .long   0
174         .weak   data_start
175         data_start = __data_start