]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/config/rs6000/eabi-ci.S
Update copyright years.
[thirdparty/gcc.git] / libgcc / config / rs6000 / eabi-ci.S
CommitLineData
ed3ef5d3 1/* crti.s for eabi
f1717362 2 Copyright (C) 1996-2016 Free Software Foundation, Inc.
ed3ef5d3 3 Written By Michael Meissner
4
5This file is free software; you can redistribute it and/or modify it
6under the terms of the GNU General Public License as published by the
6bc9506f 7Free Software Foundation; either version 3, or (at your option) any
ed3ef5d3 8later version.
9
ed3ef5d3 10This file is distributed in the hope that it will be useful, but
11WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13General Public License for more details.
14
6bc9506f 15Under Section 7 of GPL version 3, you are granted additional
16permissions described in the GCC Runtime Library Exception, version
173.1, as published by the Free Software Foundation.
ed3ef5d3 18
6bc9506f 19You should have received a copy of the GNU General Public License and
20a copy of the GCC Runtime Library Exception along with this program;
21see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
22<http://www.gnu.org/licenses/>. */
ed3ef5d3 23
24/* This file just supplies labeled starting points for the .got* and other
25 special sections. It is linked in first before other modules. */
8d21c488 26
8d21c488 27 .ident "GNU C crti.s"
28
a91f63e4 29#include <ppc-asm.h>
30
527d5be8 31#ifndef __powerpc64__
a91f63e4 32 .section ".got","aw"
8d21c488 33 .globl __GOT_START__
34 .type __GOT_START__,@object
8d21c488 35__GOT_START__:
8d21c488 36
0d231185 37 .section ".got1","aw"
8d21c488 38 .globl __GOT1_START__
39 .type __GOT1_START__,@object
40__GOT1_START__:
41
0d231185 42 .section ".got2","aw"
8d21c488 43 .globl __GOT2_START__
44 .type __GOT2_START__,@object
45__GOT2_START__:
46
0d231185 47 .section ".fixup","aw"
8d21c488 48 .globl __FIXUP_START__
49 .type __FIXUP_START__,@object
50__FIXUP_START__:
51
0d231185 52 .section ".ctors","aw"
8d21c488 53 .globl __CTOR_LIST__
54 .type __CTOR_LIST__,@object
55__CTOR_LIST__:
56
0d231185 57 .section ".dtors","aw"
9eaaa6c2 58 .globl __DTOR_LIST__
59 .type __DTOR_LIST__,@object
8d21c488 60__DTOR_LIST__:
0d231185 61
62 .section ".sdata","aw"
63 .globl __SDATA_START__
64 .type __SDATA_START__,@object
5ab941eb 65 .weak _SDA_BASE_
66 .type _SDA_BASE_,@object
0d231185 67__SDATA_START__:
5ab941eb 68_SDA_BASE_:
0d231185 69
d629c417 70 .section ".sbss","aw",@nobits
0d231185 71 .globl __SBSS_START__
72 .type __SBSS_START__,@object
73__SBSS_START__:
74
1b04211d 75 .section ".sdata2","a"
5ab941eb 76 .weak _SDA2_BASE_
0d231185 77 .type _SDA2_BASE_,@object
78 .globl __SDATA2_START__
79 .type __SDATA2_START__,@object
80__SDATA2_START__:
5ab941eb 81_SDA2_BASE_:
0d231185 82
d5d8c2e8 83 .section ".sbss2","a"
0d231185 84 .globl __SBSS2_START__
85 .type __SBSS2_START__,@object
86__SBSS2_START__:
d24794a5 87
88 .section ".gcc_except_table","aw"
89 .globl __EXCEPT_START__
90 .type __EXCEPT_START__,@object
91__EXCEPT_START__:
a91f63e4 92
bbd21807 93 .section ".eh_frame","aw"
94 .globl __EH_FRAME_BEGIN__
95 .type __EH_FRAME_BEGIN__,@object
96__EH_FRAME_BEGIN__:
97
ed3ef5d3 98/* Head of __init function used for static constructors. */
a91f63e4 99 .section ".init","ax"
100 .align 2
101FUNC_START(__init)
96e3d3b7 102 stwu 1,-16(1)
a91f63e4 103 mflr 0
96e3d3b7 104 stw 0,20(1)
a91f63e4 105
ed3ef5d3 106/* Head of __fini function used for static destructors. */
a91f63e4 107 .section ".fini","ax"
108 .align 2
109FUNC_START(__fini)
96e3d3b7 110 stwu 1,-16(1)
a91f63e4 111 mflr 0
96e3d3b7 112 stw 0,20(1)
527d5be8 113#endif