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/>. */
21 /* These are the various addresses we require. */
24 weak_extern(__libc_csu_init)
25 weak_extern(__libc_csu_fini)
28 .long JUMPTARGET(main)
29 .long JUMPTARGET(__libc_csu_init)
30 .long JUMPTARGET(__libc_csu_fini)
31 ASM_SIZE_DIRECTIVE(L(start_addresses))
35 /* Save the stack pointer to pass to _hurd_stack_setup. */
37 /* Set up an initial stack frame. */
40 /* Call _hurd_stack_setup. */
41 bl JUMPTARGET(_hurd_stack_setup)
42 /* Pass the argument data to __libc_start_main. */
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)
55 /* Define a symbol for the first piece of initialized data. */
58 weak_alias (__data_start, data_start)