Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / mach / hurd / powerpc / static-start.S
blob7c48875476ef07eb1d48e2ec31f194d1675bd397
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, see
17    <http://www.gnu.org/licenses/>.  */
19 #include <sysdep.h>
21  /* These are the various addresses we require.  */
22         .section ".rodata"
23         .align  2
24         weak_extern(__libc_csu_init)
25         weak_extern(__libc_csu_fini)
26 L(start_addresses):
27         .long   _SDA_BASE_
28         .long   JUMPTARGET(main)
29         .long   JUMPTARGET(__libc_csu_init)
30         .long   JUMPTARGET(__libc_csu_fini)
31         ASM_SIZE_DIRECTIVE(L(start_addresses))
33         .section ".text"
34 ENTRY(_start)
35  /* Save the stack pointer to pass to _hurd_stack_setup.  */
36         mr      r3,r1
37  /* Set up an initial stack frame.  */
38         li      r0,0
39         stwu    r0,-16(r1)
40  /* Call _hurd_stack_setup.  */
41         bl      JUMPTARGET(_hurd_stack_setup)
42  /* Pass the argument data to __libc_start_main.  */
43         addi    r9,r1,16
44  /* Clear the LR.  */
45         li      r0,0
46         mtlr    r0
47  /* Set r13 to point at the 'small data area', and put the address of
48     start_addresses in r8...  */
49         lis     r8,L(start_addresses)@ha
50         lwzu    r13,L(start_addresses)@l(r8)
51  /* and continue in libc-start, in glibc.  */
52         b       JUMPTARGET(__libc_start_main)
53 END(_start)
55 /* Define a symbol for the first piece of initialized data.  */
56         .section ".data"
57 __data_start:
58 weak_alias (__data_start, data_start)