]>
Commit | Line | Data |
---|---|---|
40b36596 | 1 | /* 32-bit ELF support for TI C6X |
ac145307 | 2 | Copyright 2010, 2011 |
40b36596 | 3 | Free Software Foundation, Inc. |
c0621d88 NS |
4 | Contributed by Joseph Myers <[email protected]> |
5 | Bernd Schmidt <[email protected]> | |
40b36596 JM |
6 | |
7 | This file is part of BFD, the Binary File Descriptor library. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
11 | the Free Software Foundation; either version 3 of the License, or | |
12 | (at your option) any later version. | |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
20 | along with this program; if not, write to the Free Software | |
21 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
22 | MA 02110-1301, USA. */ | |
23 | ||
24 | #include "sysdep.h" | |
25 | #include "bfd.h" | |
26 | #include "libbfd.h" | |
27 | #include "libiberty.h" | |
28 | #include "elf-bfd.h" | |
29 | #include "elf/tic6x.h" | |
41820509 JM |
30 | #include "elf32-tic6x.h" |
31 | ||
ac145307 BS |
32 | #define ELF_DYNAMIC_INTERPRETER "/lib/ld-uClibc.so.0" |
33 | ||
34 | /* DSBT binaries have a default 128K stack. */ | |
35 | #define DEFAULT_STACK_SIZE 0x20000 | |
36 | ||
37 | /* The size in bytes of an entry in the procedure linkage table. */ | |
38 | #define PLT_ENTRY_SIZE 24 | |
39 | ||
40 | /* TI C6X ELF linker hash table. */ | |
41 | ||
42 | struct elf32_tic6x_link_hash_table | |
43 | { | |
44 | struct elf_link_hash_table elf; | |
45 | ||
46 | /* Short-cuts to get to dynamic linker sections. */ | |
47 | asection *sdynbss; | |
48 | asection *srelbss; | |
49 | ||
50 | /* C6X specific command line arguments. */ | |
51 | struct elf32_tic6x_params params; | |
52 | ||
53 | /* Small local sym cache. */ | |
54 | struct sym_cache sym_cache; | |
55 | ||
56 | /* The output BFD, for convenience. */ | |
57 | bfd *obfd; | |
58 | ||
59 | /* The .dsbt section. */ | |
60 | asection *dsbt; | |
61 | }; | |
62 | ||
63 | /* Get the TI C6X ELF linker hash table from a link_info structure. */ | |
64 | ||
65 | #define elf32_tic6x_hash_table(p) \ | |
66 | ((struct elf32_tic6x_link_hash_table *) ((p)->hash)) | |
67 | ||
68 | /* TI C6X ELF linker hash entry. */ | |
69 | ||
70 | struct elf32_tic6x_link_hash_entry | |
71 | { | |
72 | struct elf_link_hash_entry elf; | |
73 | ||
74 | /* Track dynamic relocs copied for this symbol. */ | |
75 | struct elf_dyn_relocs *dyn_relocs; | |
76 | }; | |
77 | ||
41820509 JM |
78 | struct elf32_tic6x_obj_tdata |
79 | { | |
80 | struct elf_obj_tdata root; | |
81 | ||
82 | /* Whether to use RELA relocations when generating relocations. | |
83 | This is a per-object flag to allow the assembler to generate REL | |
84 | relocations for use in linker testcases. */ | |
85 | bfd_boolean use_rela_p; | |
86 | }; | |
87 | ||
88 | #define elf32_tic6x_tdata(abfd) \ | |
89 | ((struct elf32_tic6x_obj_tdata *) (abfd)->tdata.any) | |
40b36596 | 90 | |
ac145307 BS |
91 | #define is_tic6x_elf(bfd) \ |
92 | (bfd_get_flavour (bfd) == bfd_target_elf_flavour \ | |
93 | && elf_tdata (bfd) != NULL \ | |
94 | && elf_object_id (bfd) == TIC6X_ELF_DATA) | |
95 | ||
96 | /* C6X ELF uses two common sections. One is the usual one, and the | |
97 | other is for small objects. All the small objects are kept | |
98 | together, and then referenced via the gp pointer, which yields | |
99 | faster assembler code. This is what we use for the small common | |
100 | section. This approach is copied from ecoff.c. */ | |
101 | static asection tic6x_elf_scom_section; | |
102 | static asymbol tic6x_elf_scom_symbol; | |
103 | static asymbol *tic6x_elf_scom_symbol_ptr; | |
104 | ||
40b36596 JM |
105 | static reloc_howto_type elf32_tic6x_howto_table[] = |
106 | { | |
107 | HOWTO (R_C6000_NONE, /* type */ | |
108 | 0, /* rightshift */ | |
109 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
110 | 0, /* bitsize */ | |
111 | FALSE, /* pc_relative */ | |
112 | 0, /* bitpos */ | |
113 | complain_overflow_dont,/* complain_on_overflow */ | |
114 | bfd_elf_generic_reloc, /* special_function */ | |
115 | "R_C6000_NONE", /* name */ | |
41820509 JM |
116 | FALSE, /* partial_inplace */ |
117 | 0, /* src_mask */ | |
118 | 0, /* dst_mask */ | |
119 | FALSE), /* pcrel_offset */ | |
120 | HOWTO (R_C6000_ABS32, /* type */ | |
121 | 0, /* rightshift */ | |
122 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
123 | 32, /* bitsize */ | |
124 | FALSE, /* pc_relative */ | |
125 | 0, /* bitpos */ | |
126 | complain_overflow_dont,/* complain_on_overflow */ | |
127 | bfd_elf_generic_reloc, /* special_function */ | |
128 | "R_C6000_ABS32", /* name */ | |
129 | FALSE, /* partial_inplace */ | |
130 | 0, /* src_mask */ | |
131 | 0xffffffff, /* dst_mask */ | |
132 | FALSE), /* pcrel_offset */ | |
133 | HOWTO (R_C6000_ABS16, /* type */ | |
134 | 0, /* rightshift */ | |
135 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
136 | 16, /* bitsize */ | |
137 | FALSE, /* pc_relative */ | |
138 | 0, /* bitpos */ | |
139 | complain_overflow_bitfield,/* complain_on_overflow */ | |
140 | bfd_elf_generic_reloc, /* special_function */ | |
141 | "R_C6000_ABS16", /* name */ | |
142 | FALSE, /* partial_inplace */ | |
143 | 0, /* src_mask */ | |
144 | 0x0000ffff, /* dst_mask */ | |
145 | FALSE), /* pcrel_offset */ | |
146 | HOWTO (R_C6000_ABS8, /* type */ | |
147 | 0, /* rightshift */ | |
148 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
149 | 8, /* bitsize */ | |
150 | FALSE, /* pc_relative */ | |
151 | 0, /* bitpos */ | |
152 | complain_overflow_bitfield,/* complain_on_overflow */ | |
153 | bfd_elf_generic_reloc, /* special_function */ | |
154 | "R_C6000_ABS8", /* name */ | |
155 | FALSE, /* partial_inplace */ | |
156 | 0, /* src_mask */ | |
157 | 0x000000ff, /* dst_mask */ | |
158 | FALSE), /* pcrel_offset */ | |
159 | HOWTO (R_C6000_PCR_S21, /* type */ | |
160 | 2, /* rightshift */ | |
161 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
162 | 21, /* bitsize */ | |
163 | TRUE, /* pc_relative */ | |
164 | 7, /* bitpos */ | |
165 | complain_overflow_signed,/* complain_on_overflow */ | |
166 | bfd_elf_generic_reloc, /* special_function */ | |
167 | "R_C6000_PCR_S21", /* name */ | |
168 | FALSE, /* partial_inplace */ | |
169 | 0, /* src_mask */ | |
170 | 0x0fffff80, /* dst_mask */ | |
171 | TRUE), /* pcrel_offset */ | |
172 | HOWTO (R_C6000_PCR_S12, /* type */ | |
173 | 2, /* rightshift */ | |
174 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
175 | 12, /* bitsize */ | |
176 | TRUE, /* pc_relative */ | |
177 | 16, /* bitpos */ | |
178 | complain_overflow_signed,/* complain_on_overflow */ | |
179 | bfd_elf_generic_reloc, /* special_function */ | |
180 | "R_C6000_PCR_S12", /* name */ | |
181 | FALSE, /* partial_inplace */ | |
182 | 0, /* src_mask */ | |
183 | 0x0fff0000, /* dst_mask */ | |
184 | TRUE), /* pcrel_offset */ | |
185 | HOWTO (R_C6000_PCR_S10, /* type */ | |
186 | 2, /* rightshift */ | |
187 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
188 | 10, /* bitsize */ | |
189 | TRUE, /* pc_relative */ | |
190 | 13, /* bitpos */ | |
191 | complain_overflow_signed,/* complain_on_overflow */ | |
192 | bfd_elf_generic_reloc, /* special_function */ | |
193 | "R_C6000_PCR_S10", /* name */ | |
194 | FALSE, /* partial_inplace */ | |
195 | 0, /* src_mask */ | |
196 | 0x007fe000, /* dst_mask */ | |
197 | TRUE), /* pcrel_offset */ | |
198 | HOWTO (R_C6000_PCR_S7, /* type */ | |
199 | 2, /* rightshift */ | |
200 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
201 | 7, /* bitsize */ | |
202 | TRUE, /* pc_relative */ | |
203 | 16, /* bitpos */ | |
204 | complain_overflow_signed,/* complain_on_overflow */ | |
205 | bfd_elf_generic_reloc, /* special_function */ | |
206 | "R_C6000_PCR_S7", /* name */ | |
207 | FALSE, /* partial_inplace */ | |
208 | 0, /* src_mask */ | |
209 | 0x007f0000, /* dst_mask */ | |
210 | TRUE), /* pcrel_offset */ | |
211 | HOWTO (R_C6000_ABS_S16, /* type */ | |
212 | 0, /* rightshift */ | |
213 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
214 | 16, /* bitsize */ | |
215 | FALSE, /* pc_relative */ | |
216 | 7, /* bitpos */ | |
217 | complain_overflow_signed,/* complain_on_overflow */ | |
218 | bfd_elf_generic_reloc, /* special_function */ | |
219 | "R_C6000_ABS_S16", /* name */ | |
220 | FALSE, /* partial_inplace */ | |
221 | 0, /* src_mask */ | |
222 | 0x007fff80, /* dst_mask */ | |
223 | FALSE), /* pcrel_offset */ | |
224 | HOWTO (R_C6000_ABS_L16, /* type */ | |
225 | 0, /* rightshift */ | |
226 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
227 | 16, /* bitsize */ | |
228 | FALSE, /* pc_relative */ | |
229 | 7, /* bitpos */ | |
230 | complain_overflow_dont,/* complain_on_overflow */ | |
231 | bfd_elf_generic_reloc, /* special_function */ | |
232 | "R_C6000_ABS_L16", /* name */ | |
233 | FALSE, /* partial_inplace */ | |
234 | 0, /* src_mask */ | |
235 | 0x007fff80, /* dst_mask */ | |
236 | FALSE), /* pcrel_offset */ | |
237 | HOWTO (R_C6000_ABS_H16, /* type */ | |
238 | 16, /* rightshift */ | |
239 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
240 | 16, /* bitsize */ | |
241 | FALSE, /* pc_relative */ | |
242 | 7, /* bitpos */ | |
243 | complain_overflow_dont,/* complain_on_overflow */ | |
244 | bfd_elf_generic_reloc, /* special_function */ | |
245 | "R_C6000_ABS_H16", /* name */ | |
246 | FALSE, /* partial_inplace */ | |
247 | 0, /* src_mask */ | |
248 | 0x007fff80, /* dst_mask */ | |
249 | FALSE), /* pcrel_offset */ | |
250 | HOWTO (R_C6000_SBR_U15_B, /* type */ | |
251 | 0, /* rightshift */ | |
252 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
253 | 15, /* bitsize */ | |
254 | FALSE, /* pc_relative */ | |
255 | 8, /* bitpos */ | |
256 | complain_overflow_unsigned,/* complain_on_overflow */ | |
257 | bfd_elf_generic_reloc, /* special_function */ | |
258 | "R_C6000_SBR_U15_B", /* name */ | |
259 | FALSE, /* partial_inplace */ | |
260 | 0, /* src_mask */ | |
261 | 0x007fff00, /* dst_mask */ | |
262 | FALSE), /* pcrel_offset */ | |
263 | HOWTO (R_C6000_SBR_U15_H, /* type */ | |
264 | 1, /* rightshift */ | |
265 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
266 | 15, /* bitsize */ | |
267 | FALSE, /* pc_relative */ | |
268 | 8, /* bitpos */ | |
269 | complain_overflow_unsigned,/* complain_on_overflow */ | |
270 | bfd_elf_generic_reloc, /* special_function */ | |
271 | "R_C6000_SBR_U15_H", /* name */ | |
272 | FALSE, /* partial_inplace */ | |
273 | 0, /* src_mask */ | |
274 | 0x007fff00, /* dst_mask */ | |
275 | FALSE), /* pcrel_offset */ | |
276 | HOWTO (R_C6000_SBR_U15_W, /* type */ | |
277 | 2, /* rightshift */ | |
278 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
279 | 15, /* bitsize */ | |
280 | FALSE, /* pc_relative */ | |
281 | 8, /* bitpos */ | |
282 | complain_overflow_unsigned,/* complain_on_overflow */ | |
283 | bfd_elf_generic_reloc, /* special_function */ | |
284 | "R_C6000_SBR_U15_W", /* name */ | |
285 | FALSE, /* partial_inplace */ | |
286 | 0, /* src_mask */ | |
287 | 0x007fff00, /* dst_mask */ | |
288 | FALSE), /* pcrel_offset */ | |
289 | HOWTO (R_C6000_SBR_S16, /* type */ | |
290 | 0, /* rightshift */ | |
291 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
292 | 16, /* bitsize */ | |
293 | FALSE, /* pc_relative */ | |
294 | 7, /* bitpos */ | |
295 | complain_overflow_signed,/* complain_on_overflow */ | |
296 | bfd_elf_generic_reloc, /* special_function */ | |
297 | "R_C6000_SBR_S16", /* name */ | |
298 | FALSE, /* partial_inplace */ | |
299 | 0, /* src_mask */ | |
300 | 0x007fff80, /* dst_mask */ | |
301 | FALSE), /* pcrel_offset */ | |
302 | HOWTO (R_C6000_SBR_L16_B, /* type */ | |
303 | 0, /* rightshift */ | |
304 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
305 | 16, /* bitsize */ | |
306 | FALSE, /* pc_relative */ | |
307 | 7, /* bitpos */ | |
308 | complain_overflow_dont,/* complain_on_overflow */ | |
309 | bfd_elf_generic_reloc, /* special_function */ | |
310 | "R_C6000_SBR_L16_B", /* name */ | |
311 | FALSE, /* partial_inplace */ | |
312 | 0, /* src_mask */ | |
313 | 0x007fff80, /* dst_mask */ | |
314 | FALSE), /* pcrel_offset */ | |
315 | HOWTO (R_C6000_SBR_L16_H, /* type */ | |
316 | 1, /* rightshift */ | |
317 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
318 | 16, /* bitsize */ | |
319 | FALSE, /* pc_relative */ | |
320 | 7, /* bitpos */ | |
321 | complain_overflow_dont,/* complain_on_overflow */ | |
322 | bfd_elf_generic_reloc, /* special_function */ | |
323 | "R_C6000_SBR_L16_H", /* name */ | |
324 | FALSE, /* partial_inplace */ | |
325 | 0, /* src_mask */ | |
326 | 0x007fff80, /* dst_mask */ | |
327 | FALSE), /* pcrel_offset */ | |
328 | HOWTO (R_C6000_SBR_L16_W, /* type */ | |
329 | 2, /* rightshift */ | |
330 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
331 | 16, /* bitsize */ | |
332 | FALSE, /* pc_relative */ | |
333 | 7, /* bitpos */ | |
334 | complain_overflow_dont,/* complain_on_overflow */ | |
335 | bfd_elf_generic_reloc, /* special_function */ | |
336 | "R_C6000_SBR_L16_W", /* name */ | |
337 | FALSE, /* partial_inplace */ | |
338 | 0, /* src_mask */ | |
339 | 0x007fff80, /* dst_mask */ | |
340 | FALSE), /* pcrel_offset */ | |
341 | HOWTO (R_C6000_SBR_H16_B, /* type */ | |
342 | 16, /* rightshift */ | |
343 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
344 | 16, /* bitsize */ | |
345 | FALSE, /* pc_relative */ | |
346 | 7, /* bitpos */ | |
347 | complain_overflow_dont,/* complain_on_overflow */ | |
348 | bfd_elf_generic_reloc, /* special_function */ | |
349 | "R_C6000_SBR_H16_B", /* name */ | |
350 | FALSE, /* partial_inplace */ | |
351 | 0, /* src_mask */ | |
352 | 0x007fff80, /* dst_mask */ | |
353 | FALSE), /* pcrel_offset */ | |
354 | HOWTO (R_C6000_SBR_H16_H, /* type */ | |
355 | 17, /* rightshift */ | |
356 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
357 | 16, /* bitsize */ | |
358 | FALSE, /* pc_relative */ | |
359 | 7, /* bitpos */ | |
360 | complain_overflow_dont,/* complain_on_overflow */ | |
361 | bfd_elf_generic_reloc, /* special_function */ | |
362 | "R_C6000_SBR_H16_H", /* name */ | |
363 | FALSE, /* partial_inplace */ | |
364 | 0, /* src_mask */ | |
365 | 0x007fff80, /* dst_mask */ | |
366 | FALSE), /* pcrel_offset */ | |
367 | HOWTO (R_C6000_SBR_H16_W, /* type */ | |
368 | 18, /* rightshift */ | |
369 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
370 | 16, /* bitsize */ | |
371 | FALSE, /* pc_relative */ | |
372 | 7, /* bitpos */ | |
373 | complain_overflow_dont,/* complain_on_overflow */ | |
374 | bfd_elf_generic_reloc, /* special_function */ | |
375 | "R_C6000_SBR_H16_W", /* name */ | |
376 | FALSE, /* partial_inplace */ | |
377 | 0, /* src_mask */ | |
378 | 0x007fff80, /* dst_mask */ | |
379 | FALSE), /* pcrel_offset */ | |
380 | HOWTO (R_C6000_SBR_GOT_U15_W, /* type */ | |
381 | 2, /* rightshift */ | |
382 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
383 | 15, /* bitsize */ | |
384 | FALSE, /* pc_relative */ | |
385 | 8, /* bitpos */ | |
386 | complain_overflow_unsigned,/* complain_on_overflow */ | |
387 | bfd_elf_generic_reloc, /* special_function */ | |
388 | "R_C6000_SBR_GOT_U15_W",/* name */ | |
389 | FALSE, /* partial_inplace */ | |
390 | 0, /* src_mask */ | |
391 | 0x007fff00, /* dst_mask */ | |
392 | FALSE), /* pcrel_offset */ | |
393 | HOWTO (R_C6000_SBR_GOT_L16_W, /* type */ | |
394 | 2, /* rightshift */ | |
395 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
396 | 16, /* bitsize */ | |
397 | FALSE, /* pc_relative */ | |
398 | 7, /* bitpos */ | |
399 | complain_overflow_dont,/* complain_on_overflow */ | |
400 | bfd_elf_generic_reloc, /* special_function */ | |
401 | "R_C6000_SBR_GOT_L16_W",/* name */ | |
402 | FALSE, /* partial_inplace */ | |
403 | 0, /* src_mask */ | |
404 | 0x007fff80, /* dst_mask */ | |
405 | FALSE), /* pcrel_offset */ | |
406 | HOWTO (R_C6000_SBR_GOT_H16_W, /* type */ | |
407 | 18, /* rightshift */ | |
408 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
409 | 16, /* bitsize */ | |
410 | FALSE, /* pc_relative */ | |
411 | 7, /* bitpos */ | |
412 | complain_overflow_dont,/* complain_on_overflow */ | |
413 | bfd_elf_generic_reloc, /* special_function */ | |
414 | "R_C6000_SBR_GOT_H16_W",/* name */ | |
415 | FALSE, /* partial_inplace */ | |
416 | 0, /* src_mask */ | |
417 | 0x007fff80, /* dst_mask */ | |
418 | FALSE), /* pcrel_offset */ | |
419 | HOWTO (R_C6000_DSBT_INDEX, /* type */ | |
420 | 0, /* rightshift */ | |
421 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
422 | 15, /* bitsize */ | |
423 | FALSE, /* pc_relative */ | |
424 | 8, /* bitpos */ | |
425 | complain_overflow_unsigned,/* complain_on_overflow */ | |
426 | bfd_elf_generic_reloc, /* special_function */ | |
427 | "R_C6000_DSBT_INDEX", /* name */ | |
428 | FALSE, /* partial_inplace */ | |
429 | 0, /* src_mask */ | |
430 | 0x007fff00, /* dst_mask */ | |
431 | FALSE), /* pcrel_offset */ | |
432 | HOWTO (R_C6000_PREL31, /* type */ | |
433 | 1, /* rightshift */ | |
434 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
435 | 31, /* bitsize */ | |
44e87ece | 436 | TRUE, /* pc_relative */ |
41820509 JM |
437 | 0, /* bitpos */ |
438 | complain_overflow_dont,/* complain_on_overflow */ | |
439 | bfd_elf_generic_reloc, /* special_function */ | |
440 | "R_C6000_PREL31", /* name */ | |
441 | FALSE, /* partial_inplace */ | |
442 | 0, /* src_mask */ | |
443 | 0x7fffffff, /* dst_mask */ | |
44e87ece | 444 | TRUE), /* pcrel_offset */ |
41820509 JM |
445 | HOWTO (R_C6000_COPY, /* type */ |
446 | 0, /* rightshift */ | |
447 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
448 | 32, /* bitsize */ | |
449 | FALSE, /* pc_relative */ | |
450 | 0, /* bitpos */ | |
451 | complain_overflow_dont,/* complain_on_overflow */ | |
452 | bfd_elf_generic_reloc, /* special_function */ | |
453 | "R_C6000_COPY", /* name */ | |
454 | FALSE, /* partial_inplace */ | |
455 | 0, /* src_mask */ | |
456 | 0xffffffff, /* dst_mask */ | |
457 | FALSE), /* pcrel_offset */ | |
ac145307 BS |
458 | HOWTO (R_C6000_JUMP_SLOT, /* type */ |
459 | 0, /* rightshift */ | |
460 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
461 | 32, /* bitsize */ | |
462 | FALSE, /* pc_relative */ | |
463 | 0, /* bitpos */ | |
464 | complain_overflow_dont,/* complain_on_overflow */ | |
465 | bfd_elf_generic_reloc, /* special_function */ | |
466 | "R_C6000_JUMP_SLOT", /* name */ | |
467 | FALSE, /* partial_inplace */ | |
468 | 0, /* src_mask */ | |
469 | 0xffffffff, /* dst_mask */ | |
470 | FALSE), /* pcrel_offset */ | |
2fbb87f6 PB |
471 | HOWTO (R_C6000_EHTYPE, /* type */ |
472 | 0, /* rightshift */ | |
473 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
474 | 32, /* bitsize */ | |
475 | FALSE, /* pc_relative */ | |
476 | 0, /* bitpos */ | |
477 | complain_overflow_dont,/* complain_on_overflow */ | |
478 | bfd_elf_generic_reloc, /* special_function */ | |
479 | "R_C6000_EHTYPE", /* name */ | |
480 | FALSE, /* partial_inplace */ | |
481 | 0, /* src_mask */ | |
482 | 0xffffffff, /* dst_mask */ | |
483 | FALSE), /* pcrel_offset */ | |
41820509 JM |
484 | EMPTY_HOWTO (29), |
485 | EMPTY_HOWTO (30), | |
486 | EMPTY_HOWTO (31), | |
487 | EMPTY_HOWTO (32), | |
488 | EMPTY_HOWTO (33), | |
489 | EMPTY_HOWTO (34), | |
490 | EMPTY_HOWTO (35), | |
491 | EMPTY_HOWTO (36), | |
492 | EMPTY_HOWTO (37), | |
493 | EMPTY_HOWTO (38), | |
494 | EMPTY_HOWTO (39), | |
495 | EMPTY_HOWTO (40), | |
496 | EMPTY_HOWTO (41), | |
497 | EMPTY_HOWTO (42), | |
498 | EMPTY_HOWTO (43), | |
499 | EMPTY_HOWTO (44), | |
500 | EMPTY_HOWTO (45), | |
501 | EMPTY_HOWTO (46), | |
502 | EMPTY_HOWTO (47), | |
503 | EMPTY_HOWTO (48), | |
504 | EMPTY_HOWTO (49), | |
505 | EMPTY_HOWTO (50), | |
506 | EMPTY_HOWTO (51), | |
507 | EMPTY_HOWTO (52), | |
508 | EMPTY_HOWTO (53), | |
509 | EMPTY_HOWTO (54), | |
510 | EMPTY_HOWTO (55), | |
511 | EMPTY_HOWTO (56), | |
512 | EMPTY_HOWTO (57), | |
513 | EMPTY_HOWTO (58), | |
514 | EMPTY_HOWTO (59), | |
515 | EMPTY_HOWTO (60), | |
516 | EMPTY_HOWTO (61), | |
517 | EMPTY_HOWTO (62), | |
518 | EMPTY_HOWTO (63), | |
519 | EMPTY_HOWTO (64), | |
520 | EMPTY_HOWTO (65), | |
521 | EMPTY_HOWTO (66), | |
522 | EMPTY_HOWTO (67), | |
523 | EMPTY_HOWTO (68), | |
524 | EMPTY_HOWTO (69), | |
525 | EMPTY_HOWTO (70), | |
526 | EMPTY_HOWTO (71), | |
527 | EMPTY_HOWTO (72), | |
528 | EMPTY_HOWTO (73), | |
529 | EMPTY_HOWTO (74), | |
530 | EMPTY_HOWTO (75), | |
531 | EMPTY_HOWTO (76), | |
532 | EMPTY_HOWTO (77), | |
533 | EMPTY_HOWTO (78), | |
534 | EMPTY_HOWTO (79), | |
535 | EMPTY_HOWTO (80), | |
536 | EMPTY_HOWTO (81), | |
537 | EMPTY_HOWTO (82), | |
538 | EMPTY_HOWTO (83), | |
539 | EMPTY_HOWTO (84), | |
540 | EMPTY_HOWTO (85), | |
541 | EMPTY_HOWTO (86), | |
542 | EMPTY_HOWTO (87), | |
543 | EMPTY_HOWTO (88), | |
544 | EMPTY_HOWTO (89), | |
545 | EMPTY_HOWTO (90), | |
546 | EMPTY_HOWTO (91), | |
547 | EMPTY_HOWTO (92), | |
548 | EMPTY_HOWTO (93), | |
549 | EMPTY_HOWTO (94), | |
550 | EMPTY_HOWTO (95), | |
551 | EMPTY_HOWTO (96), | |
552 | EMPTY_HOWTO (97), | |
553 | EMPTY_HOWTO (98), | |
554 | EMPTY_HOWTO (99), | |
555 | EMPTY_HOWTO (100), | |
556 | EMPTY_HOWTO (101), | |
557 | EMPTY_HOWTO (102), | |
558 | EMPTY_HOWTO (103), | |
559 | EMPTY_HOWTO (104), | |
560 | EMPTY_HOWTO (105), | |
561 | EMPTY_HOWTO (106), | |
562 | EMPTY_HOWTO (107), | |
563 | EMPTY_HOWTO (108), | |
564 | EMPTY_HOWTO (109), | |
565 | EMPTY_HOWTO (110), | |
566 | EMPTY_HOWTO (111), | |
567 | EMPTY_HOWTO (112), | |
568 | EMPTY_HOWTO (113), | |
569 | EMPTY_HOWTO (114), | |
570 | EMPTY_HOWTO (115), | |
571 | EMPTY_HOWTO (116), | |
572 | EMPTY_HOWTO (117), | |
573 | EMPTY_HOWTO (118), | |
574 | EMPTY_HOWTO (119), | |
575 | EMPTY_HOWTO (120), | |
576 | EMPTY_HOWTO (121), | |
577 | EMPTY_HOWTO (122), | |
578 | EMPTY_HOWTO (123), | |
579 | EMPTY_HOWTO (124), | |
580 | EMPTY_HOWTO (125), | |
581 | EMPTY_HOWTO (126), | |
582 | EMPTY_HOWTO (127), | |
583 | EMPTY_HOWTO (128), | |
584 | EMPTY_HOWTO (129), | |
585 | EMPTY_HOWTO (130), | |
586 | EMPTY_HOWTO (131), | |
587 | EMPTY_HOWTO (132), | |
588 | EMPTY_HOWTO (133), | |
589 | EMPTY_HOWTO (134), | |
590 | EMPTY_HOWTO (135), | |
591 | EMPTY_HOWTO (136), | |
592 | EMPTY_HOWTO (137), | |
593 | EMPTY_HOWTO (138), | |
594 | EMPTY_HOWTO (139), | |
595 | EMPTY_HOWTO (140), | |
596 | EMPTY_HOWTO (141), | |
597 | EMPTY_HOWTO (142), | |
598 | EMPTY_HOWTO (143), | |
599 | EMPTY_HOWTO (144), | |
600 | EMPTY_HOWTO (145), | |
601 | EMPTY_HOWTO (146), | |
602 | EMPTY_HOWTO (147), | |
603 | EMPTY_HOWTO (148), | |
604 | EMPTY_HOWTO (149), | |
605 | EMPTY_HOWTO (150), | |
606 | EMPTY_HOWTO (151), | |
607 | EMPTY_HOWTO (152), | |
608 | EMPTY_HOWTO (153), | |
609 | EMPTY_HOWTO (154), | |
610 | EMPTY_HOWTO (155), | |
611 | EMPTY_HOWTO (156), | |
612 | EMPTY_HOWTO (157), | |
613 | EMPTY_HOWTO (158), | |
614 | EMPTY_HOWTO (159), | |
615 | EMPTY_HOWTO (160), | |
616 | EMPTY_HOWTO (161), | |
617 | EMPTY_HOWTO (162), | |
618 | EMPTY_HOWTO (163), | |
619 | EMPTY_HOWTO (164), | |
620 | EMPTY_HOWTO (165), | |
621 | EMPTY_HOWTO (166), | |
622 | EMPTY_HOWTO (167), | |
623 | EMPTY_HOWTO (168), | |
624 | EMPTY_HOWTO (169), | |
625 | EMPTY_HOWTO (170), | |
626 | EMPTY_HOWTO (171), | |
627 | EMPTY_HOWTO (172), | |
628 | EMPTY_HOWTO (173), | |
629 | EMPTY_HOWTO (174), | |
630 | EMPTY_HOWTO (175), | |
631 | EMPTY_HOWTO (176), | |
632 | EMPTY_HOWTO (177), | |
633 | EMPTY_HOWTO (178), | |
634 | EMPTY_HOWTO (179), | |
635 | EMPTY_HOWTO (180), | |
636 | EMPTY_HOWTO (181), | |
637 | EMPTY_HOWTO (182), | |
638 | EMPTY_HOWTO (183), | |
639 | EMPTY_HOWTO (184), | |
640 | EMPTY_HOWTO (185), | |
641 | EMPTY_HOWTO (186), | |
642 | EMPTY_HOWTO (187), | |
643 | EMPTY_HOWTO (188), | |
644 | EMPTY_HOWTO (189), | |
645 | EMPTY_HOWTO (190), | |
646 | EMPTY_HOWTO (191), | |
647 | EMPTY_HOWTO (192), | |
648 | EMPTY_HOWTO (193), | |
649 | EMPTY_HOWTO (194), | |
650 | EMPTY_HOWTO (195), | |
651 | EMPTY_HOWTO (196), | |
652 | EMPTY_HOWTO (197), | |
653 | EMPTY_HOWTO (198), | |
654 | EMPTY_HOWTO (199), | |
655 | EMPTY_HOWTO (200), | |
656 | EMPTY_HOWTO (201), | |
657 | EMPTY_HOWTO (202), | |
658 | EMPTY_HOWTO (203), | |
659 | EMPTY_HOWTO (204), | |
660 | EMPTY_HOWTO (205), | |
661 | EMPTY_HOWTO (206), | |
662 | EMPTY_HOWTO (207), | |
663 | EMPTY_HOWTO (208), | |
664 | EMPTY_HOWTO (209), | |
665 | EMPTY_HOWTO (210), | |
666 | EMPTY_HOWTO (211), | |
667 | EMPTY_HOWTO (212), | |
668 | EMPTY_HOWTO (213), | |
669 | EMPTY_HOWTO (214), | |
670 | EMPTY_HOWTO (215), | |
671 | EMPTY_HOWTO (216), | |
672 | EMPTY_HOWTO (217), | |
673 | EMPTY_HOWTO (218), | |
674 | EMPTY_HOWTO (219), | |
675 | EMPTY_HOWTO (220), | |
676 | EMPTY_HOWTO (221), | |
677 | EMPTY_HOWTO (222), | |
678 | EMPTY_HOWTO (223), | |
679 | EMPTY_HOWTO (224), | |
680 | EMPTY_HOWTO (225), | |
681 | EMPTY_HOWTO (226), | |
682 | EMPTY_HOWTO (227), | |
683 | EMPTY_HOWTO (228), | |
684 | EMPTY_HOWTO (229), | |
685 | EMPTY_HOWTO (230), | |
686 | EMPTY_HOWTO (231), | |
687 | EMPTY_HOWTO (232), | |
688 | EMPTY_HOWTO (233), | |
689 | EMPTY_HOWTO (234), | |
690 | EMPTY_HOWTO (235), | |
691 | EMPTY_HOWTO (236), | |
692 | EMPTY_HOWTO (237), | |
693 | EMPTY_HOWTO (238), | |
694 | EMPTY_HOWTO (239), | |
695 | EMPTY_HOWTO (240), | |
696 | EMPTY_HOWTO (241), | |
697 | EMPTY_HOWTO (242), | |
698 | EMPTY_HOWTO (243), | |
699 | EMPTY_HOWTO (244), | |
700 | EMPTY_HOWTO (245), | |
701 | EMPTY_HOWTO (246), | |
702 | EMPTY_HOWTO (247), | |
703 | EMPTY_HOWTO (248), | |
704 | EMPTY_HOWTO (249), | |
705 | EMPTY_HOWTO (250), | |
706 | EMPTY_HOWTO (251), | |
707 | EMPTY_HOWTO (252), | |
708 | HOWTO (R_C6000_ALIGN, /* type */ | |
709 | 0, /* rightshift */ | |
710 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
711 | 0, /* bitsize */ | |
712 | FALSE, /* pc_relative */ | |
713 | 0, /* bitpos */ | |
714 | complain_overflow_dont,/* complain_on_overflow */ | |
715 | bfd_elf_generic_reloc, /* special_function */ | |
716 | "R_C6000_ALIGN", /* name */ | |
717 | FALSE, /* partial_inplace */ | |
718 | 0, /* src_mask */ | |
719 | 0, /* dst_mask */ | |
720 | FALSE), /* pcrel_offset */ | |
721 | HOWTO (R_C6000_FPHEAD, /* type */ | |
722 | 0, /* rightshift */ | |
723 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
724 | 0, /* bitsize */ | |
725 | FALSE, /* pc_relative */ | |
726 | 0, /* bitpos */ | |
727 | complain_overflow_dont,/* complain_on_overflow */ | |
728 | bfd_elf_generic_reloc, /* special_function */ | |
729 | "R_C6000_FPHEAD", /* name */ | |
730 | FALSE, /* partial_inplace */ | |
731 | 0, /* src_mask */ | |
732 | 0, /* dst_mask */ | |
733 | FALSE), /* pcrel_offset */ | |
734 | HOWTO (R_C6000_NOCMP, /* type */ | |
735 | 0, /* rightshift */ | |
736 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
737 | 0, /* bitsize */ | |
738 | FALSE, /* pc_relative */ | |
739 | 0, /* bitpos */ | |
740 | complain_overflow_dont,/* complain_on_overflow */ | |
741 | bfd_elf_generic_reloc, /* special_function */ | |
742 | "R_C6000_NOCMP", /* name */ | |
743 | FALSE, /* partial_inplace */ | |
744 | 0, /* src_mask */ | |
745 | 0, /* dst_mask */ | |
746 | FALSE) /* pcrel_offset */ | |
747 | }; | |
748 | ||
749 | static reloc_howto_type elf32_tic6x_howto_table_rel[] = | |
750 | { | |
751 | HOWTO (R_C6000_NONE, /* type */ | |
752 | 0, /* rightshift */ | |
753 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
754 | 0, /* bitsize */ | |
755 | FALSE, /* pc_relative */ | |
756 | 0, /* bitpos */ | |
757 | complain_overflow_dont,/* complain_on_overflow */ | |
758 | bfd_elf_generic_reloc, /* special_function */ | |
759 | "R_C6000_NONE", /* name */ | |
760 | TRUE, /* partial_inplace */ | |
40b36596 JM |
761 | 0, /* src_mask */ |
762 | 0, /* dst_mask */ | |
763 | FALSE), /* pcrel_offset */ | |
764 | HOWTO (R_C6000_ABS32, /* type */ | |
765 | 0, /* rightshift */ | |
766 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
767 | 32, /* bitsize */ | |
768 | FALSE, /* pc_relative */ | |
769 | 0, /* bitpos */ | |
770 | complain_overflow_dont,/* complain_on_overflow */ | |
771 | bfd_elf_generic_reloc, /* special_function */ | |
772 | "R_C6000_ABS32", /* name */ | |
41820509 JM |
773 | TRUE, /* partial_inplace */ |
774 | 0xffffffff, /* src_mask */ | |
40b36596 JM |
775 | 0xffffffff, /* dst_mask */ |
776 | FALSE), /* pcrel_offset */ | |
777 | HOWTO (R_C6000_ABS16, /* type */ | |
778 | 0, /* rightshift */ | |
779 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
780 | 16, /* bitsize */ | |
781 | FALSE, /* pc_relative */ | |
782 | 0, /* bitpos */ | |
783 | complain_overflow_bitfield,/* complain_on_overflow */ | |
784 | bfd_elf_generic_reloc, /* special_function */ | |
785 | "R_C6000_ABS16", /* name */ | |
41820509 JM |
786 | TRUE, /* partial_inplace */ |
787 | 0x0000ffff, /* src_mask */ | |
40b36596 JM |
788 | 0x0000ffff, /* dst_mask */ |
789 | FALSE), /* pcrel_offset */ | |
790 | HOWTO (R_C6000_ABS8, /* type */ | |
791 | 0, /* rightshift */ | |
792 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
793 | 8, /* bitsize */ | |
794 | FALSE, /* pc_relative */ | |
795 | 0, /* bitpos */ | |
796 | complain_overflow_bitfield,/* complain_on_overflow */ | |
797 | bfd_elf_generic_reloc, /* special_function */ | |
798 | "R_C6000_ABS8", /* name */ | |
41820509 JM |
799 | TRUE, /* partial_inplace */ |
800 | 0x000000ff, /* src_mask */ | |
40b36596 JM |
801 | 0x000000ff, /* dst_mask */ |
802 | FALSE), /* pcrel_offset */ | |
803 | HOWTO (R_C6000_PCR_S21, /* type */ | |
804 | 2, /* rightshift */ | |
805 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
806 | 21, /* bitsize */ | |
807 | TRUE, /* pc_relative */ | |
808 | 7, /* bitpos */ | |
809 | complain_overflow_signed,/* complain_on_overflow */ | |
810 | bfd_elf_generic_reloc, /* special_function */ | |
811 | "R_C6000_PCR_S21", /* name */ | |
41820509 JM |
812 | TRUE, /* partial_inplace */ |
813 | 0x0fffff80, /* src_mask */ | |
40b36596 JM |
814 | 0x0fffff80, /* dst_mask */ |
815 | TRUE), /* pcrel_offset */ | |
816 | HOWTO (R_C6000_PCR_S12, /* type */ | |
817 | 2, /* rightshift */ | |
818 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
819 | 12, /* bitsize */ | |
820 | TRUE, /* pc_relative */ | |
821 | 16, /* bitpos */ | |
822 | complain_overflow_signed,/* complain_on_overflow */ | |
823 | bfd_elf_generic_reloc, /* special_function */ | |
824 | "R_C6000_PCR_S12", /* name */ | |
41820509 JM |
825 | TRUE, /* partial_inplace */ |
826 | 0x0fff0000, /* src_mask */ | |
40b36596 JM |
827 | 0x0fff0000, /* dst_mask */ |
828 | TRUE), /* pcrel_offset */ | |
829 | HOWTO (R_C6000_PCR_S10, /* type */ | |
830 | 2, /* rightshift */ | |
831 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
832 | 10, /* bitsize */ | |
833 | TRUE, /* pc_relative */ | |
834 | 13, /* bitpos */ | |
835 | complain_overflow_signed,/* complain_on_overflow */ | |
836 | bfd_elf_generic_reloc, /* special_function */ | |
837 | "R_C6000_PCR_S10", /* name */ | |
41820509 JM |
838 | TRUE, /* partial_inplace */ |
839 | 0x007fe000, /* src_mask */ | |
40b36596 JM |
840 | 0x007fe000, /* dst_mask */ |
841 | TRUE), /* pcrel_offset */ | |
842 | HOWTO (R_C6000_PCR_S7, /* type */ | |
843 | 2, /* rightshift */ | |
844 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
845 | 7, /* bitsize */ | |
846 | TRUE, /* pc_relative */ | |
847 | 16, /* bitpos */ | |
848 | complain_overflow_signed,/* complain_on_overflow */ | |
849 | bfd_elf_generic_reloc, /* special_function */ | |
850 | "R_C6000_PCR_S7", /* name */ | |
41820509 JM |
851 | TRUE, /* partial_inplace */ |
852 | 0x007f0000, /* src_mask */ | |
40b36596 JM |
853 | 0x007f0000, /* dst_mask */ |
854 | TRUE), /* pcrel_offset */ | |
855 | HOWTO (R_C6000_ABS_S16, /* type */ | |
856 | 0, /* rightshift */ | |
857 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
858 | 16, /* bitsize */ | |
859 | FALSE, /* pc_relative */ | |
860 | 7, /* bitpos */ | |
861 | complain_overflow_signed,/* complain_on_overflow */ | |
862 | bfd_elf_generic_reloc, /* special_function */ | |
863 | "R_C6000_ABS_S16", /* name */ | |
41820509 JM |
864 | TRUE, /* partial_inplace */ |
865 | 0x007fff80, /* src_mask */ | |
40b36596 JM |
866 | 0x007fff80, /* dst_mask */ |
867 | FALSE), /* pcrel_offset */ | |
868 | HOWTO (R_C6000_ABS_L16, /* type */ | |
869 | 0, /* rightshift */ | |
870 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
871 | 16, /* bitsize */ | |
872 | FALSE, /* pc_relative */ | |
873 | 7, /* bitpos */ | |
874 | complain_overflow_dont,/* complain_on_overflow */ | |
875 | bfd_elf_generic_reloc, /* special_function */ | |
876 | "R_C6000_ABS_L16", /* name */ | |
41820509 JM |
877 | TRUE, /* partial_inplace */ |
878 | 0x007fff80, /* src_mask */ | |
40b36596 JM |
879 | 0x007fff80, /* dst_mask */ |
880 | FALSE), /* pcrel_offset */ | |
41820509 | 881 | EMPTY_HOWTO (R_C6000_ABS_H16), |
40b36596 JM |
882 | HOWTO (R_C6000_SBR_U15_B, /* type */ |
883 | 0, /* rightshift */ | |
884 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
885 | 15, /* bitsize */ | |
886 | FALSE, /* pc_relative */ | |
887 | 8, /* bitpos */ | |
888 | complain_overflow_unsigned,/* complain_on_overflow */ | |
889 | bfd_elf_generic_reloc, /* special_function */ | |
890 | "R_C6000_SBR_U15_B", /* name */ | |
41820509 JM |
891 | TRUE, /* partial_inplace */ |
892 | 0x007fff00, /* src_mask */ | |
40b36596 JM |
893 | 0x007fff00, /* dst_mask */ |
894 | FALSE), /* pcrel_offset */ | |
895 | HOWTO (R_C6000_SBR_U15_H, /* type */ | |
896 | 1, /* rightshift */ | |
897 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
898 | 15, /* bitsize */ | |
899 | FALSE, /* pc_relative */ | |
900 | 8, /* bitpos */ | |
901 | complain_overflow_unsigned,/* complain_on_overflow */ | |
902 | bfd_elf_generic_reloc, /* special_function */ | |
903 | "R_C6000_SBR_U15_H", /* name */ | |
41820509 JM |
904 | TRUE, /* partial_inplace */ |
905 | 0x007fff00, /* src_mask */ | |
40b36596 JM |
906 | 0x007fff00, /* dst_mask */ |
907 | FALSE), /* pcrel_offset */ | |
908 | HOWTO (R_C6000_SBR_U15_W, /* type */ | |
909 | 2, /* rightshift */ | |
910 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
911 | 15, /* bitsize */ | |
912 | FALSE, /* pc_relative */ | |
913 | 8, /* bitpos */ | |
914 | complain_overflow_unsigned,/* complain_on_overflow */ | |
915 | bfd_elf_generic_reloc, /* special_function */ | |
916 | "R_C6000_SBR_U15_W", /* name */ | |
41820509 JM |
917 | TRUE, /* partial_inplace */ |
918 | 0x007fff00, /* src_mask */ | |
40b36596 JM |
919 | 0x007fff00, /* dst_mask */ |
920 | FALSE), /* pcrel_offset */ | |
921 | HOWTO (R_C6000_SBR_S16, /* type */ | |
922 | 0, /* rightshift */ | |
923 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
924 | 16, /* bitsize */ | |
925 | FALSE, /* pc_relative */ | |
926 | 7, /* bitpos */ | |
927 | complain_overflow_signed,/* complain_on_overflow */ | |
928 | bfd_elf_generic_reloc, /* special_function */ | |
929 | "R_C6000_SBR_S16", /* name */ | |
41820509 JM |
930 | TRUE, /* partial_inplace */ |
931 | 0x007fff80, /* src_mask */ | |
40b36596 JM |
932 | 0x007fff80, /* dst_mask */ |
933 | FALSE), /* pcrel_offset */ | |
934 | HOWTO (R_C6000_SBR_L16_B, /* type */ | |
935 | 0, /* rightshift */ | |
936 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
937 | 16, /* bitsize */ | |
938 | FALSE, /* pc_relative */ | |
939 | 7, /* bitpos */ | |
940 | complain_overflow_dont,/* complain_on_overflow */ | |
941 | bfd_elf_generic_reloc, /* special_function */ | |
942 | "R_C6000_SBR_L16_B", /* name */ | |
41820509 JM |
943 | TRUE, /* partial_inplace */ |
944 | 0x007fff80, /* src_mask */ | |
40b36596 JM |
945 | 0x007fff80, /* dst_mask */ |
946 | FALSE), /* pcrel_offset */ | |
947 | HOWTO (R_C6000_SBR_L16_H, /* type */ | |
948 | 1, /* rightshift */ | |
949 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
950 | 16, /* bitsize */ | |
951 | FALSE, /* pc_relative */ | |
952 | 7, /* bitpos */ | |
953 | complain_overflow_dont,/* complain_on_overflow */ | |
954 | bfd_elf_generic_reloc, /* special_function */ | |
955 | "R_C6000_SBR_L16_H", /* name */ | |
41820509 JM |
956 | TRUE, /* partial_inplace */ |
957 | 0x007fff80, /* src_mask */ | |
40b36596 JM |
958 | 0x007fff80, /* dst_mask */ |
959 | FALSE), /* pcrel_offset */ | |
960 | HOWTO (R_C6000_SBR_L16_W, /* type */ | |
961 | 2, /* rightshift */ | |
962 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
963 | 16, /* bitsize */ | |
964 | FALSE, /* pc_relative */ | |
965 | 7, /* bitpos */ | |
966 | complain_overflow_dont,/* complain_on_overflow */ | |
967 | bfd_elf_generic_reloc, /* special_function */ | |
968 | "R_C6000_SBR_L16_W", /* name */ | |
41820509 JM |
969 | TRUE, /* partial_inplace */ |
970 | 0x007fff80, /* src_mask */ | |
40b36596 JM |
971 | 0x007fff80, /* dst_mask */ |
972 | FALSE), /* pcrel_offset */ | |
41820509 JM |
973 | EMPTY_HOWTO (R_C6000_SBR_H16_B), |
974 | EMPTY_HOWTO (R_C6000_SBR_H16_H), | |
975 | EMPTY_HOWTO (R_C6000_SBR_H16_W), | |
40b36596 JM |
976 | HOWTO (R_C6000_SBR_GOT_U15_W, /* type */ |
977 | 2, /* rightshift */ | |
978 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
979 | 15, /* bitsize */ | |
980 | FALSE, /* pc_relative */ | |
981 | 8, /* bitpos */ | |
982 | complain_overflow_unsigned,/* complain_on_overflow */ | |
983 | bfd_elf_generic_reloc, /* special_function */ | |
984 | "R_C6000_SBR_GOT_U15_W",/* name */ | |
41820509 JM |
985 | TRUE, /* partial_inplace */ |
986 | 0x007fff00, /* src_mask */ | |
40b36596 JM |
987 | 0x007fff00, /* dst_mask */ |
988 | FALSE), /* pcrel_offset */ | |
989 | HOWTO (R_C6000_SBR_GOT_L16_W, /* type */ | |
990 | 2, /* rightshift */ | |
991 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
992 | 16, /* bitsize */ | |
993 | FALSE, /* pc_relative */ | |
994 | 7, /* bitpos */ | |
995 | complain_overflow_dont,/* complain_on_overflow */ | |
996 | bfd_elf_generic_reloc, /* special_function */ | |
997 | "R_C6000_SBR_GOT_L16_W",/* name */ | |
41820509 JM |
998 | TRUE, /* partial_inplace */ |
999 | 0x007fff80, /* src_mask */ | |
40b36596 JM |
1000 | 0x007fff80, /* dst_mask */ |
1001 | FALSE), /* pcrel_offset */ | |
41820509 | 1002 | EMPTY_HOWTO (R_C6000_SBR_GOT_H16_W), |
40b36596 JM |
1003 | HOWTO (R_C6000_DSBT_INDEX, /* type */ |
1004 | 0, /* rightshift */ | |
1005 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
1006 | 15, /* bitsize */ | |
1007 | FALSE, /* pc_relative */ | |
1008 | 8, /* bitpos */ | |
1009 | complain_overflow_unsigned,/* complain_on_overflow */ | |
1010 | bfd_elf_generic_reloc, /* special_function */ | |
1011 | "R_C6000_DSBT_INDEX", /* name */ | |
41820509 | 1012 | TRUE, /* partial_inplace */ |
40b36596 JM |
1013 | 0, /* src_mask */ |
1014 | 0x007fff00, /* dst_mask */ | |
1015 | FALSE), /* pcrel_offset */ | |
1016 | HOWTO (R_C6000_PREL31, /* type */ | |
1017 | 1, /* rightshift */ | |
1018 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
1019 | 31, /* bitsize */ | |
44e87ece | 1020 | TRUE, /* pc_relative */ |
40b36596 JM |
1021 | 0, /* bitpos */ |
1022 | complain_overflow_dont,/* complain_on_overflow */ | |
1023 | bfd_elf_generic_reloc, /* special_function */ | |
1024 | "R_C6000_PREL31", /* name */ | |
41820509 | 1025 | TRUE, /* partial_inplace */ |
40b36596 JM |
1026 | 0, /* src_mask */ |
1027 | 0x7fffffff, /* dst_mask */ | |
44e87ece | 1028 | TRUE), /* pcrel_offset */ |
40b36596 JM |
1029 | HOWTO (R_C6000_COPY, /* type */ |
1030 | 0, /* rightshift */ | |
1031 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
1032 | 32, /* bitsize */ | |
1033 | FALSE, /* pc_relative */ | |
1034 | 0, /* bitpos */ | |
1035 | complain_overflow_dont,/* complain_on_overflow */ | |
1036 | bfd_elf_generic_reloc, /* special_function */ | |
1037 | "R_C6000_COPY", /* name */ | |
41820509 | 1038 | TRUE, /* partial_inplace */ |
40b36596 JM |
1039 | 0, /* src_mask */ |
1040 | 0xffffffff, /* dst_mask */ | |
1041 | FALSE), /* pcrel_offset */ | |
ac145307 BS |
1042 | HOWTO (R_C6000_JUMP_SLOT, /* type */ |
1043 | 0, /* rightshift */ | |
1044 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
1045 | 32, /* bitsize */ | |
1046 | FALSE, /* pc_relative */ | |
1047 | 0, /* bitpos */ | |
1048 | complain_overflow_dont,/* complain_on_overflow */ | |
1049 | bfd_elf_generic_reloc, /* special_function */ | |
1050 | "R_C6000_JUMP_SLOT", /* name */ | |
1051 | FALSE, /* partial_inplace */ | |
1052 | 0, /* src_mask */ | |
1053 | 0xffffffff, /* dst_mask */ | |
1054 | FALSE), /* pcrel_offset */ | |
2fbb87f6 PB |
1055 | HOWTO (R_C6000_EHTYPE, /* type */ |
1056 | 0, /* rightshift */ | |
1057 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
1058 | 32, /* bitsize */ | |
1059 | FALSE, /* pc_relative */ | |
1060 | 0, /* bitpos */ | |
1061 | complain_overflow_dont,/* complain_on_overflow */ | |
1062 | bfd_elf_generic_reloc, /* special_function */ | |
1063 | "R_C6000_EHTYPE", /* name */ | |
1064 | FALSE, /* partial_inplace */ | |
1065 | 0, /* src_mask */ | |
1066 | 0xffffffff, /* dst_mask */ | |
1067 | FALSE), /* pcrel_offset */ | |
40b36596 JM |
1068 | EMPTY_HOWTO (29), |
1069 | EMPTY_HOWTO (30), | |
1070 | EMPTY_HOWTO (31), | |
1071 | EMPTY_HOWTO (32), | |
1072 | EMPTY_HOWTO (33), | |
1073 | EMPTY_HOWTO (34), | |
1074 | EMPTY_HOWTO (35), | |
1075 | EMPTY_HOWTO (36), | |
1076 | EMPTY_HOWTO (37), | |
1077 | EMPTY_HOWTO (38), | |
1078 | EMPTY_HOWTO (39), | |
1079 | EMPTY_HOWTO (40), | |
1080 | EMPTY_HOWTO (41), | |
1081 | EMPTY_HOWTO (42), | |
1082 | EMPTY_HOWTO (43), | |
1083 | EMPTY_HOWTO (44), | |
1084 | EMPTY_HOWTO (45), | |
1085 | EMPTY_HOWTO (46), | |
1086 | EMPTY_HOWTO (47), | |
1087 | EMPTY_HOWTO (48), | |
1088 | EMPTY_HOWTO (49), | |
1089 | EMPTY_HOWTO (50), | |
1090 | EMPTY_HOWTO (51), | |
1091 | EMPTY_HOWTO (52), | |
1092 | EMPTY_HOWTO (53), | |
1093 | EMPTY_HOWTO (54), | |
1094 | EMPTY_HOWTO (55), | |
1095 | EMPTY_HOWTO (56), | |
1096 | EMPTY_HOWTO (57), | |
1097 | EMPTY_HOWTO (58), | |
1098 | EMPTY_HOWTO (59), | |
1099 | EMPTY_HOWTO (60), | |
1100 | EMPTY_HOWTO (61), | |
1101 | EMPTY_HOWTO (62), | |
1102 | EMPTY_HOWTO (63), | |
1103 | EMPTY_HOWTO (64), | |
1104 | EMPTY_HOWTO (65), | |
1105 | EMPTY_HOWTO (66), | |
1106 | EMPTY_HOWTO (67), | |
1107 | EMPTY_HOWTO (68), | |
1108 | EMPTY_HOWTO (69), | |
1109 | EMPTY_HOWTO (70), | |
1110 | EMPTY_HOWTO (71), | |
1111 | EMPTY_HOWTO (72), | |
1112 | EMPTY_HOWTO (73), | |
1113 | EMPTY_HOWTO (74), | |
1114 | EMPTY_HOWTO (75), | |
1115 | EMPTY_HOWTO (76), | |
1116 | EMPTY_HOWTO (77), | |
1117 | EMPTY_HOWTO (78), | |
1118 | EMPTY_HOWTO (79), | |
1119 | EMPTY_HOWTO (80), | |
1120 | EMPTY_HOWTO (81), | |
1121 | EMPTY_HOWTO (82), | |
1122 | EMPTY_HOWTO (83), | |
1123 | EMPTY_HOWTO (84), | |
1124 | EMPTY_HOWTO (85), | |
1125 | EMPTY_HOWTO (86), | |
1126 | EMPTY_HOWTO (87), | |
1127 | EMPTY_HOWTO (88), | |
1128 | EMPTY_HOWTO (89), | |
1129 | EMPTY_HOWTO (90), | |
1130 | EMPTY_HOWTO (91), | |
1131 | EMPTY_HOWTO (92), | |
1132 | EMPTY_HOWTO (93), | |
1133 | EMPTY_HOWTO (94), | |
1134 | EMPTY_HOWTO (95), | |
1135 | EMPTY_HOWTO (96), | |
1136 | EMPTY_HOWTO (97), | |
1137 | EMPTY_HOWTO (98), | |
1138 | EMPTY_HOWTO (99), | |
1139 | EMPTY_HOWTO (100), | |
1140 | EMPTY_HOWTO (101), | |
1141 | EMPTY_HOWTO (102), | |
1142 | EMPTY_HOWTO (103), | |
1143 | EMPTY_HOWTO (104), | |
1144 | EMPTY_HOWTO (105), | |
1145 | EMPTY_HOWTO (106), | |
1146 | EMPTY_HOWTO (107), | |
1147 | EMPTY_HOWTO (108), | |
1148 | EMPTY_HOWTO (109), | |
1149 | EMPTY_HOWTO (110), | |
1150 | EMPTY_HOWTO (111), | |
1151 | EMPTY_HOWTO (112), | |
1152 | EMPTY_HOWTO (113), | |
1153 | EMPTY_HOWTO (114), | |
1154 | EMPTY_HOWTO (115), | |
1155 | EMPTY_HOWTO (116), | |
1156 | EMPTY_HOWTO (117), | |
1157 | EMPTY_HOWTO (118), | |
1158 | EMPTY_HOWTO (119), | |
1159 | EMPTY_HOWTO (120), | |
1160 | EMPTY_HOWTO (121), | |
1161 | EMPTY_HOWTO (122), | |
1162 | EMPTY_HOWTO (123), | |
1163 | EMPTY_HOWTO (124), | |
1164 | EMPTY_HOWTO (125), | |
1165 | EMPTY_HOWTO (126), | |
1166 | EMPTY_HOWTO (127), | |
1167 | EMPTY_HOWTO (128), | |
1168 | EMPTY_HOWTO (129), | |
1169 | EMPTY_HOWTO (130), | |
1170 | EMPTY_HOWTO (131), | |
1171 | EMPTY_HOWTO (132), | |
1172 | EMPTY_HOWTO (133), | |
1173 | EMPTY_HOWTO (134), | |
1174 | EMPTY_HOWTO (135), | |
1175 | EMPTY_HOWTO (136), | |
1176 | EMPTY_HOWTO (137), | |
1177 | EMPTY_HOWTO (138), | |
1178 | EMPTY_HOWTO (139), | |
1179 | EMPTY_HOWTO (140), | |
1180 | EMPTY_HOWTO (141), | |
1181 | EMPTY_HOWTO (142), | |
1182 | EMPTY_HOWTO (143), | |
1183 | EMPTY_HOWTO (144), | |
1184 | EMPTY_HOWTO (145), | |
1185 | EMPTY_HOWTO (146), | |
1186 | EMPTY_HOWTO (147), | |
1187 | EMPTY_HOWTO (148), | |
1188 | EMPTY_HOWTO (149), | |
1189 | EMPTY_HOWTO (150), | |
1190 | EMPTY_HOWTO (151), | |
1191 | EMPTY_HOWTO (152), | |
1192 | EMPTY_HOWTO (153), | |
1193 | EMPTY_HOWTO (154), | |
1194 | EMPTY_HOWTO (155), | |
1195 | EMPTY_HOWTO (156), | |
1196 | EMPTY_HOWTO (157), | |
1197 | EMPTY_HOWTO (158), | |
1198 | EMPTY_HOWTO (159), | |
1199 | EMPTY_HOWTO (160), | |
1200 | EMPTY_HOWTO (161), | |
1201 | EMPTY_HOWTO (162), | |
1202 | EMPTY_HOWTO (163), | |
1203 | EMPTY_HOWTO (164), | |
1204 | EMPTY_HOWTO (165), | |
1205 | EMPTY_HOWTO (166), | |
1206 | EMPTY_HOWTO (167), | |
1207 | EMPTY_HOWTO (168), | |
1208 | EMPTY_HOWTO (169), | |
1209 | EMPTY_HOWTO (170), | |
1210 | EMPTY_HOWTO (171), | |
1211 | EMPTY_HOWTO (172), | |
1212 | EMPTY_HOWTO (173), | |
1213 | EMPTY_HOWTO (174), | |
1214 | EMPTY_HOWTO (175), | |
1215 | EMPTY_HOWTO (176), | |
1216 | EMPTY_HOWTO (177), | |
1217 | EMPTY_HOWTO (178), | |
1218 | EMPTY_HOWTO (179), | |
1219 | EMPTY_HOWTO (180), | |
1220 | EMPTY_HOWTO (181), | |
1221 | EMPTY_HOWTO (182), | |
1222 | EMPTY_HOWTO (183), | |
1223 | EMPTY_HOWTO (184), | |
1224 | EMPTY_HOWTO (185), | |
1225 | EMPTY_HOWTO (186), | |
1226 | EMPTY_HOWTO (187), | |
1227 | EMPTY_HOWTO (188), | |
1228 | EMPTY_HOWTO (189), | |
1229 | EMPTY_HOWTO (190), | |
1230 | EMPTY_HOWTO (191), | |
1231 | EMPTY_HOWTO (192), | |
1232 | EMPTY_HOWTO (193), | |
1233 | EMPTY_HOWTO (194), | |
1234 | EMPTY_HOWTO (195), | |
1235 | EMPTY_HOWTO (196), | |
1236 | EMPTY_HOWTO (197), | |
1237 | EMPTY_HOWTO (198), | |
1238 | EMPTY_HOWTO (199), | |
1239 | EMPTY_HOWTO (200), | |
1240 | EMPTY_HOWTO (201), | |
1241 | EMPTY_HOWTO (202), | |
1242 | EMPTY_HOWTO (203), | |
1243 | EMPTY_HOWTO (204), | |
1244 | EMPTY_HOWTO (205), | |
1245 | EMPTY_HOWTO (206), | |
1246 | EMPTY_HOWTO (207), | |
1247 | EMPTY_HOWTO (208), | |
1248 | EMPTY_HOWTO (209), | |
1249 | EMPTY_HOWTO (210), | |
1250 | EMPTY_HOWTO (211), | |
1251 | EMPTY_HOWTO (212), | |
1252 | EMPTY_HOWTO (213), | |
1253 | EMPTY_HOWTO (214), | |
1254 | EMPTY_HOWTO (215), | |
1255 | EMPTY_HOWTO (216), | |
1256 | EMPTY_HOWTO (217), | |
1257 | EMPTY_HOWTO (218), | |
1258 | EMPTY_HOWTO (219), | |
1259 | EMPTY_HOWTO (220), | |
1260 | EMPTY_HOWTO (221), | |
1261 | EMPTY_HOWTO (222), | |
1262 | EMPTY_HOWTO (223), | |
1263 | EMPTY_HOWTO (224), | |
1264 | EMPTY_HOWTO (225), | |
1265 | EMPTY_HOWTO (226), | |
1266 | EMPTY_HOWTO (227), | |
1267 | EMPTY_HOWTO (228), | |
1268 | EMPTY_HOWTO (229), | |
1269 | EMPTY_HOWTO (230), | |
1270 | EMPTY_HOWTO (231), | |
1271 | EMPTY_HOWTO (232), | |
1272 | EMPTY_HOWTO (233), | |
1273 | EMPTY_HOWTO (234), | |
1274 | EMPTY_HOWTO (235), | |
1275 | EMPTY_HOWTO (236), | |
1276 | EMPTY_HOWTO (237), | |
1277 | EMPTY_HOWTO (238), | |
1278 | EMPTY_HOWTO (239), | |
1279 | EMPTY_HOWTO (240), | |
1280 | EMPTY_HOWTO (241), | |
1281 | EMPTY_HOWTO (242), | |
1282 | EMPTY_HOWTO (243), | |
1283 | EMPTY_HOWTO (244), | |
1284 | EMPTY_HOWTO (245), | |
1285 | EMPTY_HOWTO (246), | |
1286 | EMPTY_HOWTO (247), | |
1287 | EMPTY_HOWTO (248), | |
1288 | EMPTY_HOWTO (249), | |
1289 | EMPTY_HOWTO (250), | |
1290 | EMPTY_HOWTO (251), | |
1291 | EMPTY_HOWTO (252), | |
1292 | HOWTO (R_C6000_ALIGN, /* type */ | |
1293 | 0, /* rightshift */ | |
1294 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
1295 | 0, /* bitsize */ | |
1296 | FALSE, /* pc_relative */ | |
1297 | 0, /* bitpos */ | |
1298 | complain_overflow_dont,/* complain_on_overflow */ | |
1299 | bfd_elf_generic_reloc, /* special_function */ | |
1300 | "R_C6000_ALIGN", /* name */ | |
41820509 | 1301 | TRUE, /* partial_inplace */ |
40b36596 JM |
1302 | 0, /* src_mask */ |
1303 | 0, /* dst_mask */ | |
1304 | FALSE), /* pcrel_offset */ | |
1305 | HOWTO (R_C6000_FPHEAD, /* type */ | |
1306 | 0, /* rightshift */ | |
1307 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
1308 | 0, /* bitsize */ | |
1309 | FALSE, /* pc_relative */ | |
1310 | 0, /* bitpos */ | |
1311 | complain_overflow_dont,/* complain_on_overflow */ | |
1312 | bfd_elf_generic_reloc, /* special_function */ | |
1313 | "R_C6000_FPHEAD", /* name */ | |
41820509 | 1314 | TRUE, /* partial_inplace */ |
40b36596 JM |
1315 | 0, /* src_mask */ |
1316 | 0, /* dst_mask */ | |
1317 | FALSE), /* pcrel_offset */ | |
1318 | HOWTO (R_C6000_NOCMP, /* type */ | |
1319 | 0, /* rightshift */ | |
1320 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
1321 | 0, /* bitsize */ | |
1322 | FALSE, /* pc_relative */ | |
1323 | 0, /* bitpos */ | |
1324 | complain_overflow_dont,/* complain_on_overflow */ | |
1325 | bfd_elf_generic_reloc, /* special_function */ | |
1326 | "R_C6000_NOCMP", /* name */ | |
41820509 | 1327 | TRUE, /* partial_inplace */ |
40b36596 JM |
1328 | 0, /* src_mask */ |
1329 | 0, /* dst_mask */ | |
1330 | FALSE) /* pcrel_offset */ | |
1331 | }; | |
1332 | ||
1333 | /* Map BFD relocations to ELF relocations. */ | |
1334 | ||
1335 | typedef struct | |
1336 | { | |
1337 | bfd_reloc_code_real_type bfd_reloc_val; | |
1338 | enum elf_tic6x_reloc_type elf_reloc_val; | |
1339 | } tic6x_reloc_map; | |
1340 | ||
1341 | static const tic6x_reloc_map elf32_tic6x_reloc_map[] = | |
1342 | { | |
1343 | { BFD_RELOC_NONE, R_C6000_NONE }, | |
1344 | { BFD_RELOC_32, R_C6000_ABS32 }, | |
1345 | { BFD_RELOC_16, R_C6000_ABS16 }, | |
1346 | { BFD_RELOC_8, R_C6000_ABS8 }, | |
1347 | { BFD_RELOC_C6000_PCR_S21, R_C6000_PCR_S21 }, | |
1348 | { BFD_RELOC_C6000_PCR_S12, R_C6000_PCR_S12 }, | |
1349 | { BFD_RELOC_C6000_PCR_S10, R_C6000_PCR_S10 }, | |
1350 | { BFD_RELOC_C6000_PCR_S7, R_C6000_PCR_S7 }, | |
1351 | { BFD_RELOC_C6000_ABS_S16, R_C6000_ABS_S16 }, | |
1352 | { BFD_RELOC_C6000_ABS_L16, R_C6000_ABS_L16 }, | |
1353 | { BFD_RELOC_C6000_ABS_H16, R_C6000_ABS_H16 }, | |
1354 | { BFD_RELOC_C6000_SBR_U15_B, R_C6000_SBR_U15_B }, | |
1355 | { BFD_RELOC_C6000_SBR_U15_H, R_C6000_SBR_U15_H }, | |
1356 | { BFD_RELOC_C6000_SBR_U15_W, R_C6000_SBR_U15_W }, | |
1357 | { BFD_RELOC_C6000_SBR_S16, R_C6000_SBR_S16 }, | |
1358 | { BFD_RELOC_C6000_SBR_L16_B, R_C6000_SBR_L16_B }, | |
1359 | { BFD_RELOC_C6000_SBR_L16_H, R_C6000_SBR_L16_H }, | |
1360 | { BFD_RELOC_C6000_SBR_L16_W, R_C6000_SBR_L16_W }, | |
1361 | { BFD_RELOC_C6000_SBR_H16_B, R_C6000_SBR_H16_B }, | |
1362 | { BFD_RELOC_C6000_SBR_H16_H, R_C6000_SBR_H16_H }, | |
1363 | { BFD_RELOC_C6000_SBR_H16_W, R_C6000_SBR_H16_W }, | |
1364 | { BFD_RELOC_C6000_SBR_GOT_U15_W, R_C6000_SBR_GOT_U15_W }, | |
1365 | { BFD_RELOC_C6000_SBR_GOT_L16_W, R_C6000_SBR_GOT_L16_W }, | |
1366 | { BFD_RELOC_C6000_SBR_GOT_H16_W, R_C6000_SBR_GOT_H16_W }, | |
1367 | { BFD_RELOC_C6000_DSBT_INDEX, R_C6000_DSBT_INDEX }, | |
1368 | { BFD_RELOC_C6000_PREL31, R_C6000_PREL31 }, | |
1369 | { BFD_RELOC_C6000_COPY, R_C6000_COPY }, | |
ac145307 BS |
1370 | { BFD_RELOC_C6000_JUMP_SLOT, R_C6000_JUMP_SLOT }, |
1371 | { BFD_RELOC_C6000_EHTYPE, R_C6000_EHTYPE }, | |
1372 | { BFD_RELOC_C6000_PCR_H16, R_C6000_PCR_H16 }, | |
1373 | { BFD_RELOC_C6000_PCR_L16, R_C6000_PCR_L16 }, | |
40b36596 JM |
1374 | { BFD_RELOC_C6000_ALIGN, R_C6000_ALIGN }, |
1375 | { BFD_RELOC_C6000_FPHEAD, R_C6000_FPHEAD }, | |
1376 | { BFD_RELOC_C6000_NOCMP, R_C6000_NOCMP } | |
1377 | }; | |
1378 | ||
1379 | static reloc_howto_type * | |
41820509 | 1380 | elf32_tic6x_reloc_type_lookup (bfd *abfd, bfd_reloc_code_real_type code) |
40b36596 JM |
1381 | { |
1382 | unsigned int i; | |
1383 | ||
1384 | for (i = 0; i < ARRAY_SIZE (elf32_tic6x_reloc_map); i++) | |
1385 | if (elf32_tic6x_reloc_map[i].bfd_reloc_val == code) | |
41820509 JM |
1386 | { |
1387 | enum elf_tic6x_reloc_type elf_reloc_val; | |
1388 | reloc_howto_type *howto; | |
1389 | ||
1390 | elf_reloc_val = elf32_tic6x_reloc_map[i].elf_reloc_val; | |
1391 | if (elf32_tic6x_tdata (abfd)->use_rela_p) | |
1392 | howto = &elf32_tic6x_howto_table[elf_reloc_val]; | |
1393 | else | |
1394 | howto = &elf32_tic6x_howto_table_rel[elf_reloc_val]; | |
1395 | ||
1396 | /* Some relocations are RELA-only; do not return them for | |
1397 | REL. */ | |
1398 | if (howto->name == NULL) | |
1399 | howto = NULL; | |
1400 | ||
1401 | return howto; | |
1402 | } | |
40b36596 JM |
1403 | |
1404 | return NULL; | |
1405 | } | |
1406 | ||
1407 | static reloc_howto_type * | |
41820509 | 1408 | elf32_tic6x_reloc_name_lookup (bfd *abfd, const char *r_name) |
40b36596 | 1409 | { |
41820509 JM |
1410 | if (elf32_tic6x_tdata (abfd)->use_rela_p) |
1411 | { | |
1412 | unsigned int i; | |
1413 | ||
1414 | for (i = 0; i < ARRAY_SIZE (elf32_tic6x_howto_table); i++) | |
1415 | if (elf32_tic6x_howto_table[i].name != NULL | |
1416 | && strcasecmp (elf32_tic6x_howto_table[i].name, r_name) == 0) | |
1417 | return &elf32_tic6x_howto_table[i]; | |
1418 | } | |
1419 | else | |
1420 | { | |
1421 | unsigned int i; | |
40b36596 | 1422 | |
41820509 JM |
1423 | for (i = 0; i < ARRAY_SIZE (elf32_tic6x_howto_table_rel); i++) |
1424 | if (elf32_tic6x_howto_table_rel[i].name != NULL | |
1425 | && strcasecmp (elf32_tic6x_howto_table_rel[i].name, r_name) == 0) | |
1426 | return &elf32_tic6x_howto_table_rel[i]; | |
1427 | } | |
40b36596 JM |
1428 | |
1429 | return NULL; | |
1430 | } | |
1431 | ||
1432 | static void | |
1433 | elf32_tic6x_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *bfd_reloc, | |
1434 | Elf_Internal_Rela *elf_reloc) | |
1435 | { | |
1436 | unsigned int r_type; | |
1437 | ||
1438 | r_type = ELF32_R_TYPE (elf_reloc->r_info); | |
1439 | if (r_type >= ARRAY_SIZE (elf32_tic6x_howto_table)) | |
1440 | bfd_reloc->howto = NULL; | |
1441 | else | |
1442 | bfd_reloc->howto = &elf32_tic6x_howto_table[r_type]; | |
1443 | } | |
1444 | ||
41820509 JM |
1445 | static void |
1446 | elf32_tic6x_info_to_howto_rel (bfd *abfd ATTRIBUTE_UNUSED, arelent *bfd_reloc, | |
1447 | Elf_Internal_Rela *elf_reloc) | |
1448 | { | |
1449 | unsigned int r_type; | |
1450 | ||
1451 | r_type = ELF32_R_TYPE (elf_reloc->r_info); | |
1452 | if (r_type >= ARRAY_SIZE (elf32_tic6x_howto_table_rel)) | |
1453 | bfd_reloc->howto = NULL; | |
1454 | else | |
1455 | bfd_reloc->howto = &elf32_tic6x_howto_table_rel[r_type]; | |
1456 | } | |
1457 | ||
1458 | void | |
1459 | elf32_tic6x_set_use_rela_p (bfd *abfd, bfd_boolean use_rela_p) | |
1460 | { | |
1461 | elf32_tic6x_tdata (abfd)->use_rela_p = use_rela_p; | |
1462 | } | |
1463 | ||
ac145307 BS |
1464 | /* Create an entry in a C6X ELF linker hash table. */ |
1465 | ||
1466 | static struct bfd_hash_entry * | |
1467 | elf32_tic6x_link_hash_newfunc (struct bfd_hash_entry *entry, | |
1468 | struct bfd_hash_table *table, | |
1469 | const char *string) | |
1470 | { | |
1471 | /* Allocate the structure if it has not already been allocated by a | |
1472 | subclass. */ | |
1473 | if (entry == NULL) | |
1474 | { | |
1475 | entry = bfd_hash_allocate (table, | |
1476 | sizeof (struct elf32_tic6x_link_hash_entry)); | |
1477 | if (entry == NULL) | |
1478 | return entry; | |
1479 | } | |
1480 | ||
1481 | /* Call the allocation method of the superclass. */ | |
1482 | entry = _bfd_elf_link_hash_newfunc (entry, table, string); | |
1483 | if (entry != NULL) | |
1484 | { | |
1485 | struct elf32_tic6x_link_hash_entry *eh; | |
1486 | ||
1487 | eh = (struct elf32_tic6x_link_hash_entry *) entry; | |
1488 | eh->dyn_relocs = NULL; | |
1489 | } | |
1490 | ||
1491 | return entry; | |
1492 | } | |
1493 | ||
1494 | /* Create a C6X ELF linker hash table. */ | |
1495 | ||
1496 | static struct bfd_link_hash_table * | |
1497 | elf32_tic6x_link_hash_table_create (bfd *abfd) | |
1498 | { | |
1499 | struct elf32_tic6x_link_hash_table *ret; | |
1500 | bfd_size_type amt = sizeof (struct elf32_tic6x_link_hash_table); | |
1501 | ||
1502 | ret = bfd_malloc (amt); | |
1503 | if (ret == NULL) | |
1504 | return NULL; | |
1505 | ||
1506 | if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd, | |
1507 | elf32_tic6x_link_hash_newfunc, | |
1508 | sizeof (struct elf32_tic6x_link_hash_entry), | |
1509 | TIC6X_ELF_DATA)) | |
1510 | { | |
1511 | free (ret); | |
1512 | return NULL; | |
1513 | } | |
1514 | ||
1515 | ret->sym_cache.abfd = NULL; | |
1516 | ret->obfd = abfd; | |
1517 | ret->elf.is_relocatable_executable = 1; | |
1518 | ||
1519 | return &ret->elf.root; | |
1520 | } | |
1521 | ||
c6a8f6e0 BS |
1522 | static bfd_boolean |
1523 | elf32_tic6x_final_link (bfd *abfd, struct bfd_link_info *info) | |
1524 | { | |
1525 | if (info->shared) | |
1526 | { | |
1527 | obj_attribute *out_attr; | |
1528 | out_attr = elf_known_obj_attributes_proc (abfd); | |
1529 | if (out_attr[Tag_ABI_PIC].i == 0) | |
1530 | { | |
1531 | _bfd_error_handler (_("warning: generating a shared library " | |
1532 | "containing non-PIC code")); | |
1533 | } | |
1534 | if (out_attr[Tag_ABI_PID].i == 0) | |
1535 | { | |
1536 | _bfd_error_handler (_("warning: generating a shared library " | |
1537 | "containing non-PID code")); | |
1538 | } | |
1539 | } | |
1540 | /* Invoke the regular ELF backend linker to do all the work. */ | |
1541 | if (!bfd_elf_final_link (abfd, info)) | |
1542 | return FALSE; | |
1543 | ||
1544 | return TRUE; | |
1545 | } | |
1546 | ||
ac145307 BS |
1547 | /* Destroy a C6X ELF linker hash table. */ |
1548 | ||
1549 | static void | |
1550 | elf32_tic6x_link_hash_table_free (struct bfd_link_hash_table *hash) | |
1551 | { | |
1552 | _bfd_generic_link_hash_table_free (hash); | |
1553 | } | |
1554 | ||
1555 | /* Called to pass PARAMS to the backend. We store them in the hash table | |
1556 | associated with INFO. */ | |
1557 | ||
1558 | void | |
1559 | elf32_tic6x_setup (struct bfd_link_info *info, | |
1560 | struct elf32_tic6x_params *params) | |
1561 | { | |
1562 | struct elf32_tic6x_link_hash_table *htab = elf32_tic6x_hash_table (info); | |
1563 | htab->params = *params; | |
1564 | } | |
1565 | ||
1566 | /* Determine if we're dealing with a DSBT object. */ | |
1567 | ||
1568 | static bfd_boolean | |
1569 | elf32_tic6x_using_dsbt (bfd *abfd) | |
1570 | { | |
1571 | return bfd_elf_get_obj_attr_int (abfd, OBJ_ATTR_PROC, | |
1572 | Tag_ABI_DSBT); | |
1573 | } | |
1574 | ||
1575 | /* Create .plt, .rela.plt, .got, .got.plt, .rela.got and .dsbt | |
1576 | sections in DYNOBJ, and set up shortcuts to them in our hash | |
1577 | table. */ | |
1578 | ||
1579 | static bfd_boolean | |
1580 | elf32_tic6x_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info) | |
1581 | { | |
1582 | struct elf32_tic6x_link_hash_table *htab; | |
1583 | flagword flags; | |
1584 | ||
1585 | htab = elf32_tic6x_hash_table (info); | |
1586 | if (htab == NULL) | |
1587 | return FALSE; | |
1588 | ||
1589 | if (!_bfd_elf_create_dynamic_sections (dynobj, info)) | |
1590 | return FALSE; | |
1591 | ||
1592 | /* Create .dsbt */ | |
1593 | flags = (SEC_ALLOC | SEC_LOAD | |
1594 | | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED); | |
1595 | htab->dsbt = bfd_make_section_anyway_with_flags (dynobj, ".dsbt", | |
1596 | flags); | |
1597 | if (htab->dsbt == NULL | |
1598 | || ! bfd_set_section_alignment (dynobj, htab->dsbt, 2) | |
1599 | || ! bfd_set_section_alignment (dynobj, htab->elf.splt, 5)) | |
1600 | return FALSE; | |
1601 | ||
1602 | htab->sdynbss = bfd_get_section_by_name (dynobj, ".dynbss"); | |
1603 | if (!info->shared) | |
1604 | htab->srelbss = bfd_get_section_by_name (dynobj, ".rela.bss"); | |
1605 | ||
1606 | if (!htab->sdynbss | |
1607 | || (!info->shared && !htab->srelbss)) | |
1608 | abort (); | |
1609 | ||
1610 | return TRUE; | |
1611 | } | |
1612 | ||
41820509 JM |
1613 | static bfd_boolean |
1614 | elf32_tic6x_mkobject (bfd *abfd) | |
1615 | { | |
1616 | bfd_boolean ret; | |
1617 | ||
1618 | ret = bfd_elf_allocate_object (abfd, sizeof (struct elf32_tic6x_obj_tdata), | |
1619 | TIC6X_ELF_DATA); | |
1620 | if (ret) | |
1621 | elf32_tic6x_set_use_rela_p (abfd, TRUE); | |
1622 | return ret; | |
1623 | } | |
1624 | ||
ac145307 BS |
1625 | /* Install relocation RELA into section SRELA, incrementing its |
1626 | reloc_count. */ | |
1627 | ||
1628 | static void | |
1629 | elf32_tic6x_install_rela (bfd *output_bfd, asection *srela, | |
1630 | Elf_Internal_Rela *rela) | |
1631 | { | |
1632 | bfd_byte *loc; | |
1633 | bfd_vma off = srela->reloc_count++ * sizeof (Elf32_External_Rela); | |
1634 | loc = srela->contents + off; | |
1635 | BFD_ASSERT (off < srela->size); | |
1636 | bfd_elf32_swap_reloca_out (output_bfd, rela, loc); | |
1637 | } | |
1638 | ||
1639 | /* Create a dynamic reloc against the GOT at offset OFFSET. The contents | |
1640 | of the GOT at this offset have been initialized with the relocation. */ | |
1641 | ||
1642 | static void | |
1643 | elf32_tic6x_make_got_dynreloc (bfd *output_bfd, | |
1644 | struct elf32_tic6x_link_hash_table *htab, | |
1645 | asection *sym_sec, bfd_vma offset) | |
1646 | { | |
1647 | asection *sgot = htab->elf.sgot; | |
1648 | Elf_Internal_Rela outrel; | |
1649 | int dynindx; | |
1650 | ||
1651 | outrel.r_offset = sgot->output_section->vma + sgot->output_offset + offset; | |
1652 | outrel.r_addend = bfd_get_32 (output_bfd, sgot->contents + offset); | |
1653 | if (sym_sec && sym_sec->output_section | |
1654 | && ! bfd_is_abs_section (sym_sec->output_section) | |
1655 | && ! bfd_is_und_section (sym_sec->output_section)) | |
1656 | { | |
1657 | dynindx = elf_section_data (sym_sec->output_section)->dynindx; | |
1658 | outrel.r_addend -= sym_sec->output_section->vma; | |
1659 | } | |
1660 | else | |
1661 | { | |
1662 | dynindx = 0; | |
1663 | } | |
1664 | outrel.r_info = ELF32_R_INFO (dynindx, R_C6000_ABS32); | |
1665 | elf32_tic6x_install_rela (output_bfd, htab->elf.srelgot, &outrel); | |
1666 | } | |
1667 | ||
1668 | /* Finish up dynamic symbol handling. We set the contents of various | |
1669 | dynamic sections here. */ | |
1670 | ||
1671 | static bfd_boolean | |
1672 | elf32_tic6x_finish_dynamic_symbol (bfd * output_bfd, | |
1673 | struct bfd_link_info *info, | |
1674 | struct elf_link_hash_entry *h, | |
1675 | Elf_Internal_Sym * sym) | |
1676 | { | |
1677 | bfd *dynobj; | |
1678 | struct elf32_tic6x_link_hash_table *htab; | |
1679 | ||
1680 | htab = elf32_tic6x_hash_table (info); | |
1681 | dynobj = htab->elf.dynobj; | |
1682 | ||
1683 | if (h->plt.offset != (bfd_vma) -1) | |
1684 | { | |
1685 | bfd_vma plt_index; | |
1686 | bfd_vma got_section_offset, got_dp_offset, rela_offset; | |
1687 | Elf_Internal_Rela rela; | |
1688 | bfd_byte *loc; | |
1689 | asection *plt, *gotplt, *relplt; | |
1690 | const struct elf_backend_data *bed; | |
1691 | ||
1692 | bed = get_elf_backend_data (output_bfd); | |
1693 | ||
1694 | BFD_ASSERT (htab->elf.splt != NULL); | |
1695 | plt = htab->elf.splt; | |
1696 | gotplt = htab->elf.sgotplt; | |
1697 | relplt = htab->elf.srelplt; | |
1698 | ||
1699 | /* This symbol has an entry in the procedure linkage table. Set | |
1700 | it up. */ | |
1701 | ||
1702 | if ((h->dynindx == -1 | |
1703 | && !((h->forced_local || info->executable) | |
1704 | && h->def_regular | |
1705 | && h->type == STT_GNU_IFUNC)) | |
1706 | || plt == NULL | |
1707 | || gotplt == NULL | |
1708 | || relplt == NULL) | |
1709 | abort (); | |
1710 | ||
1711 | /* Get the index in the procedure linkage table which | |
1712 | corresponds to this symbol. This is the index of this symbol | |
1713 | in all the symbols for which we are making plt entries. The | |
1714 | first entry in the procedure linkage table is reserved. | |
1715 | ||
1716 | Get the offset into the .got table of the entry that | |
1717 | corresponds to this function. Each .got entry is 4 bytes. | |
1718 | The first three are reserved. | |
1719 | ||
1720 | For static executables, we don't reserve anything. */ | |
1721 | ||
1722 | plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1; | |
1723 | got_section_offset = plt_index + bed->got_header_size / 4; | |
1724 | got_dp_offset = got_section_offset + htab->params.dsbt_size; | |
1725 | rela_offset = plt_index * sizeof (Elf32_External_Rela); | |
1726 | ||
1727 | got_section_offset *= 4; | |
1728 | ||
1729 | /* Fill in the entry in the procedure linkage table. */ | |
1730 | ||
1731 | /* ldw .d2t2 *+B14($GOT(f)), b2 */ | |
1732 | bfd_put_32 (output_bfd, got_dp_offset << 8 | 0x0100006e, | |
1733 | plt->contents + h->plt.offset); | |
1734 | /* mvk .s2 low(rela_offset), b0 */ | |
1735 | bfd_put_32 (output_bfd, (rela_offset & 0xffff) << 7 | 0x0000002a, | |
1736 | plt->contents + h->plt.offset + 4); | |
1737 | /* mvkh .s2 high(rela_offset), b0 */ | |
1738 | bfd_put_32 (output_bfd, ((rela_offset >> 16) & 0xffff) << 7 | 0x0000006a, | |
1739 | plt->contents + h->plt.offset + 8); | |
1740 | /* nop 2 */ | |
1741 | bfd_put_32 (output_bfd, 0x00002000, | |
1742 | plt->contents + h->plt.offset + 12); | |
1743 | /* b .s2 b2 */ | |
1744 | bfd_put_32 (output_bfd, 0x00080362, | |
1745 | plt->contents + h->plt.offset + 16); | |
1746 | /* nop 5 */ | |
1747 | bfd_put_32 (output_bfd, 0x00008000, | |
1748 | plt->contents + h->plt.offset + 20); | |
1749 | ||
1750 | /* Fill in the entry in the global offset table. */ | |
1751 | bfd_put_32 (output_bfd, | |
1752 | (plt->output_section->vma + plt->output_offset), | |
1753 | gotplt->contents + got_section_offset); | |
1754 | ||
1755 | /* Fill in the entry in the .rel.plt section. */ | |
1756 | rela.r_offset = (gotplt->output_section->vma | |
1757 | + gotplt->output_offset | |
1758 | + got_section_offset); | |
1759 | rela.r_info = ELF32_R_INFO (h->dynindx, R_C6000_JUMP_SLOT); | |
1760 | rela.r_addend = 0; | |
1761 | loc = relplt->contents + rela_offset; | |
1762 | bfd_elf32_swap_reloca_out (output_bfd, &rela, loc); | |
1763 | ||
1764 | if (!h->def_regular) | |
1765 | { | |
1766 | /* Mark the symbol as undefined, rather than as defined in | |
1767 | the .plt section. */ | |
1768 | sym->st_shndx = SHN_UNDEF; | |
1769 | sym->st_value = 0; | |
1770 | } | |
1771 | } | |
1772 | ||
1773 | if (h->got.offset != (bfd_vma) -1) | |
1774 | { | |
1775 | asection *sgot; | |
1776 | asection *srela; | |
1777 | ||
1778 | /* This symbol has an entry in the global offset table. | |
1779 | Set it up. */ | |
1780 | ||
1781 | sgot = bfd_get_section_by_name (dynobj, ".got"); | |
1782 | srela = bfd_get_section_by_name (dynobj, ".rela.got"); | |
1783 | BFD_ASSERT (sgot != NULL && srela != NULL); | |
1784 | ||
1785 | /* If this is a -Bsymbolic link, and the symbol is defined | |
1786 | locally, we just want to emit a RELATIVE reloc. Likewise if | |
1787 | the symbol was forced to be local because of a version file. | |
1788 | The entry in the global offset table will already have been | |
1789 | initialized in the relocate_section function. */ | |
1790 | if (info->shared | |
1791 | && (info->symbolic | |
1792 | || h->dynindx == -1 || h->forced_local) && h->def_regular) | |
1793 | { | |
1794 | asection *s = h->root.u.def.section; | |
1795 | elf32_tic6x_make_got_dynreloc (output_bfd, htab, s, | |
1796 | h->got.offset & ~(bfd_vma) 1); | |
1797 | } | |
1798 | else | |
1799 | { | |
1800 | Elf_Internal_Rela outrel; | |
1801 | bfd_put_32 (output_bfd, (bfd_vma) 0, | |
1802 | sgot->contents + (h->got.offset & ~(bfd_vma) 1)); | |
1803 | outrel.r_offset = (sgot->output_section->vma | |
1804 | + sgot->output_offset | |
1805 | + (h->got.offset & ~(bfd_vma) 1)); | |
1806 | outrel.r_info = ELF32_R_INFO (h->dynindx, R_C6000_ABS32); | |
1807 | outrel.r_addend = 0; | |
1808 | ||
1809 | elf32_tic6x_install_rela (output_bfd, srela, &outrel); | |
1810 | } | |
1811 | } | |
1812 | ||
1813 | if (h->needs_copy) | |
1814 | { | |
1815 | Elf_Internal_Rela rel; | |
1816 | ||
1817 | /* This symbol needs a copy reloc. Set it up. */ | |
1818 | ||
1819 | if (h->dynindx == -1 | |
1820 | || (h->root.type != bfd_link_hash_defined | |
1821 | && h->root.type != bfd_link_hash_defweak) | |
1822 | || htab->srelbss == NULL) | |
1823 | abort (); | |
1824 | ||
1825 | rel.r_offset = (h->root.u.def.value | |
1826 | + h->root.u.def.section->output_section->vma | |
1827 | + h->root.u.def.section->output_offset); | |
1828 | rel.r_info = ELF32_R_INFO (h->dynindx, R_C6000_COPY); | |
1829 | rel.r_addend = 0; | |
1830 | ||
1831 | elf32_tic6x_install_rela (output_bfd, htab->srelbss, &rel); | |
1832 | } | |
1833 | ||
1834 | /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */ | |
1835 | if (strcmp (h->root.root.string, "_DYNAMIC") == 0 | |
1836 | || h == elf_hash_table (info)->hgot) | |
1837 | sym->st_shndx = SHN_ABS; | |
1838 | ||
1839 | return TRUE; | |
1840 | } | |
1841 | ||
9cf0e282 PB |
1842 | /* Unwinding tables are not referenced directly. This pass marks them as |
1843 | required if the corresponding code section is marked. */ | |
1844 | ||
1845 | static bfd_boolean | |
1846 | elf32_tic6x_gc_mark_extra_sections (struct bfd_link_info *info, | |
1847 | elf_gc_mark_hook_fn gc_mark_hook) | |
1848 | { | |
1849 | bfd *sub; | |
1850 | Elf_Internal_Shdr **elf_shdrp; | |
1851 | bfd_boolean again; | |
1852 | ||
1853 | /* Marking EH data may cause additional code sections to be marked, | |
1854 | requiring multiple passes. */ | |
1855 | again = TRUE; | |
1856 | while (again) | |
1857 | { | |
1858 | again = FALSE; | |
1859 | for (sub = info->input_bfds; sub != NULL; sub = sub->link_next) | |
1860 | { | |
1861 | asection *o; | |
1862 | ||
1863 | if (! is_tic6x_elf (sub)) | |
1864 | continue; | |
1865 | ||
1866 | elf_shdrp = elf_elfsections (sub); | |
1867 | for (o = sub->sections; o != NULL; o = o->next) | |
1868 | { | |
1869 | Elf_Internal_Shdr *hdr; | |
1870 | ||
1871 | hdr = &elf_section_data (o)->this_hdr; | |
1872 | if (hdr->sh_type == SHT_C6000_UNWIND | |
1873 | && hdr->sh_link | |
1874 | && hdr->sh_link < elf_numsections (sub) | |
1875 | && !o->gc_mark | |
1876 | && elf_shdrp[hdr->sh_link]->bfd_section->gc_mark) | |
1877 | { | |
1878 | again = TRUE; | |
1879 | if (!_bfd_elf_gc_mark (info, o, gc_mark_hook)) | |
1880 | return FALSE; | |
1881 | } | |
1882 | } | |
1883 | } | |
1884 | } | |
1885 | ||
1886 | return TRUE; | |
1887 | } | |
1888 | ||
1bce6bd8 PB |
1889 | /* Return TRUE if this is an unwinding table index. */ |
1890 | ||
1891 | static bfd_boolean | |
1892 | is_tic6x_elf_unwind_section_name (const char *name) | |
1893 | { | |
1894 | return (CONST_STRNEQ (name, ELF_STRING_C6000_unwind) | |
1895 | || CONST_STRNEQ (name, ELF_STRING_C6000_unwind_once)); | |
1896 | } | |
1897 | ||
1898 | ||
1899 | /* Set the type and flags for an unwinding index table. We do this by | |
1900 | the section name, which is a hack, but ought to work. */ | |
1901 | ||
1902 | static bfd_boolean | |
1903 | elf32_tic6x_fake_sections (bfd *abfd ATTRIBUTE_UNUSED, | |
1904 | Elf_Internal_Shdr *hdr, asection *sec) | |
1905 | { | |
1906 | const char * name; | |
1907 | ||
1908 | name = bfd_get_section_name (abfd, sec); | |
1909 | ||
1910 | if (is_tic6x_elf_unwind_section_name (name)) | |
1911 | { | |
1912 | hdr->sh_type = SHT_C6000_UNWIND; | |
1913 | hdr->sh_flags |= SHF_LINK_ORDER; | |
1914 | } | |
1915 | ||
1916 | return TRUE; | |
1917 | } | |
1918 | ||
ac145307 BS |
1919 | /* Update the got entry reference counts for the section being removed. */ |
1920 | ||
1921 | static bfd_boolean | |
1922 | elf32_tic6x_gc_sweep_hook (bfd *abfd, | |
1923 | struct bfd_link_info *info, | |
1924 | asection *sec, | |
1925 | const Elf_Internal_Rela *relocs) | |
1926 | { | |
1927 | struct elf32_tic6x_link_hash_table *htab; | |
1928 | Elf_Internal_Shdr *symtab_hdr; | |
1929 | struct elf_link_hash_entry **sym_hashes; | |
1930 | bfd_signed_vma *local_got_refcounts; | |
1931 | const Elf_Internal_Rela *rel, *relend; | |
1932 | ||
1933 | if (info->relocatable) | |
1934 | return TRUE; | |
1935 | ||
1936 | htab = elf32_tic6x_hash_table (info); | |
1937 | if (htab == NULL) | |
1938 | return FALSE; | |
1939 | ||
1940 | elf_section_data (sec)->local_dynrel = NULL; | |
1941 | ||
1942 | symtab_hdr = &elf_symtab_hdr (abfd); | |
1943 | sym_hashes = elf_sym_hashes (abfd); | |
1944 | local_got_refcounts = elf_local_got_refcounts (abfd); | |
1945 | ||
1946 | relend = relocs + sec->reloc_count; | |
1947 | for (rel = relocs; rel < relend; rel++) | |
1948 | { | |
1949 | unsigned long r_symndx; | |
1950 | unsigned int r_type; | |
1951 | struct elf_link_hash_entry *h = NULL; | |
1952 | ||
1953 | r_symndx = ELF32_R_SYM (rel->r_info); | |
1954 | if (r_symndx >= symtab_hdr->sh_info) | |
1955 | { | |
1956 | struct elf32_tic6x_link_hash_entry *eh; | |
1957 | struct elf_dyn_relocs **pp; | |
1958 | struct elf_dyn_relocs *p; | |
1959 | ||
1960 | h = sym_hashes[r_symndx - symtab_hdr->sh_info]; | |
1961 | while (h->root.type == bfd_link_hash_indirect | |
1962 | || h->root.type == bfd_link_hash_warning) | |
1963 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
1964 | eh = (struct elf32_tic6x_link_hash_entry *) h; | |
1965 | ||
1966 | for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next) | |
1967 | if (p->sec == sec) | |
1968 | { | |
1969 | /* Everything must go for SEC. */ | |
1970 | *pp = p->next; | |
1971 | break; | |
1972 | } | |
1973 | } | |
1974 | ||
1975 | r_type = ELF32_R_TYPE (rel->r_info); | |
1976 | ||
1977 | switch (r_type) | |
1978 | { | |
1979 | case R_C6000_SBR_GOT_U15_W: | |
1980 | case R_C6000_SBR_GOT_L16_W: | |
1981 | case R_C6000_SBR_GOT_H16_W: | |
2fbb87f6 | 1982 | case R_C6000_EHTYPE: |
ac145307 BS |
1983 | if (h != NULL) |
1984 | { | |
1985 | if (h->got.refcount > 0) | |
1986 | h->got.refcount -= 1; | |
1987 | } | |
1988 | else if (local_got_refcounts != NULL) | |
1989 | { | |
1990 | if (local_got_refcounts[r_symndx] > 0) | |
1991 | local_got_refcounts[r_symndx] -= 1; | |
1992 | } | |
1993 | break; | |
1994 | ||
1995 | default: | |
1996 | break; | |
1997 | } | |
1998 | } | |
1999 | ||
2000 | return TRUE; | |
2001 | } | |
2002 | ||
2003 | /* Adjust a symbol defined by a dynamic object and referenced by a | |
2004 | regular object. The current definition is in some section of the | |
2005 | dynamic object, but we're not including those sections. We have to | |
2006 | change the definition to something the rest of the link can | |
2007 | understand. */ | |
2008 | ||
2009 | static bfd_boolean | |
2010 | elf32_tic6x_adjust_dynamic_symbol (struct bfd_link_info *info, | |
2011 | struct elf_link_hash_entry *h) | |
2012 | { | |
2013 | struct elf32_tic6x_link_hash_table *htab; | |
2014 | bfd *dynobj; | |
2015 | asection *s; | |
2016 | ||
2017 | dynobj = elf_hash_table (info)->dynobj; | |
2018 | ||
2019 | /* Make sure we know what is going on here. */ | |
2020 | BFD_ASSERT (dynobj != NULL | |
2021 | && (h->needs_plt | |
2022 | || h->u.weakdef != NULL | |
2023 | || (h->def_dynamic && h->ref_regular && !h->def_regular))); | |
2024 | ||
2025 | /* If this is a function, put it in the procedure linkage table. We | |
2026 | will fill in the contents of the procedure linkage table later, | |
2027 | when we know the address of the .got section. */ | |
2028 | if (h->type == STT_FUNC | |
2029 | || h->needs_plt) | |
2030 | { | |
2031 | if (h->plt.refcount <= 0 | |
2032 | || SYMBOL_CALLS_LOCAL (info, h) | |
2033 | || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT | |
2034 | && h->root.type == bfd_link_hash_undefweak)) | |
2035 | { | |
2036 | /* This case can occur if we saw a PLT32 reloc in an input | |
2037 | file, but the symbol was never referred to by a dynamic | |
2038 | object, or if all references were garbage collected. In | |
2039 | such a case, we don't actually need to build a procedure | |
2040 | linkage table, and we can just do a PC32 reloc instead. */ | |
2041 | h->plt.offset = (bfd_vma) -1; | |
2042 | h->needs_plt = 0; | |
2043 | } | |
2044 | ||
2045 | return TRUE; | |
2046 | } | |
2047 | ||
2048 | /* If this is a weak symbol, and there is a real definition, the | |
2049 | processor independent code will have arranged for us to see the | |
2050 | real definition first, and we can just use the same value. */ | |
2051 | if (h->u.weakdef != NULL) | |
2052 | { | |
2053 | BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined | |
2054 | || h->u.weakdef->root.type == bfd_link_hash_defweak); | |
2055 | h->root.u.def.section = h->u.weakdef->root.u.def.section; | |
2056 | h->root.u.def.value = h->u.weakdef->root.u.def.value; | |
2057 | h->non_got_ref = h->u.weakdef->non_got_ref; | |
2058 | return TRUE; | |
2059 | } | |
2060 | ||
2061 | /* This is a reference to a symbol defined by a dynamic object which | |
2062 | is not a function. */ | |
2063 | ||
2064 | /* If we are creating a shared library, we must presume that the | |
2065 | only references to the symbol are via the global offset table. | |
2066 | For such cases we need not do anything here; the relocations will | |
2067 | be handled correctly by relocate_section. */ | |
2068 | if (info->shared) | |
2069 | return TRUE; | |
2070 | ||
2071 | /* If there are no references to this symbol that do not use the | |
2072 | GOT, we don't need to generate a copy reloc. */ | |
2073 | if (!h->non_got_ref) | |
2074 | return TRUE; | |
2075 | ||
2076 | /* If -z nocopyreloc was given, we won't generate them either. */ | |
2077 | if (info->nocopyreloc) | |
2078 | { | |
2079 | h->non_got_ref = 0; | |
2080 | return TRUE; | |
2081 | } | |
2082 | ||
2083 | htab = elf32_tic6x_hash_table (info); | |
2084 | if (htab == NULL) | |
2085 | return FALSE; | |
2086 | ||
2087 | if (h->size == 0) | |
2088 | { | |
2089 | (*_bfd_error_handler) (_("dynamic variable `%s' is zero size"), | |
2090 | h->root.root.string); | |
2091 | return TRUE; | |
2092 | } | |
2093 | ||
2094 | /* We must allocate the symbol in our .dynbss section, which will | |
2095 | become part of the .bss section of the executable. There will be | |
2096 | an entry for this symbol in the .dynsym section. The dynamic | |
2097 | object will contain position independent code, so all references | |
2098 | from the dynamic object to this symbol will go through the global | |
2099 | offset table. The dynamic linker will use the .dynsym entry to | |
2100 | determine the address it must put in the global offset table, so | |
2101 | both the dynamic object and the regular object will refer to the | |
2102 | same memory location for the variable. */ | |
2103 | ||
2104 | /* We must generate a R_C6000_COPY reloc to tell the dynamic linker to | |
2105 | copy the initial value out of the dynamic object and into the | |
2106 | runtime process image. */ | |
2107 | if ((h->root.u.def.section->flags & SEC_ALLOC) != 0) | |
2108 | { | |
2109 | htab->srelbss->size += sizeof (Elf32_External_Rela); | |
2110 | h->needs_copy = 1; | |
2111 | } | |
2112 | ||
2113 | s = htab->sdynbss; | |
2114 | ||
2115 | return _bfd_elf_adjust_dynamic_copy (h, s); | |
2116 | } | |
2117 | ||
41820509 JM |
2118 | static bfd_boolean |
2119 | elf32_tic6x_new_section_hook (bfd *abfd, asection *sec) | |
2120 | { | |
2121 | bfd_boolean ret; | |
2122 | ||
2123 | ret = _bfd_elf_new_section_hook (abfd, sec); | |
2124 | sec->use_rela_p = elf32_tic6x_tdata (abfd)->use_rela_p; | |
2125 | ||
2126 | return ret; | |
2127 | } | |
2128 | ||
2129 | /* Return true if relocation REL against section SEC is a REL rather | |
2130 | than RELA relocation. RELOCS is the first relocation in the | |
2131 | section and ABFD is the bfd that contains SEC. */ | |
2132 | ||
2133 | static bfd_boolean | |
2134 | elf32_tic6x_rel_relocation_p (bfd *abfd, asection *sec, | |
2135 | const Elf_Internal_Rela *relocs, | |
2136 | const Elf_Internal_Rela *rel) | |
2137 | { | |
2138 | Elf_Internal_Shdr *rel_hdr; | |
2139 | const struct elf_backend_data *bed; | |
2140 | ||
2141 | /* To determine which flavor of relocation this is, we depend on the | |
d4730f92 BS |
2142 | fact that the INPUT_SECTION's REL_HDR is read before RELA_HDR. */ |
2143 | rel_hdr = elf_section_data (sec)->rel.hdr; | |
2144 | if (rel_hdr == NULL) | |
2145 | return FALSE; | |
41820509 | 2146 | bed = get_elf_backend_data (abfd); |
d4730f92 BS |
2147 | return ((size_t) (rel - relocs) |
2148 | < NUM_SHDR_ENTRIES (rel_hdr) * bed->s->int_rels_per_ext_rel); | |
41820509 JM |
2149 | } |
2150 | ||
ac145307 BS |
2151 | /* We need dynamic symbols for every section, since segments can |
2152 | relocate independently. */ | |
2153 | static bfd_boolean | |
2154 | elf32_tic6x_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED, | |
2155 | struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
2156 | asection *p) | |
2157 | { | |
2158 | switch (elf_section_data (p)->this_hdr.sh_type) | |
2159 | { | |
2160 | case SHT_PROGBITS: | |
2161 | case SHT_NOBITS: | |
2162 | /* If sh_type is yet undecided, assume it could be | |
2163 | SHT_PROGBITS/SHT_NOBITS. */ | |
2164 | case SHT_NULL: | |
2165 | return FALSE; | |
2166 | ||
2167 | /* There shouldn't be section relative relocations | |
2168 | against any other section. */ | |
2169 | default: | |
2170 | return TRUE; | |
2171 | } | |
2172 | } | |
2173 | ||
40b36596 JM |
2174 | static bfd_boolean |
2175 | elf32_tic6x_relocate_section (bfd *output_bfd, | |
2176 | struct bfd_link_info *info, | |
2177 | bfd *input_bfd, | |
2178 | asection *input_section, | |
2179 | bfd_byte *contents, | |
2180 | Elf_Internal_Rela *relocs, | |
2181 | Elf_Internal_Sym *local_syms, | |
2182 | asection **local_sections) | |
2183 | { | |
ac145307 | 2184 | struct elf32_tic6x_link_hash_table *htab; |
40b36596 JM |
2185 | Elf_Internal_Shdr *symtab_hdr; |
2186 | struct elf_link_hash_entry **sym_hashes; | |
ac145307 | 2187 | bfd_vma *local_got_offsets; |
40b36596 JM |
2188 | Elf_Internal_Rela *rel; |
2189 | Elf_Internal_Rela *relend; | |
2190 | bfd_boolean ok = TRUE; | |
2191 | ||
ac145307 | 2192 | htab = elf32_tic6x_hash_table (info); |
40b36596 JM |
2193 | symtab_hdr = & elf_symtab_hdr (input_bfd); |
2194 | sym_hashes = elf_sym_hashes (input_bfd); | |
ac145307 | 2195 | local_got_offsets = elf_local_got_offsets (input_bfd); |
40b36596 JM |
2196 | |
2197 | relend = relocs + input_section->reloc_count; | |
2198 | ||
2199 | for (rel = relocs; rel < relend; rel ++) | |
2200 | { | |
2201 | int r_type; | |
2202 | unsigned long r_symndx; | |
2203 | arelent bfd_reloc; | |
2204 | reloc_howto_type *howto; | |
2205 | Elf_Internal_Sym *sym; | |
2206 | asection *sec; | |
2207 | struct elf_link_hash_entry *h; | |
ac145307 | 2208 | bfd_vma off, relocation; |
40b36596 JM |
2209 | bfd_boolean unresolved_reloc; |
2210 | bfd_reloc_status_type r; | |
2211 | struct bfd_link_hash_entry *sbh; | |
41820509 | 2212 | bfd_boolean is_rel; |
40b36596 JM |
2213 | |
2214 | r_type = ELF32_R_TYPE (rel->r_info); | |
2215 | r_symndx = ELF32_R_SYM (rel->r_info); | |
2216 | ||
41820509 JM |
2217 | is_rel = elf32_tic6x_rel_relocation_p (input_bfd, input_section, |
2218 | relocs, rel); | |
2219 | ||
2220 | if (is_rel) | |
2221 | elf32_tic6x_info_to_howto_rel (input_bfd, &bfd_reloc, rel); | |
2222 | else | |
2223 | elf32_tic6x_info_to_howto (input_bfd, &bfd_reloc, rel); | |
40b36596 JM |
2224 | howto = bfd_reloc.howto; |
2225 | if (howto == NULL) | |
2226 | { | |
2227 | bfd_set_error (bfd_error_bad_value); | |
2228 | return FALSE; | |
2229 | } | |
2230 | ||
2231 | h = NULL; | |
2232 | sym = NULL; | |
2233 | sec = NULL; | |
2234 | unresolved_reloc = FALSE; | |
2235 | ||
2236 | if (r_symndx < symtab_hdr->sh_info) | |
2237 | { | |
2238 | sym = local_syms + r_symndx; | |
2239 | sec = local_sections[r_symndx]; | |
2240 | relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel); | |
2241 | } | |
2242 | else | |
2243 | { | |
2244 | bfd_boolean warned; | |
2245 | ||
2246 | RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel, | |
2247 | r_symndx, symtab_hdr, sym_hashes, | |
2248 | h, sec, relocation, | |
2249 | unresolved_reloc, warned); | |
2250 | } | |
2251 | ||
2252 | if (sec != NULL && elf_discarded_section (sec)) | |
e4067dbb DJ |
2253 | RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section, |
2254 | rel, relend, howto, contents); | |
40b36596 JM |
2255 | |
2256 | if (info->relocatable) | |
41820509 JM |
2257 | { |
2258 | if (is_rel | |
2259 | && sym != NULL | |
2260 | && ELF_ST_TYPE (sym->st_info) == STT_SECTION) | |
2261 | { | |
2262 | rel->r_addend = 0; | |
2263 | relocation = sec->output_offset + sym->st_value; | |
2264 | r = _bfd_relocate_contents (howto, input_bfd, relocation, | |
2265 | contents + rel->r_offset); | |
2266 | goto done_reloc; | |
2267 | } | |
2268 | continue; | |
2269 | } | |
40b36596 JM |
2270 | |
2271 | switch (r_type) | |
2272 | { | |
2273 | case R_C6000_NONE: | |
2274 | case R_C6000_ALIGN: | |
2275 | case R_C6000_FPHEAD: | |
2276 | case R_C6000_NOCMP: | |
2277 | /* No action needed. */ | |
2278 | continue; | |
2279 | ||
2280 | case R_C6000_PCR_S21: | |
ac145307 BS |
2281 | /* A branch to an undefined weak symbol is turned into a |
2282 | "b .s2 B3" instruction if the existing insn is of the | |
2283 | form "b .s2 symbol". */ | |
2284 | if (h ? h->root.type == bfd_link_hash_undefweak | |
2285 | && (htab->elf.splt == NULL || h->plt.offset == (bfd_vma) -1) | |
2286 | : r_symndx != STN_UNDEF && bfd_is_und_section (sec)) | |
2287 | { | |
2288 | unsigned long oldval; | |
2289 | oldval = bfd_get_32 (input_bfd, contents + rel->r_offset); | |
2290 | ||
2291 | if ((oldval & 0x7e) == 0x12) | |
2292 | { | |
2293 | oldval &= 0xF0000001; | |
2294 | bfd_put_32 (input_bfd, oldval | 0x000c0362, | |
2295 | contents + rel->r_offset); | |
2296 | r = bfd_reloc_ok; | |
2297 | goto done_reloc; | |
2298 | } | |
2299 | } | |
2300 | ||
40b36596 JM |
2301 | case R_C6000_PCR_S12: |
2302 | case R_C6000_PCR_S10: | |
2303 | case R_C6000_PCR_S7: | |
ac145307 BS |
2304 | if (h != NULL |
2305 | && h->plt.offset != (bfd_vma) -1 | |
2306 | && htab->elf.splt != NULL) | |
2307 | { | |
2308 | relocation = (htab->elf.splt->output_section->vma | |
2309 | + htab->elf.splt->output_offset | |
2310 | + h->plt.offset); | |
2311 | } | |
2312 | ||
40b36596 JM |
2313 | /* Generic PC-relative handling produces a value relative to |
2314 | the exact location of the relocation. Adjust it to be | |
2315 | relative to the start of the fetch packet instead. */ | |
2316 | relocation += (input_section->output_section->vma | |
2317 | + input_section->output_offset | |
2318 | + rel->r_offset) & 0x1f; | |
ac145307 BS |
2319 | unresolved_reloc = FALSE; |
2320 | break; | |
2321 | ||
2322 | case R_C6000_DSBT_INDEX: | |
2323 | relocation = elf32_tic6x_hash_table (info)->params.dsbt_index; | |
2324 | if (!info->shared || relocation != 0) | |
2325 | break; | |
2326 | ||
2327 | /* fall through */ | |
40b36596 JM |
2328 | case R_C6000_ABS32: |
2329 | case R_C6000_ABS16: | |
2330 | case R_C6000_ABS8: | |
2331 | case R_C6000_ABS_S16: | |
2332 | case R_C6000_ABS_L16: | |
2333 | case R_C6000_ABS_H16: | |
ac145307 BS |
2334 | /* When generating a shared object or relocatable executable, these |
2335 | relocations are copied into the output file to be resolved at | |
2336 | run time. */ | |
2337 | if ((info->shared || elf32_tic6x_using_dsbt (output_bfd)) | |
2338 | && (input_section->flags & SEC_ALLOC) | |
2339 | && (h == NULL | |
2340 | || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT | |
2341 | || h->root.type != bfd_link_hash_undefweak)) | |
2342 | { | |
2343 | Elf_Internal_Rela outrel; | |
2344 | bfd_boolean skip, relocate; | |
2345 | asection *sreloc; | |
2346 | ||
2347 | unresolved_reloc = FALSE; | |
2348 | ||
2349 | sreloc = elf_section_data (input_section)->sreloc; | |
2350 | BFD_ASSERT (sreloc != NULL && sreloc->contents != NULL); | |
2351 | ||
2352 | skip = FALSE; | |
2353 | relocate = FALSE; | |
2354 | ||
2355 | outrel.r_offset = | |
2356 | _bfd_elf_section_offset (output_bfd, info, input_section, | |
2357 | rel->r_offset); | |
2358 | if (outrel.r_offset == (bfd_vma) -1) | |
2359 | skip = TRUE; | |
2360 | else if (outrel.r_offset == (bfd_vma) -2) | |
2361 | skip = TRUE, relocate = TRUE; | |
2362 | outrel.r_offset += (input_section->output_section->vma | |
2363 | + input_section->output_offset); | |
2364 | ||
2365 | if (skip) | |
2366 | memset (&outrel, 0, sizeof outrel); | |
2367 | else if (h != NULL | |
2368 | && h->dynindx != -1 | |
2369 | && (!info->shared | |
2370 | || !info->symbolic | |
2371 | || !h->def_regular)) | |
2372 | { | |
2373 | outrel.r_info = ELF32_R_INFO (h->dynindx, r_type); | |
2374 | outrel.r_addend = rel->r_addend; | |
2375 | } | |
2376 | else | |
2377 | { | |
2378 | long indx; | |
2379 | ||
2380 | outrel.r_addend = relocation + rel->r_addend; | |
2381 | ||
2382 | if (bfd_is_abs_section (sec)) | |
2383 | indx = 0; | |
2384 | else if (sec == NULL || sec->owner == NULL) | |
2385 | { | |
2386 | bfd_set_error (bfd_error_bad_value); | |
2387 | return FALSE; | |
2388 | } | |
2389 | else | |
2390 | { | |
2391 | asection *osec; | |
2392 | ||
2393 | osec = sec->output_section; | |
2394 | indx = elf_section_data (osec)->dynindx; | |
2395 | outrel.r_addend -= osec->vma; | |
2396 | BFD_ASSERT (indx != 0); | |
2397 | } | |
2398 | ||
2399 | outrel.r_info = ELF32_R_INFO (indx, r_type); | |
2400 | } | |
2401 | ||
2402 | elf32_tic6x_install_rela (output_bfd, sreloc, &outrel); | |
2403 | ||
2404 | /* If this reloc is against an external symbol, we do not want to | |
2405 | fiddle with the addend. Otherwise, we need to include the symbol | |
2406 | value so that it becomes an addend for the dynamic reloc. */ | |
2407 | if (! relocate) | |
2408 | continue; | |
2409 | } | |
2410 | ||
40b36596 JM |
2411 | /* Generic logic OK. */ |
2412 | break; | |
2413 | ||
2414 | case R_C6000_SBR_U15_B: | |
2415 | case R_C6000_SBR_U15_H: | |
2416 | case R_C6000_SBR_U15_W: | |
2417 | case R_C6000_SBR_S16: | |
2418 | case R_C6000_SBR_L16_B: | |
2419 | case R_C6000_SBR_L16_H: | |
2420 | case R_C6000_SBR_L16_W: | |
2421 | case R_C6000_SBR_H16_B: | |
2422 | case R_C6000_SBR_H16_H: | |
2423 | case R_C6000_SBR_H16_W: | |
2424 | sbh = bfd_link_hash_lookup (info->hash, "__c6xabi_DSBT_BASE", | |
2425 | FALSE, FALSE, TRUE); | |
2426 | if (sbh != NULL | |
2427 | && (sbh->type == bfd_link_hash_defined | |
2428 | || sbh->type == bfd_link_hash_defweak)) | |
ac145307 BS |
2429 | { |
2430 | if (h ? (h->root.type == bfd_link_hash_undefweak | |
2431 | && (htab->elf.splt == NULL | |
2432 | || h->plt.offset == (bfd_vma) -1)) | |
2433 | : r_symndx != STN_UNDEF && bfd_is_und_section (sec)) | |
2434 | relocation = 0; | |
2435 | else | |
2436 | relocation -= (sbh->u.def.value | |
2437 | + sbh->u.def.section->output_section->vma | |
2438 | + sbh->u.def.section->output_offset); | |
2439 | } | |
40b36596 JM |
2440 | else |
2441 | { | |
2442 | (*_bfd_error_handler) (_("%B: SB-relative relocation but " | |
2443 | "__c6xabi_DSBT_BASE not defined"), | |
2444 | input_bfd); | |
2445 | ok = FALSE; | |
2446 | continue; | |
2447 | } | |
2448 | break; | |
2449 | ||
2450 | case R_C6000_SBR_GOT_U15_W: | |
2451 | case R_C6000_SBR_GOT_L16_W: | |
2452 | case R_C6000_SBR_GOT_H16_W: | |
2fbb87f6 | 2453 | case R_C6000_EHTYPE: |
ac145307 BS |
2454 | /* Relocation is to the entry for this symbol in the global |
2455 | offset table. */ | |
2456 | if (htab->elf.sgot == NULL) | |
2457 | abort (); | |
2458 | ||
2459 | if (h != NULL) | |
2460 | { | |
2461 | bfd_boolean dyn; | |
2462 | ||
2463 | off = h->got.offset; | |
2464 | dyn = htab->elf.dynamic_sections_created; | |
2465 | if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h) | |
2466 | || (info->shared | |
2467 | && SYMBOL_REFERENCES_LOCAL (info, h)) | |
2468 | || (ELF_ST_VISIBILITY (h->other) | |
2469 | && h->root.type == bfd_link_hash_undefweak)) | |
2470 | { | |
2471 | /* This is actually a static link, or it is a | |
2472 | -Bsymbolic link and the symbol is defined | |
2473 | locally, or the symbol was forced to be local | |
2474 | because of a version file. We must initialize | |
2475 | this entry in the global offset table. Since the | |
2476 | offset must always be a multiple of 4, we use the | |
2477 | least significant bit to record whether we have | |
2478 | initialized it already. | |
2479 | ||
2480 | When doing a dynamic link, we create a .rel.got | |
2481 | relocation entry to initialize the value. This | |
2482 | is done in the finish_dynamic_symbol routine. */ | |
2483 | if ((off & 1) != 0) | |
2484 | off &= ~1; | |
2485 | else | |
2486 | { | |
2487 | bfd_put_32 (output_bfd, relocation, | |
2488 | htab->elf.sgot->contents + off); | |
2489 | h->got.offset |= 1; | |
2490 | ||
2491 | if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, | |
2492 | h) | |
2493 | && !(ELF_ST_VISIBILITY (h->other) | |
2494 | && h->root.type == bfd_link_hash_undefweak)) | |
2495 | elf32_tic6x_make_got_dynreloc (output_bfd, htab, sec, | |
2496 | off); | |
2497 | } | |
2498 | } | |
2499 | else | |
2500 | unresolved_reloc = FALSE; | |
2501 | } | |
2502 | else | |
2503 | { | |
2504 | if (local_got_offsets == NULL) | |
2505 | abort (); | |
2506 | ||
2507 | off = local_got_offsets[r_symndx]; | |
2508 | ||
2509 | /* The offset must always be a multiple of 4. We use | |
2510 | the least significant bit to record whether we have | |
2511 | already generated the necessary reloc. */ | |
2512 | if ((off & 1) != 0) | |
2513 | off &= ~1; | |
2514 | else | |
2515 | { | |
2516 | bfd_put_32 (output_bfd, relocation, | |
2517 | htab->elf.sgot->contents + off); | |
2518 | ||
2519 | if (info->shared || elf32_tic6x_using_dsbt (output_bfd)) | |
2520 | elf32_tic6x_make_got_dynreloc (output_bfd, htab, sec, off); | |
2521 | ||
2522 | local_got_offsets[r_symndx] |= 1; | |
2523 | } | |
2524 | } | |
2525 | ||
2526 | if (off >= (bfd_vma) -2) | |
2527 | abort (); | |
2528 | ||
2529 | if (htab->dsbt) | |
2530 | relocation = (htab->elf.sgot->output_section->vma | |
2531 | + htab->elf.sgot->output_offset + off | |
2532 | - htab->dsbt->output_section->vma | |
2533 | - htab->dsbt->output_offset); | |
2534 | else | |
2535 | relocation = (htab->elf.sgot->output_section->vma | |
2536 | + htab->elf.sgot->output_offset + off | |
2537 | - htab->elf.sgotplt->output_section->vma | |
2538 | - htab->elf.sgotplt->output_offset); | |
2539 | ||
2540 | if (rel->r_addend != 0) | |
2541 | { | |
2542 | /* We can't do anything for a relocation which is against | |
2543 | a symbol *plus offset*. GOT holds relocations for | |
2544 | symbols. Make this an error; the compiler isn't | |
2545 | allowed to pass us these kinds of things. */ | |
2546 | if (h == NULL) | |
2547 | (*_bfd_error_handler) | |
2548 | (_("%B, section %A: relocation %s with non-zero addend %d" | |
2549 | " against local symbol"), | |
2550 | input_bfd, | |
2551 | input_section, | |
2552 | elf32_tic6x_howto_table[r_type].name, | |
2553 | rel->r_addend); | |
2554 | else | |
2555 | (*_bfd_error_handler) | |
2556 | (_("%B, section %A: relocation %s with non-zero addend %d" | |
2557 | " against symbol `%s'"), | |
2558 | input_bfd, | |
2559 | input_section, | |
2560 | elf32_tic6x_howto_table[r_type].name, | |
2561 | rel->r_addend, | |
2562 | h->root.root.string[0] != '\0' ? h->root.root.string | |
2563 | : _("[whose name is lost]")); | |
2564 | ||
2565 | bfd_set_error (bfd_error_bad_value); | |
2566 | return FALSE; | |
2567 | } | |
2568 | break; | |
2569 | ||
40b36596 | 2570 | case R_C6000_PREL31: |
44e87ece PB |
2571 | if (h != NULL |
2572 | && h->plt.offset != (bfd_vma) -1 | |
2573 | && htab->elf.splt != NULL) | |
2574 | { | |
2575 | relocation = (htab->elf.splt->output_section->vma | |
2576 | + htab->elf.splt->output_offset | |
2577 | + h->plt.offset); | |
2578 | } | |
2579 | break; | |
40b36596 JM |
2580 | |
2581 | case R_C6000_COPY: | |
2582 | /* Invalid in relocatable object. */ | |
2583 | default: | |
2584 | /* Unknown relocation. */ | |
2585 | (*_bfd_error_handler) (_("%B: invalid relocation type %d"), | |
2586 | input_bfd, r_type); | |
2587 | ok = FALSE; | |
2588 | continue; | |
2589 | } | |
2590 | ||
2591 | r = _bfd_final_link_relocate (howto, input_bfd, input_section, | |
2592 | contents, rel->r_offset, | |
2593 | relocation, rel->r_addend); | |
2594 | ||
41820509 | 2595 | done_reloc: |
40b36596 JM |
2596 | if (r == bfd_reloc_ok |
2597 | && howto->complain_on_overflow == complain_overflow_bitfield) | |
2598 | { | |
2599 | /* Generic overflow handling accepts cases the ABI says | |
2600 | should be rejected for R_C6000_ABS16 and | |
2601 | R_C6000_ABS8. */ | |
2602 | bfd_vma value = (relocation + rel->r_addend) & 0xffffffff; | |
2603 | bfd_vma sbit = 1 << (howto->bitsize - 1); | |
2604 | bfd_vma sbits = (-(bfd_vma) sbit) & 0xffffffff; | |
2605 | bfd_vma value_sbits = value & sbits; | |
2606 | ||
2607 | if (value_sbits != 0 | |
2608 | && value_sbits != sbit | |
2609 | && value_sbits != sbits) | |
2610 | r = bfd_reloc_overflow; | |
2611 | } | |
2612 | ||
2613 | if (r != bfd_reloc_ok) | |
2614 | { | |
2615 | const char *name; | |
2616 | const char *error_message; | |
2617 | ||
2618 | if (h != NULL) | |
2619 | name = h->root.root.string; | |
2620 | else | |
2621 | { | |
2622 | name = bfd_elf_string_from_elf_section (input_bfd, | |
2623 | symtab_hdr->sh_link, | |
2624 | sym->st_name); | |
2625 | if (name == NULL) | |
2626 | return FALSE; | |
2627 | if (*name == '\0') | |
2628 | name = bfd_section_name (input_bfd, sec); | |
2629 | } | |
2630 | ||
2631 | switch (r) | |
2632 | { | |
2633 | case bfd_reloc_overflow: | |
2634 | /* If the overflowing reloc was to an undefined symbol, | |
2635 | we have already printed one error message and there | |
2636 | is no point complaining again. */ | |
2637 | if ((! h || | |
2638 | h->root.type != bfd_link_hash_undefined) | |
2639 | && (!((*info->callbacks->reloc_overflow) | |
2640 | (info, (h ? &h->root : NULL), name, howto->name, | |
2641 | (bfd_vma) 0, input_bfd, input_section, | |
2642 | rel->r_offset)))) | |
2643 | return FALSE; | |
2644 | break; | |
2645 | ||
2646 | case bfd_reloc_undefined: | |
2647 | if (!((*info->callbacks->undefined_symbol) | |
2648 | (info, name, input_bfd, input_section, | |
2649 | rel->r_offset, TRUE))) | |
2650 | return FALSE; | |
2651 | break; | |
2652 | ||
2653 | case bfd_reloc_outofrange: | |
2654 | error_message = _("out of range"); | |
2655 | goto common_error; | |
2656 | ||
2657 | case bfd_reloc_notsupported: | |
2658 | error_message = _("unsupported relocation"); | |
2659 | goto common_error; | |
2660 | ||
2661 | case bfd_reloc_dangerous: | |
2662 | error_message = _("dangerous relocation"); | |
2663 | goto common_error; | |
2664 | ||
2665 | default: | |
2666 | error_message = _("unknown error"); | |
2667 | /* Fall through. */ | |
2668 | ||
2669 | common_error: | |
2670 | BFD_ASSERT (error_message != NULL); | |
2671 | if (!((*info->callbacks->reloc_dangerous) | |
2672 | (info, error_message, input_bfd, input_section, | |
2673 | rel->r_offset))) | |
2674 | return FALSE; | |
2675 | break; | |
2676 | } | |
2677 | } | |
2678 | } | |
2679 | ||
2680 | return ok; | |
2681 | } | |
2682 | ||
ac145307 BS |
2683 | \f |
2684 | /* Look through the relocs for a section during the first phase, and | |
2685 | calculate needed space in the global offset table, procedure linkage | |
2686 | table, and dynamic reloc sections. */ | |
2687 | ||
2688 | static bfd_boolean | |
2689 | elf32_tic6x_check_relocs (bfd *abfd, struct bfd_link_info *info, | |
2690 | asection *sec, const Elf_Internal_Rela *relocs) | |
2691 | { | |
2692 | struct elf32_tic6x_link_hash_table *htab; | |
2693 | Elf_Internal_Shdr *symtab_hdr; | |
2694 | struct elf_link_hash_entry **sym_hashes; | |
2695 | const Elf_Internal_Rela *rel; | |
2696 | const Elf_Internal_Rela *rel_end; | |
2697 | asection *sreloc; | |
2698 | ||
2699 | if (info->relocatable) | |
2700 | return TRUE; | |
2701 | ||
2702 | htab = elf32_tic6x_hash_table (info); | |
2703 | symtab_hdr = &elf_symtab_hdr (abfd); | |
2704 | sym_hashes = elf_sym_hashes (abfd); | |
2705 | ||
2706 | /* Create dynamic sections for relocatable executables so that we can | |
2707 | copy relocations. */ | |
2708 | if (elf32_tic6x_using_dsbt (abfd) | |
2709 | && ! htab->elf.dynamic_sections_created) | |
2710 | { | |
2711 | if (! _bfd_elf_link_create_dynamic_sections (abfd, info)) | |
2712 | return FALSE; | |
2713 | } | |
2714 | ||
2715 | sreloc = NULL; | |
2716 | ||
2717 | rel_end = relocs + sec->reloc_count; | |
2718 | for (rel = relocs; rel < rel_end; rel++) | |
2719 | { | |
2720 | unsigned int r_type; | |
2721 | unsigned long r_symndx; | |
2722 | struct elf_link_hash_entry *h; | |
2723 | Elf_Internal_Sym *isym; | |
2724 | ||
2725 | r_symndx = ELF32_R_SYM (rel->r_info); | |
2726 | r_type = ELF32_R_TYPE (rel->r_info); | |
2727 | ||
2728 | if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr)) | |
2729 | { | |
2730 | (*_bfd_error_handler) (_("%B: bad symbol index: %d"), | |
2731 | abfd, | |
2732 | r_symndx); | |
2733 | return FALSE; | |
2734 | } | |
2735 | ||
2736 | if (r_symndx < symtab_hdr->sh_info) | |
2737 | { | |
2738 | /* A local symbol. */ | |
2739 | isym = bfd_sym_from_r_symndx (&htab->sym_cache, | |
2740 | abfd, r_symndx); | |
2741 | if (isym == NULL) | |
2742 | return FALSE; | |
2743 | h = NULL; | |
2744 | } | |
2745 | else | |
2746 | { | |
2747 | isym = NULL; | |
2748 | h = sym_hashes[r_symndx - symtab_hdr->sh_info]; | |
2749 | while (h->root.type == bfd_link_hash_indirect | |
2750 | || h->root.type == bfd_link_hash_warning) | |
2751 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
2752 | } | |
2753 | ||
2754 | switch (r_type) | |
2755 | { | |
2756 | case R_C6000_PCR_S21: | |
44e87ece | 2757 | case R_C6000_PREL31: |
ac145307 BS |
2758 | /* This symbol requires a procedure linkage table entry. We |
2759 | actually build the entry in adjust_dynamic_symbol, | |
2760 | because this might be a case of linking PIC code which is | |
2761 | never referenced by a dynamic object, in which case we | |
2762 | don't need to generate a procedure linkage table entry | |
2763 | after all. */ | |
2764 | ||
2765 | /* If this is a local symbol, we resolve it directly without | |
2766 | creating a procedure linkage table entry. */ | |
2767 | if (h == NULL) | |
2768 | continue; | |
2769 | ||
2770 | h->needs_plt = 1; | |
2771 | h->plt.refcount += 1; | |
2772 | break; | |
2773 | ||
2774 | case R_C6000_SBR_GOT_U15_W: | |
2775 | case R_C6000_SBR_GOT_L16_W: | |
2776 | case R_C6000_SBR_GOT_H16_W: | |
2fbb87f6 | 2777 | case R_C6000_EHTYPE: |
ac145307 BS |
2778 | /* This symbol requires a global offset table entry. */ |
2779 | if (h != NULL) | |
2780 | { | |
2781 | h->got.refcount += 1; | |
2782 | } | |
2783 | else | |
2784 | { | |
2785 | bfd_signed_vma *local_got_refcounts; | |
2786 | ||
2787 | /* This is a global offset table entry for a local symbol. */ | |
2788 | local_got_refcounts = elf_local_got_refcounts (abfd); | |
2789 | if (local_got_refcounts == NULL) | |
2790 | { | |
2791 | bfd_size_type size; | |
2792 | ||
2793 | size = symtab_hdr->sh_info; | |
2794 | size *= (sizeof (bfd_signed_vma) | |
2795 | + sizeof (bfd_vma) + sizeof(char)); | |
2796 | local_got_refcounts = bfd_zalloc (abfd, size); | |
2797 | if (local_got_refcounts == NULL) | |
2798 | return FALSE; | |
2799 | elf_local_got_refcounts (abfd) = local_got_refcounts; | |
2800 | } | |
2801 | local_got_refcounts[r_symndx] += 1; | |
2802 | } | |
2803 | ||
2804 | if (htab->elf.sgot == NULL) | |
2805 | { | |
2806 | if (htab->elf.dynobj == NULL) | |
2807 | htab->elf.dynobj = abfd; | |
2808 | if (!_bfd_elf_create_got_section (htab->elf.dynobj, info)) | |
2809 | return FALSE; | |
2810 | } | |
2811 | break; | |
2812 | ||
2813 | case R_C6000_DSBT_INDEX: | |
2814 | /* We'd like to check for nonzero dsbt_index here, but it's | |
2815 | set up only after check_relocs is called. Instead, we | |
2816 | store the number of R_C6000_DSBT_INDEX relocs in the | |
2817 | pc_count field, and potentially discard the extra space | |
2818 | in elf32_tic6x_allocate_dynrelocs. */ | |
2819 | if (!info->shared) | |
2820 | break; | |
2821 | ||
2822 | /* fall through */ | |
2823 | case R_C6000_ABS32: | |
2824 | case R_C6000_ABS16: | |
2825 | case R_C6000_ABS8: | |
2826 | case R_C6000_ABS_S16: | |
2827 | case R_C6000_ABS_L16: | |
2828 | case R_C6000_ABS_H16: | |
2829 | /* If we are creating a shared library, and this is a reloc | |
2830 | against a global symbol, or a non PC relative reloc | |
2831 | against a local symbol, then we need to copy the reloc | |
2832 | into the shared library. However, if we are linking with | |
2833 | -Bsymbolic, we do not need to copy a reloc against a | |
2834 | global symbol which is defined in an object we are | |
2835 | including in the link (i.e., DEF_REGULAR is set). At | |
2836 | this point we have not seen all the input files, so it is | |
2837 | possible that DEF_REGULAR is not set now but will be set | |
2838 | later (it is never cleared). In case of a weak definition, | |
2839 | DEF_REGULAR may be cleared later by a strong definition in | |
2840 | a shared library. We account for that possibility below by | |
2841 | storing information in the relocs_copied field of the hash | |
2842 | table entry. A similar situation occurs when creating | |
2843 | shared libraries and symbol visibility changes render the | |
2844 | symbol local. | |
2845 | ||
2846 | If on the other hand, we are creating an executable, we | |
2847 | may need to keep relocations for symbols satisfied by a | |
2848 | dynamic library if we manage to avoid copy relocs for the | |
2849 | symbol. */ | |
2850 | if ((info->shared || elf32_tic6x_using_dsbt (abfd)) | |
2851 | && (sec->flags & SEC_ALLOC) != 0) | |
2852 | { | |
2853 | struct elf_dyn_relocs *p; | |
2854 | struct elf_dyn_relocs **head; | |
2855 | ||
2856 | /* We must copy these reloc types into the output file. | |
2857 | Create a reloc section in dynobj and make room for | |
2858 | this reloc. */ | |
2859 | if (sreloc == NULL) | |
2860 | { | |
2861 | if (htab->elf.dynobj == NULL) | |
2862 | htab->elf.dynobj = abfd; | |
2863 | ||
2864 | sreloc = _bfd_elf_make_dynamic_reloc_section | |
2865 | (sec, htab->elf.dynobj, 2, abfd, /*rela? */ TRUE); | |
2866 | ||
2867 | if (sreloc == NULL) | |
2868 | return FALSE; | |
2869 | } | |
2870 | ||
2871 | /* If this is a global symbol, we count the number of | |
2872 | relocations we need for this symbol. */ | |
2873 | if (h != NULL) | |
2874 | { | |
2875 | head = &((struct elf32_tic6x_link_hash_entry *) h)->dyn_relocs; | |
2876 | } | |
2877 | else | |
2878 | { | |
2879 | /* Track dynamic relocs needed for local syms too. | |
2880 | We really need local syms available to do this | |
2881 | easily. Oh well. */ | |
2882 | void **vpp; | |
2883 | asection *s; | |
2884 | ||
2885 | s = bfd_section_from_elf_index (abfd, isym->st_shndx); | |
2886 | if (s == NULL) | |
2887 | s = sec; | |
2888 | ||
2889 | vpp = &elf_section_data (s)->local_dynrel; | |
2890 | head = (struct elf_dyn_relocs **)vpp; | |
2891 | } | |
2892 | ||
2893 | p = *head; | |
2894 | if (p == NULL || p->sec != sec) | |
2895 | { | |
2896 | bfd_size_type amt = sizeof *p; | |
2897 | p = bfd_alloc (htab->elf.dynobj, amt); | |
2898 | if (p == NULL) | |
2899 | return FALSE; | |
2900 | p->next = *head; | |
2901 | *head = p; | |
2902 | p->sec = sec; | |
2903 | p->count = 0; | |
2123f9ad | 2904 | p->pc_count = 0; |
ac145307 BS |
2905 | } |
2906 | ||
2907 | p->count += 1; | |
2908 | if (r_type == R_C6000_DSBT_INDEX) | |
2909 | p->pc_count += 1; | |
2910 | } | |
2911 | break; | |
2912 | ||
2913 | case R_C6000_SBR_U15_B: | |
2914 | case R_C6000_SBR_U15_H: | |
2915 | case R_C6000_SBR_U15_W: | |
2916 | case R_C6000_SBR_S16: | |
2917 | case R_C6000_SBR_L16_B: | |
2918 | case R_C6000_SBR_L16_H: | |
2919 | case R_C6000_SBR_L16_W: | |
2920 | case R_C6000_SBR_H16_B: | |
2921 | case R_C6000_SBR_H16_H: | |
2922 | case R_C6000_SBR_H16_W: | |
2923 | if (h != NULL && info->executable) | |
2924 | { | |
2925 | /* For B14-relative addresses, we might need a copy | |
2926 | reloc. */ | |
2927 | h->non_got_ref = 1; | |
2928 | } | |
2929 | break; | |
2930 | ||
2931 | default: | |
2932 | break; | |
2933 | } | |
2934 | } | |
2935 | ||
2936 | return TRUE; | |
2937 | } | |
2938 | ||
2939 | static bfd_boolean | |
2940 | elf32_tic6x_add_symbol_hook (bfd *abfd, | |
2941 | struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
2942 | Elf_Internal_Sym *sym, | |
2943 | const char **namep ATTRIBUTE_UNUSED, | |
2944 | flagword *flagsp ATTRIBUTE_UNUSED, | |
2945 | asection **secp, | |
2946 | bfd_vma *valp) | |
2947 | { | |
2948 | switch (sym->st_shndx) | |
2949 | { | |
2950 | case SHN_TIC6X_SCOMMON: | |
2951 | *secp = bfd_make_section_old_way (abfd, ".scommon"); | |
2952 | (*secp)->flags |= SEC_IS_COMMON; | |
2953 | *valp = sym->st_size; | |
2954 | bfd_set_section_alignment (abfd, *secp, bfd_log2 (sym->st_value)); | |
2955 | break; | |
2956 | } | |
2957 | ||
2958 | return TRUE; | |
2959 | } | |
2960 | ||
2961 | static void | |
2962 | elf32_tic6x_symbol_processing (bfd *abfd ATTRIBUTE_UNUSED, asymbol *asym) | |
2963 | { | |
2964 | elf_symbol_type *elfsym; | |
2965 | ||
2966 | elfsym = (elf_symbol_type *) asym; | |
2967 | switch (elfsym->internal_elf_sym.st_shndx) | |
2968 | { | |
2969 | case SHN_TIC6X_SCOMMON: | |
2970 | if (tic6x_elf_scom_section.name == NULL) | |
2971 | { | |
2972 | /* Initialize the small common section. */ | |
2973 | tic6x_elf_scom_section.name = ".scommon"; | |
2974 | tic6x_elf_scom_section.flags = SEC_IS_COMMON; | |
2975 | tic6x_elf_scom_section.output_section = &tic6x_elf_scom_section; | |
2976 | tic6x_elf_scom_section.symbol = &tic6x_elf_scom_symbol; | |
2977 | tic6x_elf_scom_section.symbol_ptr_ptr = &tic6x_elf_scom_symbol_ptr; | |
2978 | tic6x_elf_scom_symbol.name = ".scommon"; | |
2979 | tic6x_elf_scom_symbol.flags = BSF_SECTION_SYM; | |
2980 | tic6x_elf_scom_symbol.section = &tic6x_elf_scom_section; | |
2981 | tic6x_elf_scom_symbol_ptr = &tic6x_elf_scom_symbol; | |
2982 | } | |
2983 | asym->section = &tic6x_elf_scom_section; | |
2984 | asym->value = elfsym->internal_elf_sym.st_size; | |
2985 | break; | |
2986 | } | |
2987 | } | |
2988 | ||
2989 | static int | |
2990 | elf32_tic6x_link_output_symbol_hook (struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
2991 | const char *name ATTRIBUTE_UNUSED, | |
2992 | Elf_Internal_Sym *sym, | |
2993 | asection *input_sec, | |
2994 | struct elf_link_hash_entry *h ATTRIBUTE_UNUSED) | |
2995 | { | |
2996 | /* If we see a common symbol, which implies a relocatable link, then | |
2997 | if a symbol was small common in an input file, mark it as small | |
2998 | common in the output file. */ | |
2999 | if (sym->st_shndx == SHN_COMMON && strcmp (input_sec->name, ".scommon") == 0) | |
3000 | sym->st_shndx = SHN_TIC6X_SCOMMON; | |
3001 | ||
3002 | return 1; | |
3003 | } | |
3004 | ||
3005 | static bfd_boolean | |
3006 | elf32_tic6x_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED, | |
3007 | asection *sec, | |
3008 | int *retval) | |
3009 | { | |
3010 | if (strcmp (bfd_get_section_name (abfd, sec), ".scommon") == 0) | |
3011 | { | |
3012 | *retval = SHN_TIC6X_SCOMMON; | |
3013 | return TRUE; | |
3014 | } | |
3015 | ||
3016 | return FALSE; | |
3017 | } | |
3018 | ||
3019 | /* Allocate space in .plt, .got and associated reloc sections for | |
3020 | dynamic relocs. */ | |
3021 | ||
3022 | static bfd_boolean | |
3023 | elf32_tic6x_allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf) | |
3024 | { | |
3025 | struct bfd_link_info *info; | |
3026 | struct elf32_tic6x_link_hash_table *htab; | |
3027 | struct elf32_tic6x_link_hash_entry *eh; | |
3028 | struct elf_dyn_relocs *p; | |
3029 | ||
3030 | if (h->root.type == bfd_link_hash_indirect) | |
3031 | return TRUE; | |
3032 | ||
3033 | if (h->root.type == bfd_link_hash_warning) | |
3034 | /* When warning symbols are created, they **replace** the "real" | |
3035 | entry in the hash table, thus we never get to see the real | |
3036 | symbol in a hash traversal. So look at it now. */ | |
3037 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
3038 | eh = (struct elf32_tic6x_link_hash_entry *) h; | |
3039 | ||
3040 | info = (struct bfd_link_info *) inf; | |
3041 | htab = elf32_tic6x_hash_table (info); | |
3042 | ||
3043 | if (htab->elf.dynamic_sections_created && h->plt.refcount > 0) | |
3044 | { | |
3045 | /* Make sure this symbol is output as a dynamic symbol. | |
3046 | Undefined weak syms won't yet be marked as dynamic. */ | |
3047 | if (h->dynindx == -1 && !h->forced_local) | |
3048 | { | |
3049 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) | |
3050 | return FALSE; | |
3051 | } | |
3052 | ||
3053 | if (info->shared | |
3054 | || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h)) | |
3055 | { | |
3056 | asection *s = htab->elf.splt; | |
3057 | ||
3058 | /* If this is the first .plt entry, make room for the special | |
3059 | first entry. */ | |
3060 | if (s->size == 0) | |
3061 | s->size += PLT_ENTRY_SIZE; | |
3062 | ||
3063 | h->plt.offset = s->size; | |
3064 | ||
3065 | /* If this symbol is not defined in a regular file, and we are | |
3066 | not generating a shared library, then set the symbol to this | |
3067 | location in the .plt. This is required to make function | |
3068 | pointers compare as equal between the normal executable and | |
3069 | the shared library. */ | |
3070 | if (! info->shared && !h->def_regular) | |
3071 | { | |
3072 | h->root.u.def.section = s; | |
3073 | h->root.u.def.value = h->plt.offset; | |
3074 | } | |
3075 | ||
3076 | /* Make room for this entry. */ | |
3077 | s->size += PLT_ENTRY_SIZE; | |
3078 | /* We also need to make an entry in the .got.plt section, which | |
3079 | will be placed in the .got section by the linker script. */ | |
3080 | htab->elf.sgotplt->size += 4; | |
3081 | /* We also need to make an entry in the .rel.plt section. */ | |
3082 | htab->elf.srelplt->size += sizeof (Elf32_External_Rela); | |
3083 | } | |
3084 | else | |
3085 | { | |
3086 | h->plt.offset = (bfd_vma) -1; | |
3087 | h->needs_plt = 0; | |
3088 | } | |
3089 | } | |
3090 | else | |
3091 | { | |
3092 | h->plt.offset = (bfd_vma) -1; | |
3093 | h->needs_plt = 0; | |
3094 | } | |
3095 | ||
3096 | if (h->got.refcount > 0) | |
3097 | { | |
3098 | asection *s; | |
3099 | ||
3100 | /* Make sure this symbol is output as a dynamic symbol. | |
3101 | Undefined weak syms won't yet be marked as dynamic. */ | |
3102 | if (h->dynindx == -1 | |
3103 | && !h->forced_local) | |
3104 | { | |
3105 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) | |
3106 | return FALSE; | |
3107 | } | |
3108 | ||
3109 | s = htab->elf.sgot; | |
3110 | h->got.offset = s->size; | |
3111 | s->size += 4; | |
3112 | ||
3113 | if (!(ELF_ST_VISIBILITY (h->other) | |
3114 | && h->root.type == bfd_link_hash_undefweak)) | |
3115 | htab->elf.srelgot->size += sizeof (Elf32_External_Rela); | |
3116 | } | |
3117 | else | |
3118 | h->got.offset = (bfd_vma) -1; | |
3119 | ||
3120 | if (eh->dyn_relocs == NULL) | |
3121 | return TRUE; | |
3122 | ||
3123 | /* Discard relocs on undefined weak syms with non-default | |
3124 | visibility. */ | |
3125 | if (info->shared || elf32_tic6x_using_dsbt (htab->obfd)) | |
3126 | { | |
3127 | /* We use the pc_count field to hold the number of | |
3128 | R_C6000_DSBT_INDEX relocs. */ | |
3129 | if (htab->params.dsbt_index != 0) | |
3130 | { | |
3131 | struct elf_dyn_relocs **pp; | |
3132 | ||
3133 | for (pp = &eh->dyn_relocs; (p = *pp) != NULL; ) | |
3134 | { | |
3135 | p->count -= p->pc_count; | |
3136 | p->pc_count = 0; | |
3137 | if (p->count == 0) | |
3138 | *pp = p->next; | |
3139 | else | |
3140 | pp = &p->next; | |
3141 | } | |
3142 | } | |
3143 | ||
3144 | if (eh->dyn_relocs != NULL | |
3145 | && h->root.type == bfd_link_hash_undefweak) | |
3146 | { | |
3147 | if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT) | |
3148 | eh->dyn_relocs = NULL; | |
3149 | ||
3150 | /* Make sure undefined weak symbols are output as a dynamic | |
3151 | symbol in PIEs. */ | |
3152 | else if (h->dynindx == -1 | |
3153 | && !h->forced_local) | |
3154 | { | |
3155 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) | |
3156 | return FALSE; | |
3157 | } | |
3158 | } | |
3159 | } | |
3160 | ||
3161 | /* Finally, allocate space. */ | |
3162 | for (p = eh->dyn_relocs; p != NULL; p = p->next) | |
3163 | { | |
3164 | asection *sreloc; | |
3165 | ||
3166 | sreloc = elf_section_data (p->sec)->sreloc; | |
3167 | ||
3168 | BFD_ASSERT (sreloc != NULL); | |
3169 | sreloc->size += p->count * sizeof (Elf32_External_Rela); | |
3170 | } | |
3171 | ||
3172 | return TRUE; | |
3173 | } | |
3174 | ||
3175 | /* Find any dynamic relocs that apply to read-only sections. */ | |
3176 | ||
3177 | static bfd_boolean | |
3178 | elf32_tic6x_readonly_dynrelocs (struct elf_link_hash_entry *h, void *inf) | |
3179 | { | |
3180 | struct elf32_tic6x_link_hash_entry *eh; | |
3181 | struct elf_dyn_relocs *p; | |
3182 | ||
3183 | if (h->root.type == bfd_link_hash_warning) | |
3184 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
3185 | ||
3186 | eh = (struct elf32_tic6x_link_hash_entry *) h; | |
3187 | for (p = eh->dyn_relocs; p != NULL; p = p->next) | |
3188 | { | |
3189 | asection *s = p->sec->output_section; | |
3190 | ||
3191 | if (s != NULL && (s->flags & SEC_READONLY) != 0) | |
3192 | { | |
3193 | struct bfd_link_info *info = (struct bfd_link_info *) inf; | |
3194 | ||
3195 | info->flags |= DF_TEXTREL; | |
3196 | ||
3197 | /* Not an error, just cut short the traversal. */ | |
3198 | return FALSE; | |
3199 | } | |
3200 | } | |
3201 | return TRUE; | |
3202 | } | |
3203 | ||
3204 | /* Set the sizes of the dynamic sections. */ | |
3205 | ||
3206 | static bfd_boolean | |
3207 | elf32_tic6x_size_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info) | |
3208 | { | |
3209 | struct elf32_tic6x_link_hash_table *htab; | |
3210 | bfd *dynobj; | |
3211 | asection *s; | |
3212 | bfd_boolean relocs; | |
3213 | bfd *ibfd; | |
3214 | ||
3215 | htab = elf32_tic6x_hash_table (info); | |
3216 | dynobj = htab->elf.dynobj; | |
3217 | if (dynobj == NULL) | |
3218 | abort (); | |
3219 | ||
3220 | if (htab->elf.dynamic_sections_created) | |
3221 | { | |
3222 | /* Set the contents of the .interp section to the interpreter. */ | |
3223 | if (info->executable) | |
3224 | { | |
3225 | s = bfd_get_section_by_name (dynobj, ".interp"); | |
3226 | if (s == NULL) | |
3227 | abort (); | |
3228 | s->size = sizeof ELF_DYNAMIC_INTERPRETER; | |
3229 | s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER; | |
3230 | } | |
3231 | } | |
3232 | ||
3233 | /* Set up .got offsets for local syms, and space for local dynamic | |
3234 | relocs. */ | |
3235 | for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next) | |
3236 | { | |
3237 | bfd_signed_vma *local_got; | |
3238 | bfd_signed_vma *end_local_got; | |
3239 | char *local_tls_type; | |
3240 | bfd_vma *local_tlsdesc_gotent; | |
3241 | bfd_size_type locsymcount; | |
3242 | Elf_Internal_Shdr *symtab_hdr; | |
3243 | asection *srel; | |
3244 | ||
3245 | for (s = ibfd->sections; s != NULL; s = s->next) | |
3246 | { | |
3247 | struct elf_dyn_relocs *p; | |
3248 | ||
3249 | for (p = ((struct elf_dyn_relocs *) | |
3250 | elf_section_data (s)->local_dynrel); | |
3251 | p != NULL; | |
3252 | p = p->next) | |
3253 | { | |
3254 | if (!bfd_is_abs_section (p->sec) | |
3255 | && bfd_is_abs_section (p->sec->output_section)) | |
3256 | { | |
3257 | /* Input section has been discarded, either because | |
3258 | it is a copy of a linkonce section or due to | |
3259 | linker script /DISCARD/, so we'll be discarding | |
3260 | the relocs too. */ | |
3261 | } | |
3262 | else if (p->count != 0) | |
3263 | { | |
3264 | srel = elf_section_data (p->sec)->sreloc; | |
3265 | srel->size += p->count * sizeof (Elf32_External_Rela); | |
3266 | if ((p->sec->output_section->flags & SEC_READONLY) != 0) | |
3267 | info->flags |= DF_TEXTREL; | |
3268 | } | |
3269 | } | |
3270 | } | |
3271 | ||
3272 | local_got = elf_local_got_refcounts (ibfd); | |
3273 | if (!local_got) | |
3274 | continue; | |
3275 | ||
3276 | symtab_hdr = &elf_symtab_hdr (ibfd); | |
3277 | locsymcount = symtab_hdr->sh_info; | |
3278 | end_local_got = local_got + locsymcount; | |
3279 | s = htab->elf.sgot; | |
3280 | srel = htab->elf.srelgot; | |
3281 | for (; local_got < end_local_got; | |
3282 | ++local_got, ++local_tls_type, ++local_tlsdesc_gotent) | |
3283 | { | |
3284 | if (*local_got > 0) | |
3285 | { | |
3286 | *local_got = s->size; | |
3287 | s->size += 4; | |
3288 | ||
3289 | if (info->shared || elf32_tic6x_using_dsbt (output_bfd)) | |
3290 | { | |
3291 | srel->size += sizeof (Elf32_External_Rela); | |
3292 | } | |
3293 | } | |
3294 | else | |
3295 | *local_got = (bfd_vma) -1; | |
3296 | } | |
3297 | } | |
3298 | ||
3299 | /* Allocate global sym .plt and .got entries, and space for global | |
3300 | sym dynamic relocs. */ | |
3301 | elf_link_hash_traverse (&htab->elf, elf32_tic6x_allocate_dynrelocs, info); | |
3302 | ||
3303 | /* We now have determined the sizes of the various dynamic sections. | |
3304 | Allocate memory for them. */ | |
3305 | relocs = FALSE; | |
3306 | for (s = dynobj->sections; s != NULL; s = s->next) | |
3307 | { | |
3308 | bfd_boolean strip_section = TRUE; | |
3309 | ||
3310 | if ((s->flags & SEC_LINKER_CREATED) == 0) | |
3311 | continue; | |
3312 | ||
3313 | if (s == htab->dsbt) | |
3314 | s->size = 4 * htab->params.dsbt_size; | |
3315 | else if (s == htab->elf.splt | |
3316 | || s == htab->elf.sgot | |
3317 | || s == htab->elf.sgotplt | |
3318 | || s == htab->sdynbss) | |
3319 | { | |
3320 | /* Strip this section if we don't need it; see the | |
3321 | comment below. */ | |
3322 | /* We'd like to strip these sections if they aren't needed, but if | |
3323 | we've exported dynamic symbols from them we must leave them. | |
3324 | It's too late to tell BFD to get rid of the symbols. */ | |
3325 | ||
3326 | if (htab->elf.hplt != NULL) | |
3327 | strip_section = FALSE; | |
3328 | ||
3329 | /* Round up the size of the PLT section to a multiple of 32. */ | |
3330 | if (s == htab->elf.splt && s->size > 0) | |
3331 | s->size = (s->size + 31) & ~(bfd_vma)31; | |
3332 | } | |
3333 | else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela")) | |
3334 | { | |
3335 | if (s->size != 0 | |
3336 | && s != htab->elf.srelplt) | |
3337 | relocs = TRUE; | |
3338 | ||
3339 | /* We use the reloc_count field as a counter if we need | |
3340 | to copy relocs into the output file. */ | |
3341 | s->reloc_count = 0; | |
3342 | } | |
3343 | else | |
3344 | { | |
3345 | /* It's not one of our sections, so don't allocate space. */ | |
3346 | continue; | |
3347 | } | |
3348 | ||
3349 | if (s->size == 0) | |
3350 | { | |
3351 | /* If we don't need this section, strip it from the | |
3352 | output file. This is mostly to handle .rel.bss and | |
3353 | .rel.plt. We must create both sections in | |
3354 | create_dynamic_sections, because they must be created | |
3355 | before the linker maps input sections to output | |
3356 | sections. The linker does that before | |
3357 | adjust_dynamic_symbol is called, and it is that | |
3358 | function which decides whether anything needs to go | |
3359 | into these sections. */ | |
3360 | if (strip_section) | |
3361 | s->flags |= SEC_EXCLUDE; | |
3362 | continue; | |
3363 | } | |
3364 | ||
3365 | if ((s->flags & SEC_HAS_CONTENTS) == 0) | |
3366 | continue; | |
3367 | ||
3368 | /* Allocate memory for the section contents. We use bfd_zalloc | |
3369 | here in case unused entries are not reclaimed before the | |
3370 | section's contents are written out. This should not happen, | |
3371 | but this way if it does, we get a R_C6000_NONE reloc instead | |
3372 | of garbage. */ | |
3373 | s->contents = bfd_zalloc (dynobj, s->size); | |
3374 | if (s->contents == NULL) | |
3375 | return FALSE; | |
3376 | } | |
3377 | ||
3378 | if (htab->elf.dynamic_sections_created) | |
3379 | { | |
3380 | /* Add some entries to the .dynamic section. We fill in the | |
3381 | values later, in elf32_tic6x_finish_dynamic_sections, but we | |
3382 | must add the entries now so that we get the correct size for | |
3383 | the .dynamic section. The DT_DEBUG entry is filled in by the | |
3384 | dynamic linker and used by the debugger. */ | |
3385 | #define add_dynamic_entry(TAG, VAL) \ | |
3386 | _bfd_elf_add_dynamic_entry (info, TAG, VAL) | |
3387 | ||
3388 | if (info->executable) | |
3389 | { | |
3390 | if (!add_dynamic_entry (DT_DEBUG, 0)) | |
3391 | return FALSE; | |
3392 | } | |
3393 | ||
3394 | if (!add_dynamic_entry (DT_C6000_DSBT_BASE, 0) | |
3395 | || !add_dynamic_entry (DT_C6000_DSBT_SIZE, htab->params.dsbt_size) | |
3396 | || !add_dynamic_entry (DT_C6000_DSBT_INDEX, | |
3397 | htab->params.dsbt_index)) | |
3398 | return FALSE; | |
3399 | ||
3400 | if (htab->elf.splt->size != 0) | |
3401 | { | |
3402 | if (!add_dynamic_entry (DT_PLTGOT, 0) | |
3403 | || !add_dynamic_entry (DT_PLTRELSZ, 0) | |
3404 | || !add_dynamic_entry (DT_PLTREL, DT_RELA) | |
3405 | || !add_dynamic_entry (DT_JMPREL, 0)) | |
3406 | return FALSE; | |
3407 | } | |
3408 | ||
3409 | if (relocs) | |
3410 | { | |
3411 | if (!add_dynamic_entry (DT_RELA, 0) | |
3412 | || !add_dynamic_entry (DT_RELASZ, 0) | |
3413 | || !add_dynamic_entry (DT_RELAENT, sizeof (Elf32_External_Rela))) | |
3414 | return FALSE; | |
3415 | ||
3416 | /* If any dynamic relocs apply to a read-only section, | |
3417 | then we need a DT_TEXTREL entry. */ | |
3418 | if ((info->flags & DF_TEXTREL) == 0) | |
3419 | elf_link_hash_traverse (&htab->elf, | |
3420 | elf32_tic6x_readonly_dynrelocs, info); | |
3421 | ||
3422 | if ((info->flags & DF_TEXTREL) != 0) | |
3423 | { | |
3424 | if (!add_dynamic_entry (DT_TEXTREL, 0)) | |
3425 | return FALSE; | |
3426 | } | |
3427 | } | |
3428 | } | |
3429 | #undef add_dynamic_entry | |
3430 | ||
3431 | return TRUE; | |
3432 | } | |
3433 | ||
3434 | /* This function is called after all the input files have been read, | |
3435 | and the input sections have been assigned to output sections. */ | |
3436 | ||
3437 | static bfd_boolean | |
3438 | elf32_tic6x_always_size_sections (bfd *output_bfd, struct bfd_link_info *info) | |
3439 | { | |
3440 | if (elf32_tic6x_using_dsbt (output_bfd) && !info->relocatable) | |
3441 | { | |
3442 | struct elf_link_hash_entry *h; | |
3443 | ||
3444 | /* Force a PT_GNU_STACK segment to be created. */ | |
3445 | if (! elf_tdata (output_bfd)->stack_flags) | |
3446 | elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X; | |
3447 | ||
3448 | /* Define __stacksize if it's not defined yet. */ | |
3449 | h = elf_link_hash_lookup (elf_hash_table (info), "__stacksize", | |
3450 | FALSE, FALSE, FALSE); | |
3451 | if (! h || h->root.type != bfd_link_hash_defined | |
3452 | || h->type != STT_OBJECT | |
3453 | || !h->def_regular) | |
3454 | { | |
3455 | struct bfd_link_hash_entry *bh = NULL; | |
3456 | ||
3457 | if (!(_bfd_generic_link_add_one_symbol | |
3458 | (info, output_bfd, "__stacksize", | |
3459 | BSF_GLOBAL, bfd_abs_section_ptr, DEFAULT_STACK_SIZE, | |
3460 | (const char *) NULL, FALSE, | |
3461 | get_elf_backend_data (output_bfd)->collect, &bh))) | |
3462 | return FALSE; | |
3463 | ||
3464 | h = (struct elf_link_hash_entry *) bh; | |
3465 | h->def_regular = 1; | |
3466 | h->type = STT_OBJECT; | |
3467 | } | |
3468 | } | |
3469 | return TRUE; | |
3470 | } | |
3471 | ||
3472 | static bfd_boolean | |
3473 | elf32_tic6x_modify_program_headers (bfd *output_bfd, | |
3474 | struct bfd_link_info *info) | |
3475 | { | |
3476 | struct elf_obj_tdata *tdata = elf_tdata (output_bfd); | |
3477 | struct elf_segment_map *m; | |
3478 | Elf_Internal_Phdr *p; | |
3479 | ||
3480 | /* objcopy and strip preserve what's already there using | |
3481 | elf32_tic6x_copy_private_bfd_data (). */ | |
3482 | if (! info) | |
3483 | return TRUE; | |
3484 | ||
3485 | for (p = tdata->phdr, m = tdata->segment_map; m != NULL; m = m->next, p++) | |
3486 | if (m->p_type == PT_GNU_STACK) | |
3487 | break; | |
3488 | ||
3489 | if (m) | |
3490 | { | |
3491 | struct elf_link_hash_entry *h; | |
3492 | ||
3493 | /* Obtain the pointer to the __stacksize symbol. */ | |
3494 | h = elf_link_hash_lookup (elf_hash_table (info), "__stacksize", | |
3495 | FALSE, FALSE, FALSE); | |
3496 | if (h) | |
3497 | { | |
3498 | while (h->root.type == bfd_link_hash_indirect | |
3499 | || h->root.type == bfd_link_hash_warning) | |
3500 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
3501 | BFD_ASSERT (h->root.type == bfd_link_hash_defined); | |
3502 | } | |
3503 | ||
3504 | /* Set the header p_memsz from the symbol value. We | |
3505 | intentionally ignore the symbol section. */ | |
3506 | if (h && h->root.type == bfd_link_hash_defined) | |
3507 | p->p_memsz = h->root.u.def.value; | |
3508 | else | |
3509 | p->p_memsz = DEFAULT_STACK_SIZE; | |
3510 | ||
3511 | p->p_align = 8; | |
3512 | } | |
3513 | ||
3514 | return TRUE; | |
3515 | } | |
3516 | ||
3517 | static bfd_boolean | |
3518 | elf32_tic6x_finish_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED, | |
3519 | struct bfd_link_info *info) | |
3520 | { | |
3521 | struct elf32_tic6x_link_hash_table *htab; | |
3522 | bfd *dynobj; | |
3523 | asection *sdyn; | |
3524 | ||
3525 | htab = elf32_tic6x_hash_table (info); | |
3526 | dynobj = htab->elf.dynobj; | |
3527 | sdyn = bfd_get_section_by_name (dynobj, ".dynamic"); | |
3528 | ||
3529 | if (elf_hash_table (info)->dynamic_sections_created) | |
3530 | { | |
3531 | Elf32_External_Dyn * dyncon; | |
3532 | Elf32_External_Dyn * dynconend; | |
3533 | ||
3534 | BFD_ASSERT (sdyn != NULL); | |
3535 | ||
3536 | dyncon = (Elf32_External_Dyn *) sdyn->contents; | |
3537 | dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size); | |
3538 | ||
3539 | for (; dyncon < dynconend; dyncon++) | |
3540 | { | |
3541 | Elf_Internal_Dyn dyn; | |
3542 | asection *s; | |
3543 | ||
3544 | bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn); | |
3545 | ||
3546 | switch (dyn.d_tag) | |
3547 | { | |
3548 | default: | |
3549 | break; | |
3550 | ||
3551 | case DT_C6000_DSBT_BASE: | |
3552 | s = htab->dsbt; | |
3553 | dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset); | |
3554 | break; | |
3555 | ||
3556 | case DT_PLTGOT: | |
3557 | s = htab->elf.sgotplt; | |
3558 | dyn.d_un.d_ptr = s->output_section->vma + s->output_offset; | |
3559 | break; | |
3560 | ||
3561 | case DT_JMPREL: | |
3562 | s = htab->elf.srelplt; | |
3563 | dyn.d_un.d_ptr = s->output_section->vma + s->output_offset; | |
3564 | break; | |
3565 | ||
3566 | case DT_PLTRELSZ: | |
3567 | s = htab->elf.srelplt; | |
3568 | dyn.d_un.d_val = s->size; | |
3569 | break; | |
3570 | } | |
3571 | bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon); | |
3572 | } | |
3573 | ||
3574 | /* Fill in the first entry in the procedure linkage table. */ | |
3575 | if (htab->elf.splt && htab->elf.splt->size > 0) | |
3576 | { | |
3577 | bfd_vma got_offs = (htab->elf.sgotplt->output_section->vma | |
3578 | + htab->elf.sgotplt->output_offset | |
3579 | - htab->dsbt->output_section->vma | |
3580 | - htab->dsbt->output_offset) / 4; | |
3581 | ||
3582 | /* ldw .D2T2 *+b14[$GOT(0)],b2 */ | |
3583 | bfd_put_32 (output_bfd, got_offs << 8 | 0x0100006e, | |
3584 | htab->elf.splt->contents); | |
3585 | /* ldw .D2T2 *+b14[$GOT(4)],b1 */ | |
3586 | bfd_put_32 (output_bfd, (got_offs + 1) << 8 | 0x0080006e, | |
3587 | htab->elf.splt->contents + 4); | |
3588 | /* nop 3 */ | |
3589 | bfd_put_32 (output_bfd, 0x00004000, | |
3590 | htab->elf.splt->contents + 8); | |
3591 | /* b .s2 b2 */ | |
3592 | bfd_put_32 (output_bfd, 0x00080362, | |
3593 | htab->elf.splt->contents + 12); | |
3594 | /* nop 5 */ | |
3595 | bfd_put_32 (output_bfd, 0x00008000, | |
3596 | htab->elf.splt->contents + 16); | |
3597 | ||
3598 | elf_section_data (htab->elf.splt->output_section) | |
3599 | ->this_hdr.sh_entsize = PLT_ENTRY_SIZE; | |
3600 | } | |
3601 | } | |
3602 | ||
3603 | return TRUE; | |
3604 | } | |
3605 | ||
3606 | /* Return address for Ith PLT stub in section PLT, for relocation REL | |
3607 | or (bfd_vma) -1 if it should not be included. */ | |
3608 | ||
3609 | static bfd_vma | |
3610 | elf32_tic6x_plt_sym_val (bfd_vma i, const asection *plt, | |
3611 | const arelent *rel ATTRIBUTE_UNUSED) | |
3612 | { | |
3613 | return plt->vma + (i + 1) * PLT_ENTRY_SIZE; | |
3614 | } | |
3615 | ||
3616 | static int | |
3617 | elf32_tic6x_obj_attrs_arg_type (int tag) | |
59e6276b | 3618 | { |
3cbd1c06 | 3619 | if (tag == Tag_ABI_compatibility) |
59e6276b | 3620 | return ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL; |
87779176 JM |
3621 | else if (tag & 1) |
3622 | return ATTR_TYPE_FLAG_STR_VAL; | |
59e6276b | 3623 | else |
59e6276b JM |
3624 | return ATTR_TYPE_FLAG_INT_VAL; |
3625 | } | |
3626 | ||
87779176 JM |
3627 | static int |
3628 | elf32_tic6x_obj_attrs_order (int num) | |
3629 | { | |
3630 | if (num == LEAST_KNOWN_OBJ_ATTRIBUTE) | |
3631 | return Tag_ABI_conformance; | |
3632 | if ((num - 1) < Tag_ABI_conformance) | |
3633 | return num - 1; | |
3634 | return num; | |
3635 | } | |
3636 | ||
0547accf JM |
3637 | static bfd_boolean |
3638 | elf32_tic6x_obj_attrs_handle_unknown (bfd *abfd, int tag) | |
3639 | { | |
3640 | if ((tag & 127) < 64) | |
3641 | { | |
3642 | _bfd_error_handler | |
3643 | (_("%B: error: unknown mandatory EABI object attribute %d"), | |
3644 | abfd, tag); | |
3645 | bfd_set_error (bfd_error_bad_value); | |
3646 | return FALSE; | |
3647 | } | |
3648 | else | |
3649 | { | |
3650 | _bfd_error_handler | |
3651 | (_("%B: warning: unknown EABI object attribute %d"), | |
3652 | abfd, tag); | |
3653 | return TRUE; | |
3654 | } | |
3655 | } | |
3656 | ||
75fa6dc1 | 3657 | /* Merge the Tag_ISA attribute values ARCH1 and ARCH2 |
59e6276b JM |
3658 | and return the merged value. At present, all merges succeed, so no |
3659 | return value for errors is defined. */ | |
3660 | ||
3661 | int | |
3662 | elf32_tic6x_merge_arch_attributes (int arch1, int arch2) | |
3663 | { | |
3664 | int min_arch, max_arch; | |
3665 | ||
3666 | min_arch = (arch1 < arch2 ? arch1 : arch2); | |
3667 | max_arch = (arch1 > arch2 ? arch1 : arch2); | |
3668 | ||
3669 | /* In most cases, the numerically greatest value is the correct | |
3670 | merged value, but merging C64 and C67 results in C674X. */ | |
75fa6dc1 JM |
3671 | if ((min_arch == C6XABI_Tag_ISA_C67X |
3672 | || min_arch == C6XABI_Tag_ISA_C67XP) | |
3673 | && (max_arch == C6XABI_Tag_ISA_C64X | |
3674 | || max_arch == C6XABI_Tag_ISA_C64XP)) | |
3675 | return C6XABI_Tag_ISA_C674X; | |
59e6276b JM |
3676 | |
3677 | return max_arch; | |
3678 | } | |
3679 | ||
87779176 JM |
3680 | /* Convert a Tag_ABI_array_object_alignment or |
3681 | Tag_ABI_array_object_align_expected tag value TAG to a | |
3682 | corresponding alignment value; return the alignment, or -1 for an | |
3683 | unknown tag value. */ | |
3684 | ||
3685 | static int | |
3686 | elf32_tic6x_tag_to_array_alignment (int tag) | |
3687 | { | |
3688 | switch (tag) | |
3689 | { | |
3690 | case 0: | |
3691 | return 8; | |
3692 | ||
3693 | case 1: | |
3694 | return 4; | |
3695 | ||
3696 | case 2: | |
3697 | return 16; | |
3698 | ||
3699 | default: | |
3700 | return -1; | |
3701 | } | |
3702 | } | |
3703 | ||
3704 | /* Convert a Tag_ABI_array_object_alignment or | |
3705 | Tag_ABI_array_object_align_expected alignment ALIGN to a | |
3706 | corresponding tag value; return the tag value. */ | |
3707 | ||
3708 | static int | |
3709 | elf32_tic6x_array_alignment_to_tag (int align) | |
3710 | { | |
3711 | switch (align) | |
3712 | { | |
3713 | case 8: | |
3714 | return 0; | |
3715 | ||
3716 | case 4: | |
3717 | return 1; | |
3718 | ||
3719 | case 16: | |
3720 | return 2; | |
3721 | ||
3722 | default: | |
3723 | abort (); | |
3724 | } | |
3725 | } | |
3726 | ||
59e6276b JM |
3727 | /* Merge attributes from IBFD and OBFD, returning TRUE if the merge |
3728 | succeeded, FALSE otherwise. */ | |
3729 | ||
3730 | static bfd_boolean | |
3731 | elf32_tic6x_merge_attributes (bfd *ibfd, bfd *obfd) | |
3732 | { | |
87779176 | 3733 | bfd_boolean result = TRUE; |
59e6276b JM |
3734 | obj_attribute *in_attr; |
3735 | obj_attribute *out_attr; | |
87779176 JM |
3736 | int i; |
3737 | int array_align_in, array_align_out, array_expect_in, array_expect_out; | |
59e6276b JM |
3738 | |
3739 | if (!elf_known_obj_attributes_proc (obfd)[0].i) | |
3740 | { | |
3741 | /* This is the first object. Copy the attributes. */ | |
3742 | _bfd_elf_copy_obj_attributes (ibfd, obfd); | |
3743 | ||
3744 | out_attr = elf_known_obj_attributes_proc (obfd); | |
3745 | ||
3746 | /* Use the Tag_null value to indicate the attributes have been | |
3747 | initialized. */ | |
3748 | out_attr[0].i = 1; | |
3749 | ||
3750 | return TRUE; | |
3751 | } | |
3752 | ||
3753 | in_attr = elf_known_obj_attributes_proc (ibfd); | |
3754 | out_attr = elf_known_obj_attributes_proc (obfd); | |
3755 | ||
3756 | /* No specification yet for handling of unknown attributes, so just | |
3757 | ignore them and handle known ones. */ | |
59e6276b | 3758 | |
87779176 JM |
3759 | if (out_attr[Tag_ABI_stack_align_preserved].i |
3760 | < in_attr[Tag_ABI_stack_align_needed].i) | |
3761 | { | |
3762 | _bfd_error_handler | |
3763 | (_("error: %B requires more stack alignment than %B preserves"), | |
3764 | ibfd, obfd); | |
3765 | result = FALSE; | |
3766 | } | |
3767 | if (in_attr[Tag_ABI_stack_align_preserved].i | |
3768 | < out_attr[Tag_ABI_stack_align_needed].i) | |
3769 | { | |
3770 | _bfd_error_handler | |
3771 | (_("error: %B requires more stack alignment than %B preserves"), | |
3772 | obfd, ibfd); | |
3773 | result = FALSE; | |
3774 | } | |
3775 | ||
3776 | array_align_in = elf32_tic6x_tag_to_array_alignment | |
3777 | (in_attr[Tag_ABI_array_object_alignment].i); | |
3778 | if (array_align_in == -1) | |
3779 | { | |
3780 | _bfd_error_handler | |
3781 | (_("error: unknown Tag_ABI_array_object_alignment value in %B"), | |
3782 | ibfd); | |
3783 | result = FALSE; | |
3784 | } | |
3785 | array_align_out = elf32_tic6x_tag_to_array_alignment | |
3786 | (out_attr[Tag_ABI_array_object_alignment].i); | |
3787 | if (array_align_out == -1) | |
3788 | { | |
3789 | _bfd_error_handler | |
3790 | (_("error: unknown Tag_ABI_array_object_alignment value in %B"), | |
3791 | obfd); | |
3792 | result = FALSE; | |
3793 | } | |
3794 | array_expect_in = elf32_tic6x_tag_to_array_alignment | |
3795 | (in_attr[Tag_ABI_array_object_align_expected].i); | |
3796 | if (array_expect_in == -1) | |
3797 | { | |
3798 | _bfd_error_handler | |
3799 | (_("error: unknown Tag_ABI_array_object_align_expected value in %B"), | |
3800 | ibfd); | |
3801 | result = FALSE; | |
3802 | } | |
3803 | array_expect_out = elf32_tic6x_tag_to_array_alignment | |
3804 | (out_attr[Tag_ABI_array_object_align_expected].i); | |
3805 | if (array_expect_out == -1) | |
3806 | { | |
3807 | _bfd_error_handler | |
3808 | (_("error: unknown Tag_ABI_array_object_align_expected value in %B"), | |
3809 | obfd); | |
3810 | result = FALSE; | |
3811 | } | |
3812 | ||
3813 | if (array_align_out < array_expect_in) | |
3814 | { | |
3815 | _bfd_error_handler | |
3816 | (_("error: %B requires more array alignment than %B preserves"), | |
3817 | ibfd, obfd); | |
3818 | result = FALSE; | |
3819 | } | |
3820 | if (array_align_in < array_expect_out) | |
b5593623 JM |
3821 | { |
3822 | _bfd_error_handler | |
87779176 | 3823 | (_("error: %B requires more array alignment than %B preserves"), |
b5593623 | 3824 | obfd, ibfd); |
87779176 | 3825 | result = FALSE; |
b5593623 | 3826 | } |
87779176 JM |
3827 | |
3828 | for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++) | |
3829 | { | |
3830 | switch (i) | |
3831 | { | |
3832 | case Tag_ISA: | |
3833 | out_attr[i].i = elf32_tic6x_merge_arch_attributes (in_attr[i].i, | |
3834 | out_attr[i].i); | |
3835 | break; | |
3836 | ||
3837 | case Tag_ABI_wchar_t: | |
3838 | if (out_attr[i].i == 0) | |
3839 | out_attr[i].i = in_attr[i].i; | |
3840 | if (out_attr[i].i != 0 | |
3841 | && in_attr[i].i != 0 | |
3842 | && out_attr[i].i != in_attr[i].i) | |
3843 | { | |
3844 | _bfd_error_handler | |
3845 | (_("warning: %B and %B differ in wchar_t size"), obfd, ibfd); | |
3846 | } | |
3847 | break; | |
3848 | ||
3849 | case Tag_ABI_stack_align_needed: | |
3850 | if (out_attr[i].i < in_attr[i].i) | |
3851 | out_attr[i].i = in_attr[i].i; | |
3852 | break; | |
3853 | ||
3854 | case Tag_ABI_stack_align_preserved: | |
3855 | if (out_attr[i].i > in_attr[i].i) | |
3856 | out_attr[i].i = in_attr[i].i; | |
3857 | break; | |
3858 | ||
3859 | case Tag_ABI_DSBT: | |
3860 | if (out_attr[i].i != in_attr[i].i) | |
3861 | { | |
3862 | _bfd_error_handler | |
3863 | (_("warning: %B and %B differ in whether code is " | |
3864 | "compiled for DSBT"), | |
3865 | obfd, ibfd); | |
3866 | } | |
3867 | break; | |
3868 | ||
87779176 | 3869 | case Tag_ABI_PIC: |
c6a8f6e0 BS |
3870 | case Tag_ABI_PID: |
3871 | if (out_attr[i].i > in_attr[i].i) | |
3872 | out_attr[i].i = in_attr[i].i; | |
87779176 JM |
3873 | break; |
3874 | ||
3875 | case Tag_ABI_array_object_alignment: | |
3876 | if (array_align_out != -1 | |
3877 | && array_align_in != -1 | |
3878 | && array_align_out > array_align_in) | |
3879 | out_attr[i].i | |
3880 | = elf32_tic6x_array_alignment_to_tag (array_align_in); | |
3881 | break; | |
3882 | ||
3883 | case Tag_ABI_array_object_align_expected: | |
3884 | if (array_expect_out != -1 | |
3885 | && array_expect_in != -1 | |
3886 | && array_expect_out < array_expect_in) | |
3887 | out_attr[i].i | |
3888 | = elf32_tic6x_array_alignment_to_tag (array_expect_in); | |
3889 | break; | |
3890 | ||
3891 | case Tag_ABI_conformance: | |
3892 | /* Merging for this attribute is not specified. As on ARM, | |
3893 | treat a missing attribute as no claim to conform and only | |
3894 | merge identical values. */ | |
3895 | if (out_attr[i].s == NULL | |
3896 | || in_attr[i].s == NULL | |
3897 | || strcmp (out_attr[i].s, | |
3898 | in_attr[i].s) != 0) | |
3899 | out_attr[i].s = NULL; | |
3900 | break; | |
3901 | ||
0547accf JM |
3902 | case Tag_ABI_compatibility: |
3903 | /* Merged in _bfd_elf_merge_object_attributes. */ | |
3904 | break; | |
3905 | ||
87779176 | 3906 | default: |
0547accf JM |
3907 | result |
3908 | = result && _bfd_elf_merge_unknown_attribute_low (ibfd, obfd, i); | |
87779176 JM |
3909 | break; |
3910 | } | |
3911 | ||
3912 | if (in_attr[i].type && !out_attr[i].type) | |
3913 | out_attr[i].type = in_attr[i].type; | |
3914 | } | |
3915 | ||
3cbd1c06 JM |
3916 | /* Merge Tag_ABI_compatibility attributes and any common GNU ones. */ |
3917 | if (!_bfd_elf_merge_object_attributes (ibfd, obfd)) | |
3918 | return FALSE; | |
59e6276b | 3919 | |
0547accf JM |
3920 | result &= _bfd_elf_merge_unknown_attribute_list (ibfd, obfd); |
3921 | ||
87779176 | 3922 | return result; |
59e6276b JM |
3923 | } |
3924 | ||
3925 | static bfd_boolean | |
3926 | elf32_tic6x_merge_private_bfd_data (bfd *ibfd, bfd *obfd) | |
3927 | { | |
3928 | if (!_bfd_generic_verify_endian_match (ibfd, obfd)) | |
3929 | return FALSE; | |
3930 | ||
3931 | if (!elf32_tic6x_merge_attributes (ibfd, obfd)) | |
3932 | return FALSE; | |
3933 | ||
3934 | return TRUE; | |
3935 | } | |
3936 | ||
ac145307 BS |
3937 | static bfd_boolean |
3938 | elf32_tic6x_copy_private_data (bfd * ibfd, bfd * obfd) | |
3939 | { | |
3940 | _bfd_elf_copy_private_bfd_data (ibfd, obfd); | |
3941 | ||
3942 | if (! is_tic6x_elf (ibfd) || ! is_tic6x_elf (obfd)) | |
3943 | return TRUE; | |
3944 | ||
3945 | /* Copy the stack size. */ | |
3946 | if (elf_tdata (ibfd)->phdr && elf_tdata (obfd)->phdr | |
3947 | && elf32_tic6x_using_dsbt (ibfd) && elf32_tic6x_using_dsbt (obfd)) | |
3948 | { | |
3949 | unsigned i; | |
3950 | ||
3951 | for (i = 0; i < elf_elfheader (ibfd)->e_phnum; i++) | |
3952 | if (elf_tdata (ibfd)->phdr[i].p_type == PT_GNU_STACK) | |
3953 | { | |
3954 | Elf_Internal_Phdr *iphdr = &elf_tdata (ibfd)->phdr[i]; | |
3955 | ||
3956 | for (i = 0; i < elf_elfheader (obfd)->e_phnum; i++) | |
3957 | if (elf_tdata (obfd)->phdr[i].p_type == PT_GNU_STACK) | |
3958 | { | |
3959 | memcpy (&elf_tdata (obfd)->phdr[i], iphdr, sizeof (*iphdr)); | |
3960 | ||
3961 | /* Rewrite the phdrs, since we're only called after they | |
3962 | were first written. */ | |
3963 | if (bfd_seek (obfd, | |
3964 | (bfd_signed_vma) get_elf_backend_data (obfd) | |
3965 | ->s->sizeof_ehdr, SEEK_SET) != 0 | |
3966 | || get_elf_backend_data (obfd)->s | |
3967 | ->write_out_phdrs (obfd, elf_tdata (obfd)->phdr, | |
3968 | elf_elfheader (obfd)->e_phnum) != 0) | |
3969 | return FALSE; | |
3970 | break; | |
3971 | } | |
3972 | ||
3973 | break; | |
3974 | } | |
3975 | } | |
3976 | ||
3977 | return TRUE; | |
3978 | } | |
40b36596 JM |
3979 | |
3980 | #define TARGET_LITTLE_SYM bfd_elf32_tic6x_le_vec | |
3981 | #define TARGET_LITTLE_NAME "elf32-tic6x-le" | |
3982 | #define TARGET_BIG_SYM bfd_elf32_tic6x_be_vec | |
3983 | #define TARGET_BIG_NAME "elf32-tic6x-be" | |
3984 | #define ELF_ARCH bfd_arch_tic6x | |
ae95ffa6 | 3985 | #define ELF_TARGET_ID TIC6X_ELF_DATA |
40b36596 | 3986 | #define ELF_MACHINE_CODE EM_TI_C6000 |
ac145307 | 3987 | #define ELF_MAXPAGESIZE 0x1000 |
40b36596 JM |
3988 | #define bfd_elf32_bfd_reloc_type_lookup elf32_tic6x_reloc_type_lookup |
3989 | #define bfd_elf32_bfd_reloc_name_lookup elf32_tic6x_reloc_name_lookup | |
ac145307 | 3990 | #define bfd_elf32_bfd_copy_private_bfd_data elf32_tic6x_copy_private_data |
59e6276b | 3991 | #define bfd_elf32_bfd_merge_private_bfd_data elf32_tic6x_merge_private_bfd_data |
41820509 | 3992 | #define bfd_elf32_mkobject elf32_tic6x_mkobject |
ac145307 BS |
3993 | #define bfd_elf32_bfd_link_hash_table_create elf32_tic6x_link_hash_table_create |
3994 | #define bfd_elf32_bfd_link_hash_table_free elf32_tic6x_link_hash_table_free | |
41820509 | 3995 | #define bfd_elf32_new_section_hook elf32_tic6x_new_section_hook |
40b36596 JM |
3996 | #define elf_backend_can_gc_sections 1 |
3997 | #define elf_backend_default_use_rela_p 1 | |
3998 | #define elf_backend_may_use_rel_p 1 | |
3999 | #define elf_backend_may_use_rela_p 1 | |
59e6276b | 4000 | #define elf_backend_obj_attrs_arg_type elf32_tic6x_obj_attrs_arg_type |
0547accf | 4001 | #define elf_backend_obj_attrs_handle_unknown elf32_tic6x_obj_attrs_handle_unknown |
87779176 | 4002 | #define elf_backend_obj_attrs_order elf32_tic6x_obj_attrs_order |
75fa6dc1 | 4003 | #define elf_backend_obj_attrs_section ".c6xabi.attributes" |
59e6276b JM |
4004 | #define elf_backend_obj_attrs_section_type SHT_C6000_ATTRIBUTES |
4005 | #define elf_backend_obj_attrs_vendor "c6xabi" | |
ac145307 BS |
4006 | #define elf_backend_can_refcount 1 |
4007 | #define elf_backend_want_got_plt 1 | |
4008 | #define elf_backend_want_dynbss 1 | |
4009 | #define elf_backend_plt_readonly 1 | |
40b36596 | 4010 | #define elf_backend_rela_normal 1 |
ac145307 | 4011 | #define elf_backend_got_header_size 8 |
1bce6bd8 | 4012 | #define elf_backend_fake_sections elf32_tic6x_fake_sections |
ac145307 | 4013 | #define elf_backend_gc_sweep_hook elf32_tic6x_gc_sweep_hook |
9cf0e282 | 4014 | #define elf_backend_gc_mark_extra_sections elf32_tic6x_gc_mark_extra_sections |
ac145307 BS |
4015 | #define elf_backend_modify_program_headers \ |
4016 | elf32_tic6x_modify_program_headers | |
4017 | #define elf_backend_create_dynamic_sections \ | |
4018 | elf32_tic6x_create_dynamic_sections | |
4019 | #define elf_backend_adjust_dynamic_symbol \ | |
4020 | elf32_tic6x_adjust_dynamic_symbol | |
4021 | #define elf_backend_check_relocs elf32_tic6x_check_relocs | |
4022 | #define elf_backend_add_symbol_hook elf32_tic6x_add_symbol_hook | |
4023 | #define elf_backend_symbol_processing elf32_tic6x_symbol_processing | |
4024 | #define elf_backend_link_output_symbol_hook \ | |
4025 | elf32_tic6x_link_output_symbol_hook | |
4026 | #define elf_backend_section_from_bfd_section \ | |
4027 | elf32_tic6x_section_from_bfd_section | |
40b36596 | 4028 | #define elf_backend_relocate_section elf32_tic6x_relocate_section |
ac145307 BS |
4029 | #define elf_backend_finish_dynamic_symbol \ |
4030 | elf32_tic6x_finish_dynamic_symbol | |
4031 | #define elf_backend_always_size_sections \ | |
4032 | elf32_tic6x_always_size_sections | |
4033 | #define elf_backend_size_dynamic_sections \ | |
4034 | elf32_tic6x_size_dynamic_sections | |
4035 | #define elf_backend_finish_dynamic_sections \ | |
4036 | elf32_tic6x_finish_dynamic_sections | |
c6a8f6e0 BS |
4037 | #define bfd_elf32_bfd_final_link \ |
4038 | elf32_tic6x_final_link | |
40b36596 | 4039 | #define elf_info_to_howto elf32_tic6x_info_to_howto |
41820509 | 4040 | #define elf_info_to_howto_rel elf32_tic6x_info_to_howto_rel |
40b36596 | 4041 | |
ac145307 BS |
4042 | #undef elf_backend_omit_section_dynsym |
4043 | #define elf_backend_omit_section_dynsym elf32_tic6x_link_omit_section_dynsym | |
4044 | #define elf_backend_plt_sym_val elf32_tic6x_plt_sym_val | |
4045 | ||
4046 | ||
40b36596 | 4047 | #include "elf32-target.h" |