2.9
[glibc/nacl-glibc.git] / sysdeps / mach / hurd / powerpc / static-start.S
blob3420fcd31d92e054b0e3569f98430e10234c60a6
1 /* Startup code for statically linked Hurd/PowerPC binaries.
2    Copyright (C) 1998,2001, 2002 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    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, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 #include <sysdep.h>
22  /* These are the various addresses we require.  */
23         .section ".rodata"
24         .align  2
25         weak_extern(__libc_csu_init)
26         weak_extern(__libc_csu_fini)
27 L(start_addresses):
28         .long   _SDA_BASE_
29         .long   JUMPTARGET(main)
30         .long   JUMPTARGET(__libc_csu_init)
31         .long   JUMPTARGET(__libc_csu_fini)
32         ASM_SIZE_DIRECTIVE(L(start_addresses))
34         .section ".text"
35 ENTRY(_start)
36  /* Save the stack pointer to pass to _hurd_stack_setup.  */
37         mr      r3,r1
38  /* Set up an initial stack frame.  */
39         li      r0,0
40         stwu    r0,-16(r1)
41  /* Call _hurd_stack_setup.  */
42         bl      JUMPTARGET(_hurd_stack_setup)
43  /* Pass the argument data to __libc_start_main.  */
44         addi    r9,r1,16
45  /* Clear the LR.  */
46         li      r0,0
47         mtlr    r0
48  /* Set r13 to point at the 'small data area', and put the address of
49     start_addresses in r8...  */
50         lis     r8,L(start_addresses)@ha
51         lwzu    r13,L(start_addresses)@l(r8)
52  /* and continue in libc-start, in glibc.  */
53         b       JUMPTARGET(__libc_start_main)
54 END(_start)
56 /* Define a symbol for the first piece of initialized data.  */
57         .section ".data"
58 __data_start:
59 weak_alias (__data_start, data_start)