Update copyright notices with scripts/update-copyrights
[glibc.git] / ports / sysdeps / aarch64 / start.S
blob35d603ae9efbdc09df5b9e86c7da5f45044eba2a
1 /* Copyright (C) 1995-2014 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 License as
7    published by the Free Software Foundation; either version 2.1 of the
8    License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library.  If not, see
17    <http://www.gnu.org/licenses/>.  */
19 /* This is the canonical entry point, usually the first thing in the text
20    segment.
22    Note that the code in the .init section has already been run.
23    This includes _init and _libc_init
26    At this entry point, most registers' values are unspecified, except:
28    x0           Contains a function pointer to be registered with `atexit'.
29                 This is how the dynamic linker arranges to have DT_FINI
30                 functions called for shared libraries that have been loaded
31                 before this code runs.
33    sp           The stack contains the arguments and environment:
34                 0(sp)                   argc
35                 8(sp)                   argv[0]
36                 ...
37                 (8*argc)(sp)            NULL
38                 (8*(argc+1))(sp)        envp[0]
39                 ...
40                                         NULL
41  */
43         .text
44         .globl _start
45         .type _start,#function
46 _start:
47         /* Create an initial frame with 0 LR and FP */
48         mov     x29, #0
49         mov     x30, #0
50         mov     x29, sp
52         /* Setup rtld_fini in argument register */
53         mov     x5, x0
55         /* Load argc and a pointer to argv */
56         ldr     x1, [sp, #0]
57         add     x2, sp, #8
59         /* Setup stack limit in argument register */
60         mov     x6, sp
62 #ifdef SHARED
63         adrp    x0, :got:main
64         ldr     x0, [x0, #:got_lo12:main]
66         adrp    x3, :got:__libc_csu_init
67         ldr     x3, [x3, #:got_lo12:__libc_csu_init]
69         adrp    x4, :got:__libc_csu_fini
70         ldr     x4, [x4, #:got_lo12:__libc_csu_fini]
71 #else
72         /* Set up the other arguments in registers */
73         ldr     x0, =main
74         ldr     x3, =__libc_csu_init
75         ldr     x4, =__libc_csu_fini
76 #endif
78         /* __libc_start_main (main, argc, argv, init, fini, rtld_fini,
79                               stack_end) */
81         /* Let the libc call main and exit with its return code.  */
82         bl      __libc_start_main
84         /* should never get here....*/
85         bl      abort
87         /* Define a symbol for the first piece of initialized data.  */
88         .data
89         .globl __data_start
90 __data_start:
91         .long 0
92         .weak data_start
93         data_start = __data_start