Remove "[Add new features here]" for 2.27
[glibc.git] / sysdeps / aarch64 / start.S
blobdf1c642c12097a3344cc4c557d409b443e33551d
1 /* Copyright (C) 1995-2017 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 #include <sysdep.h>
21 /* This is the canonical entry point, usually the first thing in the text
22    segment.
24    Note that the code in the .init section has already been run.
25    This includes _init and _libc_init
28    At this entry point, most registers' values are unspecified, except:
30    x0/w0        Contains a function pointer to be registered with `atexit'.
31                 This is how the dynamic linker arranges to have DT_FINI
32                 functions called for shared libraries that have been loaded
33                 before this code runs.
35    sp           The stack contains the arguments and environment:
36                 0(sp)                   argc
37                 8(sp)                   argv[0]
38                 ...
39                 (8*argc)(sp)            NULL
40                 (8*(argc+1))(sp)        envp[0]
41                 ...
42                                         NULL
43  */
45         .text
46         .globl _start
47         .type _start,#function
48 _start:
49         /* Create an initial frame with 0 LR and FP */
50         mov     x29, #0
51         mov     x30, #0
53         /* Setup rtld_fini in argument register */
54         mov     x5, x0
56         /* Load argc and a pointer to argv */
57         ldr     PTR_REG (1), [sp, #0]
58         add     x2, sp, #PTR_SIZE
60         /* Setup stack limit in argument register */
61         mov     x6, sp
63 #ifdef SHARED
64         adrp    x0, :got:main
65         ldr     PTR_REG (0), [x0, #:got_lo12:main]
67         adrp    x3, :got:__libc_csu_init
68         ldr     PTR_REG (3), [x3, #:got_lo12:__libc_csu_init]
70         adrp    x4, :got:__libc_csu_fini
71         ldr     PTR_REG (4), [x4, #:got_lo12:__libc_csu_fini]
72 #else
73         /* Set up the other arguments in registers */
74         ldr     PTR_REG (0), =main
75         ldr     PTR_REG (3), =__libc_csu_init
76         ldr     PTR_REG (4), =__libc_csu_fini
77 #endif
79         /* __libc_start_main (main, argc, argv, init, fini, rtld_fini,
80                               stack_end) */
82         /* Let the libc call main and exit with its return code.  */
83         bl      __libc_start_main
85         /* should never get here....*/
86         bl      abort
88         /* Define a symbol for the first piece of initialized data.  */
89         .data
90         .globl __data_start
91 __data_start:
92         .long 0
93         .weak data_start
94         data_start = __data_start