~ubuntu-branches/ubuntu/utopic/binutils-arm64-cross/utopic

« back to all changes in this revision

Viewing changes to binutils-2.23.52.20130611/builddir-aarch64-linux-gnu/ld/ldscripts/aarch64elf.xc

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-06-20 17:38:09 UTC
  • Revision ID: package-import@ubuntu.com-20130620173809-app8lzgvymy5fg6c
Tags: 0.7
Build-depend on binutils-source (>= 2.23.52.20130620-1~).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Script for -z combreloc: combine and sort reloc sections */
 
2
OUTPUT_FORMAT("elf64-littleaarch64", "elf64-bigaarch64",
 
3
              "elf64-littleaarch64")
 
4
OUTPUT_ARCH(aarch64)
 
5
ENTRY(_start)
 
6
SEARCH_DIR("/usr/aarch64-linux-gnu/lib");
 
7
SECTIONS
 
8
{
 
9
  /* Read-only sections, merged into text segment: */
 
10
  PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x00400000)); . = SEGMENT_START("text-segment", 0x00400000);
 
11
  .interp         : { *(.interp) }
 
12
  .note.gnu.build-id : { *(.note.gnu.build-id) }
 
13
  .hash           : { *(.hash) }
 
14
  .gnu.hash       : { *(.gnu.hash) }
 
15
  .dynsym         : { *(.dynsym) }
 
16
  .dynstr         : { *(.dynstr) }
 
17
  .gnu.version    : { *(.gnu.version) }
 
18
  .gnu.version_d  : { *(.gnu.version_d) }
 
19
  .gnu.version_r  : { *(.gnu.version_r) }
 
20
  .rela.dyn       :
 
21
    {
 
22
      *(.rela.init)
 
23
      *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
 
24
      *(.rela.fini)
 
25
      *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
 
26
      *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
 
27
      *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
 
28
      *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
 
29
      *(.rela.ctors)
 
30
      *(.rela.dtors)
 
31
      *(.rela.got)
 
32
      *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
 
33
      PROVIDE_HIDDEN (__rel_iplt_start = .);
 
34
      PROVIDE_HIDDEN (__rel_iplt_end = .);
 
35
      PROVIDE_HIDDEN (__rela_iplt_start = .);
 
36
      *(.rela.iplt)
 
37
      PROVIDE_HIDDEN (__rela_iplt_end = .);
 
38
    }
 
39
  .rela.plt       :
 
40
    {
 
41
      *(.rela.plt)
 
42
    }
 
43
  .init           :
 
44
  {
 
45
    KEEP (*(SORT_NONE(.init)))
 
46
  } =0
 
47
  .plt            : { *(.plt) }
 
48
  .iplt           : { *(.iplt) }
 
49
  .text           :
 
50
  {
 
51
    *(.text.unlikely .text.*_unlikely)
 
52
    *(.text.exit .text.exit.*)
 
53
    *(.text.startup .text.startup.*)
 
54
    *(.text.hot .text.hot.*)
 
55
    *(.text .stub .text.* .gnu.linkonce.t.*)
 
56
    /* .gnu.warning sections are handled specially by elf32.em.  */
 
57
    *(.gnu.warning)
 
58
  } =0
 
59
  .fini           :
 
60
  {
 
61
    KEEP (*(SORT_NONE(.fini)))
 
62
  } =0
 
63
  PROVIDE (__etext = .);
 
64
  PROVIDE (_etext = .);
 
65
  PROVIDE (etext = .);
 
66
  .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
 
67
  .rodata1        : { *(.rodata1) }
 
68
  .eh_frame_hdr : { *(.eh_frame_hdr) }
 
69
  .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) }
 
70
  .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table
 
71
  .gcc_except_table.*) }
 
72
  /* These sections are generated by the Sun/Oracle C++ compiler.  */
 
73
  .exception_ranges   : ONLY_IF_RO { *(.exception_ranges
 
74
  .exception_ranges*) }
 
75
  /* Adjust the address for the data segment.  We want to adjust up to
 
76
     the same address within the page on the next page up.  */
 
77
  . = ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1));
 
78
  /* Exception handling  */
 
79
  .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
 
80
  .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
 
81
  .exception_ranges   : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
 
82
  /* Thread Local Storage sections  */
 
83
  .tdata          : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
 
84
  .tbss           : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
 
85
  .preinit_array     :
 
86
  {
 
87
    PROVIDE_HIDDEN (__preinit_array_start = .);
 
88
    KEEP (*(.preinit_array))
 
89
    PROVIDE_HIDDEN (__preinit_array_end = .);
 
90
  }
 
91
  .init_array     :
 
92
  {
 
93
    PROVIDE_HIDDEN (__init_array_start = .);
 
94
    KEEP (*(SORT(.init_array.*)))
 
95
    KEEP (*(.init_array ))
 
96
    PROVIDE_HIDDEN (__init_array_end = .);
 
97
  }
 
98
  .fini_array     :
 
99
  {
 
100
    PROVIDE_HIDDEN (__fini_array_start = .);
 
101
    KEEP (*(SORT(.fini_array.*)))
 
102
    KEEP (*(.fini_array ))
 
103
    PROVIDE_HIDDEN (__fini_array_end = .);
 
104
  }
 
105
  .ctors          :
 
106
  {
 
107
    /* gcc uses crtbegin.o to find the start of
 
108
       the constructors, so we make sure it is
 
109
       first.  Because this is a wildcard, it
 
110
       doesn't matter if the user does not
 
111
       actually link against crtbegin.o; the
 
112
       linker won't look for a file to match a
 
113
       wildcard.  The wildcard also means that it
 
114
       doesn't matter which directory crtbegin.o
 
115
       is in.  */
 
116
    KEEP (*crtbegin.o(.ctors))
 
117
    KEEP (*crtbegin?.o(.ctors))
 
118
    /* We don't want to include the .ctor section from
 
119
       the crtend.o file until after the sorted ctors.
 
120
       The .ctor section from the crtend file contains the
 
121
       end of ctors marker and it must be last */
 
122
    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
 
123
    KEEP (*(SORT(.ctors.*)))
 
124
    KEEP (*(.ctors))
 
125
  }
 
126
  .dtors          :
 
127
  {
 
128
    KEEP (*crtbegin.o(.dtors))
 
129
    KEEP (*crtbegin?.o(.dtors))
 
130
    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
 
131
    KEEP (*(SORT(.dtors.*)))
 
132
    KEEP (*(.dtors))
 
133
  }
 
134
  .jcr            : { KEEP (*(.jcr)) }
 
135
  .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
 
136
  .dynamic        : { *(.dynamic) }
 
137
  .got            : { *(.got) *(.igot) }
 
138
  .got.plt        : { *(.got.plt)  *(.igot.plt) }
 
139
  .data           :
 
140
  {
 
141
    __data_start = . ;
 
142
    *(.data .data.* .gnu.linkonce.d.*)
 
143
    SORT(CONSTRUCTORS)
 
144
  }
 
145
  .data1          : { *(.data1) }
 
146
  _edata = .; PROVIDE (edata = .);
 
147
  . = .;
 
148
  __bss_start = .;
 
149
  __bss_start__ = .;
 
150
  .bss            :
 
151
  {
 
152
   *(.dynbss)
 
153
   *(.bss .bss.* .gnu.linkonce.b.*)
 
154
   *(COMMON)
 
155
   /* Align here to ensure that the .bss section occupies space up to
 
156
      _end.  Align after .bss to ensure correct alignment even if the
 
157
      .bss section disappears because there are no input sections.
 
158
      FIXME: Why do we need it? When there is no .bss section, we don't
 
159
      pad the .data section.  */
 
160
   . = ALIGN(. != 0 ? 64 / 8 : 1);
 
161
  }
 
162
  _bss_end__ = . ; __bss_end__ = . ;
 
163
  . = ALIGN(64 / 8);
 
164
  . = SEGMENT_START("ldata-segment", .);
 
165
  . = ALIGN(64 / 8);
 
166
  __end__ = . ;
 
167
  _end = .; PROVIDE (end = .);
 
168
  /* Stabs debugging sections.  */
 
169
  .stab          0 : { *(.stab) }
 
170
  .stabstr       0 : { *(.stabstr) }
 
171
  .stab.excl     0 : { *(.stab.excl) }
 
172
  .stab.exclstr  0 : { *(.stab.exclstr) }
 
173
  .stab.index    0 : { *(.stab.index) }
 
174
  .stab.indexstr 0 : { *(.stab.indexstr) }
 
175
  .comment       0 : { *(.comment) }
 
176
  /* DWARF debug sections.
 
177
     Symbols in the DWARF debugging sections are relative to the beginning
 
178
     of the section so we begin them at 0.  */
 
179
  /* DWARF 1 */
 
180
  .debug          0 : { *(.debug) }
 
181
  .line           0 : { *(.line) }
 
182
  /* GNU DWARF 1 extensions */
 
183
  .debug_srcinfo  0 : { *(.debug_srcinfo) }
 
184
  .debug_sfnames  0 : { *(.debug_sfnames) }
 
185
  /* DWARF 1.1 and DWARF 2 */
 
186
  .debug_aranges  0 : { *(.debug_aranges) }
 
187
  .debug_pubnames 0 : { *(.debug_pubnames) }
 
188
  /* DWARF 2 */
 
189
  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
 
190
  .debug_abbrev   0 : { *(.debug_abbrev) }
 
191
  .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end ) }
 
192
  .debug_frame    0 : { *(.debug_frame) }
 
193
  .debug_str      0 : { *(.debug_str) }
 
194
  .debug_loc      0 : { *(.debug_loc) }
 
195
  .debug_macinfo  0 : { *(.debug_macinfo) }
 
196
  /* SGI/MIPS DWARF 2 extensions */
 
197
  .debug_weaknames 0 : { *(.debug_weaknames) }
 
198
  .debug_funcnames 0 : { *(.debug_funcnames) }
 
199
  .debug_typenames 0 : { *(.debug_typenames) }
 
200
  .debug_varnames  0 : { *(.debug_varnames) }
 
201
  /* DWARF 3 */
 
202
  .debug_pubtypes 0 : { *(.debug_pubtypes) }
 
203
  .debug_ranges   0 : { *(.debug_ranges) }
 
204
  /* DWARF Extension.  */
 
205
  .debug_macro    0 : { *(.debug_macro) }
 
206
    .stack         0x80000 :
 
207
  {
 
208
    _stack = .;
 
209
    *(.stack)
 
210
  }
 
211
  .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
 
212
  .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
 
213
  /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
 
214
}