1 /* start, OpenRISC version.
2 Copyright (C) 2022 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
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 <https://www.gnu.org/licenses/>. */
36 /* This is the canonical entry point, usually the first thing in the text
39 sp The stack contains the arguments and environment:
44 (4*(argc+1))(sp) envp[0]
55 /* Setup Arguments to the __libc_start_main function. */
57 /* Take values for argc and argv off the stack.
58 These will be passed as arguments two and three to main
59 and thus go in registers r4 and r5, respectively. */
63 /* Pass in rtld_fini from dl-start.S. */
67 /* Obtain a pointer to .got in r16 */
69 l.movhi r16, gotpchi(_GLOBAL_OFFSET_TABLE_-4)
70 l.ori r16, r16, gotpclo(_GLOBAL_OFFSET_TABLE_+0)
73 /* Pass in the the main symbol. */
74 l.lwz r3, got(main)(r16)
76 /* Pass in the the main symbol. */
78 l.ori r3, r3, lo(main)
80 /* Used to be init and fini. */
84 /* Push stack limit onto the stack.
85 This provides the highest stack address to user code (as stack grows
87 This is the seventh argument to __libc_start_main and thus needs to
88 be passed on the stack. */
91 /* Adjust stack to account for a total of 7 args (i.e. the last one is
95 /* Clear the frame pointer and link register since this is the
100 /* Let the libc call main and exit with its return code. */
102 l.j plt(__libc_start_main)
104 l.j __libc_start_main
109 /* Define a symbol for the first piece of initialized data. */
115 data_start = __data_start