* remote.c (remote_pid_to_str): Use xsnprintf instead of snprintf.
[deliverable/binutils-gdb.git] / bfd / elf32-m32r.c
CommitLineData
252b5132 1/* M32R-specific support for 32-bit ELF.
3eb128b2 2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
7898deda 3 Free Software Foundation, Inc.
252b5132 4
88845958 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
88845958
NC
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
252b5132 11
88845958
NC
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
252b5132 16
88845958
NC
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
3e110533 19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132
RH
20
21#include "bfd.h"
22#include "sysdep.h"
23#include "libbfd.h"
24#include "elf-bfd.h"
25#include "elf/m32r.h"
26
252b5132
RH
27#define NOP_INSN 0x7000
28#define MAKE_PARALLEL(insn) ((insn) | 0x8000)
29
30/* Use REL instead of RELA to save space.
31 This only saves space in libraries and object files, but perhaps
32 relocs will be put in ROM? All in all though, REL relocs are a pain
33 to work with. */
6edf0760 34/* #define USE_REL 1
acf8aed4
AM
35
36#ifndef USE_REL
37#define USE_REL 0
6edf0760 38#endif */
47b0e7ad 39/* Use RELA. But use REL to link old objects for backwords compatibility. */
6edf0760
NC
40
41/* Functions for the M32R ELF linker. */
41978308 42
6edf0760
NC
43/* The name of the dynamic interpreter. This is put in the .interp
44 section. */
41978308 45
6edf0760 46#define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
41978308 47
6edf0760 48/* The nop opcode we use. */
41978308 49
6edf0760 50#define M32R_NOP 0x7000f000
41978308 51
6edf0760 52#define PLT_EMPTY 0x10101010 /* RIE -> RIE */
41978308 53
6edf0760
NC
54/* The size in bytes of an entry in the procedure linkage table. */
55
56#define PLT_ENTRY_SIZE 20
57#define PLT_HEADER_SIZE 20
41978308 58
6edf0760
NC
59/* The first one entries in a procedure linkage table are reserved,
60 and the initial contents are unimportant (we zero them out).
61 Subsequent entries look like this. */
41978308 62
6edf0760
NC
63#define PLT0_ENTRY_WORD0 0xd6c00000 /* seth r6, #high(.got+4) */
64#define PLT0_ENTRY_WORD1 0x86e60000 /* or3 r6, r6, #low(.got)+4) */
65#define PLT0_ENTRY_WORD2 0x24e626c6 /* ld r4, @r6+ -> ld r6, @r6 */
66#define PLT0_ENTRY_WORD3 0x1fc6f000 /* jmp r6 || pnop */
67#define PLT0_ENTRY_WORD4 PLT_EMPTY /* RIE -> RIE */
41978308 68
6edf0760
NC
69#define PLT0_PIC_ENTRY_WORD0 0xa4cc0004 /* ld r4, @(4,r12) */
70#define PLT0_PIC_ENTRY_WORD1 0xa6cc0008 /* ld r6, @(8,r12) */
71#define PLT0_PIC_ENTRY_WORD2 0x1fc6f000 /* jmp r6 || nop */
72#define PLT0_PIC_ENTRY_WORD3 PLT_EMPTY /* RIE -> RIE */
73#define PLT0_PIC_ENTRY_WORD4 PLT_EMPTY /* RIE -> RIE */
41978308 74
6edf0760
NC
75#define PLT_ENTRY_WORD0 0xe6000000 /* ld24 r6, .name_in_GOT */
76#define PLT_ENTRY_WORD1 0x06acf000 /* add r6, r12 || nop */
77#define PLT_ENTRY_WORD0b 0xd6c00000 /* seth r6, #high(.name_in_GOT) */
78#define PLT_ENTRY_WORD1b 0x86e60000 /* or3 r6, r6, #low(.name_in_GOT) */
79#define PLT_ENTRY_WORD2 0x26c61fc6 /* ld r6, @r6 -> jmp r6 */
80#define PLT_ENTRY_WORD3 0xe5000000 /* ld24 r5, $offset */
81#define PLT_ENTRY_WORD4 0xff000000 /* bra .plt0. */
82
252b5132 83
47b0e7ad 84/* Utility to actually perform an R_M32R_10_PCREL reloc. */
252b5132 85
47b0e7ad
NC
86static bfd_reloc_status_type
87m32r_elf_do_10_pcrel_reloc (bfd *abfd,
88 reloc_howto_type *howto,
89 asection *input_section,
90 bfd_byte *data,
91 bfd_vma offset,
92 asection *symbol_section ATTRIBUTE_UNUSED,
93 bfd_vma symbol_value,
94 bfd_vma addend)
95{
96 bfd_signed_vma relocation;
97 unsigned long x;
98 bfd_reloc_status_type status;
252b5132 99
47b0e7ad
NC
100 /* Sanity check the address (offset in section). */
101 if (offset > bfd_get_section_limit (abfd, input_section))
102 return bfd_reloc_outofrange;
252b5132 103
47b0e7ad
NC
104 relocation = symbol_value + addend;
105 /* Make it pc relative. */
106 relocation -= (input_section->output_section->vma
107 + input_section->output_offset);
108 /* These jumps mask off the lower two bits of the current address
109 before doing pcrel calculations. */
110 relocation -= (offset & -(bfd_vma) 4);
252b5132 111
47b0e7ad
NC
112 if (relocation < -0x200 || relocation > 0x1ff)
113 status = bfd_reloc_overflow;
114 else
115 status = bfd_reloc_ok;
252b5132 116
47b0e7ad
NC
117 x = bfd_get_16 (abfd, data + offset);
118 relocation >>= howto->rightshift;
119 relocation <<= howto->bitpos;
120 x = (x & ~howto->dst_mask) | (((x & howto->src_mask) + relocation) & howto->dst_mask);
121 bfd_put_16 (abfd, (bfd_vma) x, data + offset);
252b5132 122
47b0e7ad
NC
123 return status;
124}
252b5132 125
47b0e7ad 126/* Handle the R_M32R_10_PCREL reloc. */
252b5132 127
47b0e7ad
NC
128static bfd_reloc_status_type
129m32r_elf_10_pcrel_reloc (bfd * abfd,
130 arelent * reloc_entry,
131 asymbol * symbol,
132 void * data,
133 asection * input_section,
134 bfd * output_bfd,
135 char ** error_message ATTRIBUTE_UNUSED)
136{
137 /* This part is from bfd_elf_generic_reloc. */
138 if (output_bfd != NULL
139 && (symbol->flags & BSF_SECTION_SYM) == 0
140 && (! reloc_entry->howto->partial_inplace
141 || reloc_entry->addend == 0))
142 {
143 reloc_entry->address += input_section->output_offset;
144 return bfd_reloc_ok;
145 }
252b5132 146
47b0e7ad
NC
147 if (output_bfd != NULL)
148 /* FIXME: See bfd_perform_relocation. Is this right? */
149 return bfd_reloc_continue;
252b5132 150
47b0e7ad
NC
151 return m32r_elf_do_10_pcrel_reloc (abfd, reloc_entry->howto,
152 input_section,
153 data, reloc_entry->address,
154 symbol->section,
155 (symbol->value
156 + symbol->section->output_section->vma
157 + symbol->section->output_offset),
158 reloc_entry->addend);
159}
252b5132 160
47b0e7ad
NC
161/* Do generic partial_inplace relocation.
162 This is a local replacement for bfd_elf_generic_reloc. */
252b5132 163
47b0e7ad
NC
164static bfd_reloc_status_type
165m32r_elf_generic_reloc (bfd *input_bfd,
166 arelent *reloc_entry,
167 asymbol *symbol,
168 void * data,
169 asection *input_section,
170 bfd *output_bfd,
171 char **error_message ATTRIBUTE_UNUSED)
172{
173 bfd_reloc_status_type ret;
174 bfd_vma relocation;
175 bfd_byte *inplace_address;
252b5132 176
47b0e7ad
NC
177 /* This part is from bfd_elf_generic_reloc.
178 If we're relocating, and this an external symbol, we don't want
179 to change anything. */
180 if (output_bfd != NULL
181 && (symbol->flags & BSF_SECTION_SYM) == 0
182 && reloc_entry->addend == 0)
183 {
184 reloc_entry->address += input_section->output_offset;
185 return bfd_reloc_ok;
186 }
6edf0760 187
47b0e7ad
NC
188 /* Now do the reloc in the usual way.
189 ??? It would be nice to call bfd_elf_generic_reloc here,
190 but we have partial_inplace set. bfd_elf_generic_reloc will
191 pass the handling back to bfd_install_relocation which will install
192 a section relative addend which is wrong. */
6edf0760 193
47b0e7ad
NC
194 /* Sanity check the address (offset in section). */
195 if (reloc_entry->address > bfd_get_section_limit (input_bfd, input_section))
196 return bfd_reloc_outofrange;
6edf0760 197
47b0e7ad
NC
198 ret = bfd_reloc_ok;
199 if (bfd_is_und_section (symbol->section)
200 && output_bfd == NULL)
201 ret = bfd_reloc_undefined;
6edf0760 202
47b0e7ad
NC
203 if (bfd_is_com_section (symbol->section)
204 || output_bfd != NULL)
205 relocation = 0;
206 else
207 relocation = symbol->value;
6edf0760 208
47b0e7ad
NC
209 /* Only do this for a final link. */
210 if (output_bfd == NULL)
211 {
212 relocation += symbol->section->output_section->vma;
213 relocation += symbol->section->output_offset;
214 }
6edf0760 215
47b0e7ad
NC
216 relocation += reloc_entry->addend;
217 inplace_address = (bfd_byte *) data + reloc_entry->address;
6edf0760 218
47b0e7ad
NC
219#define DOIT(x) \
220 x = ( (x & ~reloc_entry->howto->dst_mask) | \
221 (((x & reloc_entry->howto->src_mask) + relocation) & \
222 reloc_entry->howto->dst_mask))
6edf0760 223
47b0e7ad
NC
224 switch (reloc_entry->howto->size)
225 {
226 case 1:
227 {
228 short x = bfd_get_16 (input_bfd, inplace_address);
229 DOIT (x);
230 bfd_put_16 (input_bfd, (bfd_vma) x, inplace_address);
231 }
232 break;
233 case 2:
234 {
235 unsigned long x = bfd_get_32 (input_bfd, inplace_address);
236 DOIT (x);
237 bfd_put_32 (input_bfd, (bfd_vma)x , inplace_address);
238 }
239 break;
240 default:
241 BFD_ASSERT (0);
242 }
6edf0760 243
47b0e7ad
NC
244 if (output_bfd != NULL)
245 reloc_entry->address += input_section->output_offset;
6edf0760 246
47b0e7ad
NC
247 return ret;
248}
6edf0760 249
47b0e7ad
NC
250/* Handle the R_M32R_SDA16 reloc.
251 This reloc is used to compute the address of objects in the small data area
252 and to perform loads and stores from that area.
253 The lower 16 bits are sign extended and added to the register specified
254 in the instruction, which is assumed to point to _SDA_BASE_. */
6edf0760 255
47b0e7ad
NC
256static bfd_reloc_status_type
257m32r_elf_sda16_reloc (bfd *abfd ATTRIBUTE_UNUSED,
258 arelent *reloc_entry,
259 asymbol *symbol,
260 void * data ATTRIBUTE_UNUSED,
261 asection *input_section,
262 bfd *output_bfd,
263 char **error_message ATTRIBUTE_UNUSED)
264{
265 /* This part is from bfd_elf_generic_reloc. */
266 if (output_bfd != NULL
267 && (symbol->flags & BSF_SECTION_SYM) == 0
268 && (! reloc_entry->howto->partial_inplace
269 || reloc_entry->addend == 0))
270 {
271 reloc_entry->address += input_section->output_offset;
272 return bfd_reloc_ok;
273 }
6edf0760 274
47b0e7ad
NC
275 if (output_bfd != NULL)
276 /* FIXME: See bfd_perform_relocation. Is this right? */
277 return bfd_reloc_continue;
6edf0760 278
47b0e7ad
NC
279 /* FIXME: not sure what to do here yet. But then again, the linker
280 may never call us. */
281 abort ();
282}
6edf0760 283
47b0e7ad
NC
284\f
285/* Handle the R_M32R_HI16_[SU]LO relocs.
286 HI16_SLO is for the add3 and load/store with displacement instructions.
287 HI16_ULO is for the or3 instruction.
288 For R_M32R_HI16_SLO, the lower 16 bits are sign extended when added to
289 the high 16 bytes so if the lower 16 bits are negative (bit 15 == 1) then
290 we must add one to the high 16 bytes (which will get subtracted off when
291 the low 16 bits are added).
292 These relocs have to be done in combination with an R_M32R_LO16 reloc
293 because there is a carry from the LO16 to the HI16. Here we just save
294 the information we need; we do the actual relocation when we see the LO16.
295 This code is copied from the elf32-mips.c. We also support an arbitrary
296 number of HI16 relocs to be associated with a single LO16 reloc. The
297 assembler sorts the relocs to ensure each HI16 immediately precedes its
298 LO16. However if there are multiple copies, the assembler may not find
299 the real LO16 so it picks the first one it finds. */
6edf0760 300
47b0e7ad
NC
301struct m32r_hi16
302{
303 struct m32r_hi16 *next;
304 bfd_byte *addr;
305 bfd_vma addend;
306};
307
308/* FIXME: This should not be a static variable. */
309
310static struct m32r_hi16 *m32r_hi16_list;
311
312static bfd_reloc_status_type
313m32r_elf_hi16_reloc (bfd *abfd ATTRIBUTE_UNUSED,
314 arelent *reloc_entry,
315 asymbol *symbol,
316 void * data,
317 asection *input_section,
318 bfd *output_bfd,
319 char **error_message ATTRIBUTE_UNUSED)
320{
321 bfd_reloc_status_type ret;
322 bfd_vma relocation;
323 struct m32r_hi16 *n;
324
325 /* This part is from bfd_elf_generic_reloc.
326 If we're relocating, and this an external symbol, we don't want
327 to change anything. */
328 if (output_bfd != NULL
329 && (symbol->flags & BSF_SECTION_SYM) == 0
330 && reloc_entry->addend == 0)
331 {
332 reloc_entry->address += input_section->output_offset;
333 return bfd_reloc_ok;
334 }
335
336 /* Sanity check the address (offset in section). */
337 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
338 return bfd_reloc_outofrange;
339
340 ret = bfd_reloc_ok;
341 if (bfd_is_und_section (symbol->section)
342 && output_bfd == NULL)
343 ret = bfd_reloc_undefined;
344
345 if (bfd_is_com_section (symbol->section))
346 relocation = 0;
347 else
348 relocation = symbol->value;
349
350 relocation += symbol->section->output_section->vma;
351 relocation += symbol->section->output_offset;
352 relocation += reloc_entry->addend;
353
354 /* Save the information, and let LO16 do the actual relocation. */
355 n = bfd_malloc ((bfd_size_type) sizeof *n);
356 if (n == NULL)
357 return bfd_reloc_outofrange;
358 n->addr = (bfd_byte *) data + reloc_entry->address;
359 n->addend = relocation;
360 n->next = m32r_hi16_list;
361 m32r_hi16_list = n;
362
363 if (output_bfd != NULL)
364 reloc_entry->address += input_section->output_offset;
365
366 return ret;
367}
368
369/* Handle an M32R ELF HI16 reloc. */
370
371static void
372m32r_elf_relocate_hi16 (bfd *input_bfd,
373 int type,
374 Elf_Internal_Rela *relhi,
375 Elf_Internal_Rela *rello,
376 bfd_byte *contents,
377 bfd_vma addend)
378{
379 unsigned long insn;
380 bfd_vma addlo;
381
382 insn = bfd_get_32 (input_bfd, contents + relhi->r_offset);
383
384 addlo = bfd_get_32 (input_bfd, contents + rello->r_offset);
385 if (type == R_M32R_HI16_SLO)
386 addlo = ((addlo & 0xffff) ^ 0x8000) - 0x8000;
387 else
388 addlo &= 0xffff;
389
390 addend += ((insn & 0xffff) << 16) + addlo;
391
392 /* Reaccount for sign extension of low part. */
393 if (type == R_M32R_HI16_SLO
394 && (addend & 0x8000) != 0)
395 addend += 0x10000;
396
397 bfd_put_32 (input_bfd,
398 (insn & 0xffff0000) | ((addend >> 16) & 0xffff),
399 contents + relhi->r_offset);
400}
401
402/* Do an R_M32R_LO16 relocation. This is a straightforward 16 bit
403 inplace relocation; this function exists in order to do the
404 R_M32R_HI16_[SU]LO relocation described above. */
405
406static bfd_reloc_status_type
407m32r_elf_lo16_reloc (bfd *input_bfd,
408 arelent *reloc_entry,
409 asymbol *symbol,
410 void * data,
411 asection *input_section,
412 bfd *output_bfd,
413 char **error_message)
414{
415 /* This part is from bfd_elf_generic_reloc.
416 If we're relocating, and this an external symbol, we don't want
417 to change anything. */
418 if (output_bfd != NULL
419 && (symbol->flags & BSF_SECTION_SYM) == 0
420 && reloc_entry->addend == 0)
421 {
422 reloc_entry->address += input_section->output_offset;
423 return bfd_reloc_ok;
424 }
425
426 if (m32r_hi16_list != NULL)
427 {
428 struct m32r_hi16 *l;
429
430 l = m32r_hi16_list;
431 while (l != NULL)
432 {
433 unsigned long insn;
434 unsigned long val;
435 unsigned long vallo;
436 struct m32r_hi16 *next;
437
438 /* Do the HI16 relocation. Note that we actually don't need
439 to know anything about the LO16 itself, except where to
440 find the low 16 bits of the addend needed by the LO16. */
441 insn = bfd_get_32 (input_bfd, l->addr);
442 vallo = ((bfd_get_32 (input_bfd, (bfd_byte *) data + reloc_entry->address)
443 & 0xffff) ^ 0x8000) - 0x8000;
444 val = ((insn & 0xffff) << 16) + vallo;
445 val += l->addend;
446
447 /* Reaccount for sign extension of low part. */
448 if ((val & 0x8000) != 0)
449 val += 0x10000;
450
451 insn = (insn &~ (bfd_vma) 0xffff) | ((val >> 16) & 0xffff);
452 bfd_put_32 (input_bfd, (bfd_vma) insn, l->addr);
453
454 next = l->next;
455 free (l);
456 l = next;
457 }
6edf0760 458
47b0e7ad
NC
459 m32r_hi16_list = NULL;
460 }
461
462 /* Now do the LO16 reloc in the usual way.
463 ??? It would be nice to call bfd_elf_generic_reloc here,
464 but we have partial_inplace set. bfd_elf_generic_reloc will
465 pass the handling back to bfd_install_relocation which will install
466 a section relative addend which is wrong. */
467 return m32r_elf_generic_reloc (input_bfd, reloc_entry, symbol, data,
468 input_section, output_bfd, error_message);
469}
470
471\f
472static reloc_howto_type m32r_elf_howto_table[] =
473{
474 /* This reloc does nothing. */
475 HOWTO (R_M32R_NONE, /* type */
6edf0760
NC
476 0, /* rightshift */
477 2, /* size (0 = byte, 1 = short, 2 = long) */
478 32, /* bitsize */
479 FALSE, /* pc_relative */
480 0, /* bitpos */
481 complain_overflow_bitfield, /* complain_on_overflow */
47b0e7ad
NC
482 bfd_elf_generic_reloc, /* special_function */
483 "R_M32R_NONE", /* name */
6edf0760 484 FALSE, /* partial_inplace */
47b0e7ad
NC
485 0, /* src_mask */
486 0, /* dst_mask */
6edf0760
NC
487 FALSE), /* pcrel_offset */
488
47b0e7ad
NC
489 /* A 16 bit absolute relocation. */
490 HOWTO (R_M32R_16, /* type */
6edf0760 491 0, /* rightshift */
47b0e7ad
NC
492 1, /* size (0 = byte, 1 = short, 2 = long) */
493 16, /* bitsize */
6edf0760
NC
494 FALSE, /* pc_relative */
495 0, /* bitpos */
496 complain_overflow_bitfield, /* complain_on_overflow */
47b0e7ad
NC
497 m32r_elf_generic_reloc,/* special_function */
498 "R_M32R_16", /* name */
499 TRUE, /* partial_inplace */
500 0xffff, /* src_mask */
501 0xffff, /* dst_mask */
6edf0760
NC
502 FALSE), /* pcrel_offset */
503
47b0e7ad
NC
504 /* A 32 bit absolute relocation. */
505 HOWTO (R_M32R_32, /* type */
6edf0760
NC
506 0, /* rightshift */
507 2, /* size (0 = byte, 1 = short, 2 = long) */
508 32, /* bitsize */
509 FALSE, /* pc_relative */
510 0, /* bitpos */
511 complain_overflow_bitfield, /* complain_on_overflow */
47b0e7ad
NC
512 m32r_elf_generic_reloc,/* special_function */
513 "R_M32R_32", /* name */
514 TRUE, /* partial_inplace */
6edf0760
NC
515 0xffffffff, /* src_mask */
516 0xffffffff, /* dst_mask */
517 FALSE), /* pcrel_offset */
518
47b0e7ad
NC
519 /* A 24 bit address. */
520 HOWTO (R_M32R_24, /* type */
6edf0760
NC
521 0, /* rightshift */
522 2, /* size (0 = byte, 1 = short, 2 = long) */
097f809a 523 24, /* bitsize */
6edf0760
NC
524 FALSE, /* pc_relative */
525 0, /* bitpos */
47b0e7ad
NC
526 complain_overflow_unsigned, /* complain_on_overflow */
527 m32r_elf_generic_reloc,/* special_function */
528 "R_M32R_24", /* name */
529 TRUE, /* partial_inplace */
097f809a
NC
530 0xffffff, /* src_mask */
531 0xffffff, /* dst_mask */
6edf0760
NC
532 FALSE), /* pcrel_offset */
533
47b0e7ad
NC
534 /* An PC Relative 10-bit relocation, shifted by 2.
535 This reloc is complicated because relocations are relative to pc & -4.
536 i.e. branches in the right insn slot use the address of the left insn
537 slot for pc. */
538 /* ??? It's not clear whether this should have partial_inplace set or not.
539 Branch relaxing in the assembler can store the addend in the insn,
540 and if bfd_install_relocation gets called the addend may get added
541 again. */
542 HOWTO (R_M32R_10_PCREL, /* type */
543 2, /* rightshift */
544 1, /* size (0 = byte, 1 = short, 2 = long) */
545 10, /* bitsize */
546 TRUE, /* pc_relative */
547 0, /* bitpos */
548 complain_overflow_signed, /* complain_on_overflow */
549 m32r_elf_10_pcrel_reloc, /* special_function */
550 "R_M32R_10_PCREL", /* name */
551 FALSE, /* partial_inplace */
552 0xff, /* src_mask */
553 0xff, /* dst_mask */
6edf0760
NC
554 TRUE), /* pcrel_offset */
555
47b0e7ad
NC
556 /* A relative 18 bit relocation, right shifted by 2. */
557 HOWTO (R_M32R_18_PCREL, /* type */
558 2, /* rightshift */
6edf0760
NC
559 2, /* size (0 = byte, 1 = short, 2 = long) */
560 16, /* bitsize */
47b0e7ad 561 TRUE, /* pc_relative */
6edf0760 562 0, /* bitpos */
47b0e7ad 563 complain_overflow_signed, /* complain_on_overflow */
6edf0760 564 bfd_elf_generic_reloc, /* special_function */
47b0e7ad 565 "R_M32R_18_PCREL", /* name */
6edf0760 566 FALSE, /* partial_inplace */
47b0e7ad
NC
567 0xffff, /* src_mask */
568 0xffff, /* dst_mask */
569 TRUE), /* pcrel_offset */
6edf0760 570
47b0e7ad
NC
571 /* A relative 26 bit relocation, right shifted by 2. */
572 /* ??? It's not clear whether this should have partial_inplace set or not.
573 Branch relaxing in the assembler can store the addend in the insn,
574 and if bfd_install_relocation gets called the addend may get added
575 again. */
576 HOWTO (R_M32R_26_PCREL, /* type */
577 2, /* rightshift */
6edf0760 578 2, /* size (0 = byte, 1 = short, 2 = long) */
47b0e7ad
NC
579 26, /* bitsize */
580 TRUE, /* pc_relative */
6edf0760 581 0, /* bitpos */
47b0e7ad 582 complain_overflow_signed, /* complain_on_overflow */
6edf0760 583 bfd_elf_generic_reloc, /* special_function */
47b0e7ad 584 "R_M32R_26_PCREL", /* name */
6edf0760 585 FALSE, /* partial_inplace */
47b0e7ad
NC
586 0xffffff, /* src_mask */
587 0xffffff, /* dst_mask */
588 TRUE), /* pcrel_offset */
6edf0760 589
47b0e7ad
NC
590 /* High 16 bits of address when lower 16 is or'd in. */
591 HOWTO (R_M32R_HI16_ULO, /* type */
592 16, /* rightshift */
6edf0760
NC
593 2, /* size (0 = byte, 1 = short, 2 = long) */
594 16, /* bitsize */
595 FALSE, /* pc_relative */
596 0, /* bitpos */
597 complain_overflow_dont, /* complain_on_overflow */
47b0e7ad
NC
598 m32r_elf_hi16_reloc, /* special_function */
599 "R_M32R_HI16_ULO", /* name */
600 TRUE, /* partial_inplace */
6edf0760
NC
601 0x0000ffff, /* src_mask */
602 0x0000ffff, /* dst_mask */
603 FALSE), /* pcrel_offset */
604
47b0e7ad
NC
605 /* High 16 bits of address when lower 16 is added in. */
606 HOWTO (R_M32R_HI16_SLO, /* type */
6edf0760
NC
607 16, /* rightshift */
608 2, /* size (0 = byte, 1 = short, 2 = long) */
609 16, /* bitsize */
610 FALSE, /* pc_relative */
611 0, /* bitpos */
612 complain_overflow_dont, /* complain_on_overflow */
47b0e7ad
NC
613 m32r_elf_hi16_reloc, /* special_function */
614 "R_M32R_HI16_SLO", /* name */
615 TRUE, /* partial_inplace */
6edf0760
NC
616 0x0000ffff, /* src_mask */
617 0x0000ffff, /* dst_mask */
47b0e7ad 618 FALSE), /* pcrel_offset */
6edf0760 619
47b0e7ad
NC
620 /* Lower 16 bits of address. */
621 HOWTO (R_M32R_LO16, /* type */
622 0, /* rightshift */
6edf0760
NC
623 2, /* size (0 = byte, 1 = short, 2 = long) */
624 16, /* bitsize */
625 FALSE, /* pc_relative */
626 0, /* bitpos */
627 complain_overflow_dont, /* complain_on_overflow */
47b0e7ad
NC
628 m32r_elf_lo16_reloc, /* special_function */
629 "R_M32R_LO16", /* name */
630 TRUE, /* partial_inplace */
6edf0760
NC
631 0x0000ffff, /* src_mask */
632 0x0000ffff, /* dst_mask */
47b0e7ad 633 FALSE), /* pcrel_offset */
6edf0760 634
47b0e7ad
NC
635 /* Small data area 16 bits offset. */
636 HOWTO (R_M32R_SDA16, /* type */
6edf0760
NC
637 0, /* rightshift */
638 2, /* size (0 = byte, 1 = short, 2 = long) */
639 16, /* bitsize */
640 FALSE, /* pc_relative */
641 0, /* bitpos */
47b0e7ad
NC
642 complain_overflow_signed, /* complain_on_overflow */
643 m32r_elf_sda16_reloc, /* special_function */
644 "R_M32R_SDA16", /* name */
645 TRUE, /* partial_inplace */ /* FIXME: correct? */
6edf0760
NC
646 0x0000ffff, /* src_mask */
647 0x0000ffff, /* dst_mask */
47b0e7ad 648 FALSE), /* pcrel_offset */
097f809a 649
47b0e7ad
NC
650 /* GNU extension to record C++ vtable hierarchy. */
651 HOWTO (R_M32R_GNU_VTINHERIT, /* type */
652 0, /* rightshift */
653 2, /* size (0 = byte, 1 = short, 2 = long) */
654 0, /* bitsize */
655 FALSE, /* pc_relative */
656 0, /* bitpos */
657 complain_overflow_dont, /* complain_on_overflow */
658 NULL, /* special_function */
659 "R_M32R_GNU_VTINHERIT", /* name */
660 FALSE, /* partial_inplace */
661 0, /* src_mask */
662 0, /* dst_mask */
663 FALSE), /* pcrel_offset */
664
665 /* GNU extension to record C++ vtable member usage. */
666 HOWTO (R_M32R_GNU_VTENTRY, /* type */
667 0, /* rightshift */
668 2, /* size (0 = byte, 1 = short, 2 = long) */
669 0, /* bitsize */
670 FALSE, /* pc_relative */
671 0, /* bitpos */
672 complain_overflow_dont, /* complain_on_overflow */
673 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
674 "R_M32R_GNU_VTENTRY", /* name */
675 FALSE, /* partial_inplace */
676 0, /* src_mask */
677 0, /* dst_mask */
678 FALSE), /* pcrel_offset */
679
680 EMPTY_HOWTO (13),
681 EMPTY_HOWTO (14),
682 EMPTY_HOWTO (15),
683 EMPTY_HOWTO (16),
684 EMPTY_HOWTO (17),
685 EMPTY_HOWTO (18),
686 EMPTY_HOWTO (19),
687 EMPTY_HOWTO (20),
688 EMPTY_HOWTO (21),
689 EMPTY_HOWTO (22),
690 EMPTY_HOWTO (23),
691 EMPTY_HOWTO (24),
692 EMPTY_HOWTO (25),
693 EMPTY_HOWTO (26),
694 EMPTY_HOWTO (27),
695 EMPTY_HOWTO (28),
696 EMPTY_HOWTO (29),
697 EMPTY_HOWTO (30),
698 EMPTY_HOWTO (31),
699 EMPTY_HOWTO (32),
700
701 /* A 16 bit absolute relocation. */
702 HOWTO (R_M32R_16_RELA, /* type */
703 0, /* rightshift */
704 1, /* size (0 = byte, 1 = short, 2 = long) */
097f809a
NC
705 16, /* bitsize */
706 FALSE, /* pc_relative */
707 0, /* bitpos */
47b0e7ad 708 complain_overflow_bitfield, /* complain_on_overflow */
097f809a 709 bfd_elf_generic_reloc, /* special_function */
47b0e7ad 710 "R_M32R_16_RELA", /* name */
097f809a 711 FALSE, /* partial_inplace */
47b0e7ad
NC
712 0xffff, /* src_mask */
713 0xffff, /* dst_mask */
097f809a
NC
714 FALSE), /* pcrel_offset */
715
47b0e7ad
NC
716 /* A 32 bit absolute relocation. */
717 HOWTO (R_M32R_32_RELA, /* type */
718 0, /* rightshift */
097f809a 719 2, /* size (0 = byte, 1 = short, 2 = long) */
47b0e7ad 720 32, /* bitsize */
097f809a
NC
721 FALSE, /* pc_relative */
722 0, /* bitpos */
47b0e7ad
NC
723 complain_overflow_bitfield, /* complain_on_overflow */
724 bfd_elf_generic_reloc,/* special_function */
725 "R_M32R_32_RELA", /* name */
097f809a 726 FALSE, /* partial_inplace */
47b0e7ad
NC
727 0xffffffff, /* src_mask */
728 0xffffffff, /* dst_mask */
097f809a
NC
729 FALSE), /* pcrel_offset */
730
47b0e7ad
NC
731 /* A 24 bit address. */
732 HOWTO (R_M32R_24_RELA, /* type */
097f809a
NC
733 0, /* rightshift */
734 2, /* size (0 = byte, 1 = short, 2 = long) */
47b0e7ad 735 24, /* bitsize */
097f809a
NC
736 FALSE, /* pc_relative */
737 0, /* bitpos */
47b0e7ad
NC
738 complain_overflow_unsigned, /* complain_on_overflow */
739 bfd_elf_generic_reloc,/* special_function */
740 "R_M32R_24_RELA", /* name */
097f809a 741 FALSE, /* partial_inplace */
47b0e7ad
NC
742 0xffffff, /* src_mask */
743 0xffffff, /* dst_mask */
097f809a 744 FALSE), /* pcrel_offset */
252b5132 745
47b0e7ad
NC
746 HOWTO (R_M32R_10_PCREL_RELA, /* type */
747 2, /* rightshift */
748 1, /* size (0 = byte, 1 = short, 2 = long) */
749 10, /* bitsize */
750 TRUE, /* pc_relative */
751 0, /* bitpos */
752 complain_overflow_signed, /* complain_on_overflow */
753 m32r_elf_10_pcrel_reloc, /* special_function */
754 "R_M32R_10_PCREL_RELA",/* name */
755 FALSE, /* partial_inplace */
756 0xff, /* src_mask */
757 0xff, /* dst_mask */
758 TRUE), /* pcrel_offset */
252b5132 759
47b0e7ad
NC
760 /* A relative 18 bit relocation, right shifted by 2. */
761 HOWTO (R_M32R_18_PCREL_RELA, /* type */
762 2, /* rightshift */
763 2, /* size (0 = byte, 1 = short, 2 = long) */
764 16, /* bitsize */
765 TRUE, /* pc_relative */
766 0, /* bitpos */
767 complain_overflow_signed, /* complain_on_overflow */
768 bfd_elf_generic_reloc, /* special_function */
769 "R_M32R_18_PCREL_RELA",/* name */
770 FALSE, /* partial_inplace */
771 0xffff, /* src_mask */
772 0xffff, /* dst_mask */
773 TRUE), /* pcrel_offset */
252b5132 774
47b0e7ad
NC
775 /* A relative 26 bit relocation, right shifted by 2. */
776 HOWTO (R_M32R_26_PCREL_RELA, /* type */
777 2, /* rightshift */
778 2, /* size (0 = byte, 1 = short, 2 = long) */
779 26, /* bitsize */
780 TRUE, /* pc_relative */
781 0, /* bitpos */
782 complain_overflow_signed, /* complain_on_overflow */
783 bfd_elf_generic_reloc, /* special_function */
784 "R_M32R_26_PCREL_RELA",/* name */
785 FALSE, /* partial_inplace */
786 0xffffff, /* src_mask */
787 0xffffff, /* dst_mask */
788 TRUE), /* pcrel_offset */
4c72e23a 789
47b0e7ad
NC
790 /* High 16 bits of address when lower 16 is or'd in. */
791 HOWTO (R_M32R_HI16_ULO_RELA, /* type */
792 16, /* rightshift */
793 2, /* size (0 = byte, 1 = short, 2 = long) */
794 16, /* bitsize */
795 FALSE, /* pc_relative */
796 0, /* bitpos */
797 complain_overflow_dont, /* complain_on_overflow */
798 bfd_elf_generic_reloc, /* special_function */
799 "R_M32R_HI16_ULO_RELA",/* name */
800 FALSE, /* partial_inplace */
801 0x0000ffff, /* src_mask */
802 0x0000ffff, /* dst_mask */
803 FALSE), /* pcrel_offset */
252b5132 804
47b0e7ad
NC
805 /* High 16 bits of address when lower 16 is added in. */
806 HOWTO (R_M32R_HI16_SLO_RELA, /* type */
807 16, /* rightshift */
808 2, /* size (0 = byte, 1 = short, 2 = long) */
809 16, /* bitsize */
810 FALSE, /* pc_relative */
811 0, /* bitpos */
812 complain_overflow_dont, /* complain_on_overflow */
813 bfd_elf_generic_reloc, /* special_function */
814 "R_M32R_HI16_SLO_RELA",/* name */
815 FALSE, /* partial_inplace */
816 0x0000ffff, /* src_mask */
817 0x0000ffff, /* dst_mask */
818 FALSE), /* pcrel_offset */
252b5132 819
47b0e7ad
NC
820 /* Lower 16 bits of address. */
821 HOWTO (R_M32R_LO16_RELA, /* type */
822 0, /* rightshift */
823 2, /* size (0 = byte, 1 = short, 2 = long) */
824 16, /* bitsize */
825 FALSE, /* pc_relative */
826 0, /* bitpos */
827 complain_overflow_dont, /* complain_on_overflow */
828 bfd_elf_generic_reloc, /* special_function */
829 "R_M32R_LO16_RELA", /* name */
830 FALSE, /* partial_inplace */
831 0x0000ffff, /* src_mask */
832 0x0000ffff, /* dst_mask */
833 FALSE), /* pcrel_offset */
252b5132 834
47b0e7ad
NC
835 /* Small data area 16 bits offset. */
836 HOWTO (R_M32R_SDA16_RELA, /* type */
837 0, /* rightshift */
838 2, /* size (0 = byte, 1 = short, 2 = long) */
839 16, /* bitsize */
840 FALSE, /* pc_relative */
841 0, /* bitpos */
842 complain_overflow_signed, /* complain_on_overflow */
843 bfd_elf_generic_reloc, /* special_function */
844 "R_M32R_SDA16_RELA", /* name */
845 TRUE, /* partial_inplace */ /* FIXME: correct? */
846 0x0000ffff, /* src_mask */
847 0x0000ffff, /* dst_mask */
848 FALSE), /* pcrel_offset */
252b5132 849
47b0e7ad
NC
850 /* GNU extension to record C++ vtable hierarchy. */
851 HOWTO (R_M32R_RELA_GNU_VTINHERIT, /* type */
852 0, /* rightshift */
853 2, /* size (0 = byte, 1 = short, 2 = long) */
854 0, /* bitsize */
855 FALSE, /* pc_relative */
856 0, /* bitpos */
857 complain_overflow_dont, /* complain_on_overflow */
858 NULL, /* special_function */
859 "R_M32R_RELA_GNU_VTINHERIT", /* name */
860 FALSE, /* partial_inplace */
861 0, /* src_mask */
862 0, /* dst_mask */
863 FALSE), /* pcrel_offset */
252b5132 864
47b0e7ad
NC
865 /* GNU extension to record C++ vtable member usage. */
866 HOWTO (R_M32R_RELA_GNU_VTENTRY, /* type */
867 0, /* rightshift */
868 2, /* size (0 = byte, 1 = short, 2 = long) */
869 0, /* bitsize */
870 FALSE, /* pc_relative */
871 0, /* bitpos */
872 complain_overflow_dont, /* complain_on_overflow */
873 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
874 "R_M32R_RELA_GNU_VTENTRY", /* name */
875 FALSE, /* partial_inplace */
876 0, /* src_mask */
877 0, /* dst_mask */
878 FALSE), /* pcrel_offset */
252b5132 879
47b0e7ad
NC
880 EMPTY_HOWTO (45),
881 EMPTY_HOWTO (46),
882 EMPTY_HOWTO (47),
252b5132 883
47b0e7ad
NC
884 /* Like R_M32R_24, but referring to the GOT table entry for
885 the symbol. */
886 HOWTO (R_M32R_GOT24, /* type */
887 0, /* rightshift */
888 2, /* size (0 = byte, 1 = short, 2 = long) */
889 24, /* bitsize */
890 FALSE, /* pc_relative */
891 0, /* bitpos */
892 complain_overflow_unsigned, /* complain_on_overflow */
893 bfd_elf_generic_reloc, /* special_function */
894 "R_M32R_GOT24", /* name */
895 FALSE, /* partial_inplace */
896 0xffffff, /* src_mask */
897 0xffffff, /* dst_mask */
898 FALSE), /* pcrel_offset */
8b125cde 899
47b0e7ad
NC
900 /* Like R_M32R_PCREL, but referring to the procedure linkage table
901 entry for the symbol. */
902 HOWTO (R_M32R_26_PLTREL, /* type */
903 2, /* rightshift */
904 2, /* size (0 = byte, 1 = short, 2 = long) */
905 24, /* bitsize */
906 TRUE, /* pc_relative */
907 0, /* bitpos */
908 complain_overflow_signed, /* complain_on_overflow */
909 bfd_elf_generic_reloc, /* special_function */
910 "R_M32R_26_PLTREL", /* name */
911 FALSE, /* partial_inplace */
912 0xffffff, /* src_mask */
913 0xffffff, /* dst_mask */
914 TRUE), /* pcrel_offset */
8b125cde 915
47b0e7ad
NC
916 /* This is used only by the dynamic linker. The symbol should exist
917 both in the object being run and in some shared library. The
918 dynamic linker copies the data addressed by the symbol from the
919 shared library into the object, because the object being
920 run has to have the data at some particular address. */
921 HOWTO (R_M32R_COPY, /* type */
922 0, /* rightshift */
923 2, /* size (0 = byte, 1 = short, 2 = long) */
924 32, /* bitsize */
925 FALSE, /* pc_relative */
926 0, /* bitpos */
927 complain_overflow_bitfield, /* complain_on_overflow */
928 bfd_elf_generic_reloc, /* special_function */
929 "R_M32R_COPY", /* name */
930 FALSE, /* partial_inplace */
931 0xffffffff, /* src_mask */
932 0xffffffff, /* dst_mask */
933 FALSE), /* pcrel_offset */
8b125cde 934
47b0e7ad
NC
935 /* Like R_M32R_24, but used when setting global offset table
936 entries. */
937 HOWTO (R_M32R_GLOB_DAT, /* type */
938 0, /* rightshift */
939 2, /* size (0 = byte, 1 = short, 2 = long) */
940 32, /* bitsize */
941 FALSE, /* pc_relative */
942 0, /* bitpos */
943 complain_overflow_bitfield, /* complain_on_overflow */
944 bfd_elf_generic_reloc, /* special_function */
945 "R_M32R_GLOB_DAT", /* name */
946 FALSE, /* partial_inplace */
947 0xffffffff, /* src_mask */
948 0xffffffff, /* dst_mask */
949 FALSE), /* pcrel_offset */
8b125cde 950
47b0e7ad
NC
951 /* Marks a procedure linkage table entry for a symbol. */
952 HOWTO (R_M32R_JMP_SLOT, /* type */
953 0, /* rightshift */
954 2, /* size (0 = byte, 1 = short, 2 = long) */
955 32, /* bitsize */
956 FALSE, /* pc_relative */
957 0, /* bitpos */
958 complain_overflow_bitfield, /* complain_on_overflow */
959 bfd_elf_generic_reloc, /* special_function */
960 "R_M32R_JMP_SLOT", /* name */
961 FALSE, /* partial_inplace */
962 0xffffffff, /* src_mask */
963 0xffffffff, /* dst_mask */
964 FALSE), /* pcrel_offset */
4c72e23a 965
47b0e7ad
NC
966 /* Used only by the dynamic linker. When the object is run, this
967 longword is set to the load address of the object, plus the
968 addend. */
969 HOWTO (R_M32R_RELATIVE, /* type */
970 0, /* rightshift */
971 2, /* size (0 = byte, 1 = short, 2 = long) */
972 32, /* bitsize */
973 FALSE, /* pc_relative */
974 0, /* bitpos */
975 complain_overflow_bitfield, /* complain_on_overflow */
976 bfd_elf_generic_reloc, /* special_function */
977 "R_M32R_RELATIVE", /* name */
978 FALSE, /* partial_inplace */
979 0xffffffff, /* src_mask */
980 0xffffffff, /* dst_mask */
981 FALSE), /* pcrel_offset */
4c72e23a 982
47b0e7ad
NC
983 HOWTO (R_M32R_GOTOFF, /* type */
984 0, /* rightshift */
985 2, /* size (0 = byte, 1 = short, 2 = long) */
986 24, /* bitsize */
987 FALSE, /* pc_relative */
988 0, /* bitpos */
989 complain_overflow_bitfield, /* complain_on_overflow */
990 bfd_elf_generic_reloc, /* special_function */
991 "R_M32R_GOTOFF", /* name */
992 FALSE, /* partial_inplace */
993 0xffffff, /* src_mask */
994 0xffffff, /* dst_mask */
995 FALSE), /* pcrel_offset */
4c72e23a 996
47b0e7ad
NC
997 /* An PC Relative 24-bit relocation used when setting PIC offset
998 table register. */
999 HOWTO (R_M32R_GOTPC24, /* type */
1000 0, /* rightshift */
1001 2, /* size (0 = byte, 1 = short, 2 = long) */
1002 24, /* bitsize */
1003 TRUE, /* pc_relative */
1004 0, /* bitpos */
1005 complain_overflow_unsigned, /* complain_on_overflow */
1006 bfd_elf_generic_reloc, /* special_function */
1007 "R_M32R_GOTPC24", /* name */
1008 FALSE, /* partial_inplace */
1009 0xffffff, /* src_mask */
1010 0xffffff, /* dst_mask */
1011 TRUE), /* pcrel_offset */
4c72e23a 1012
47b0e7ad
NC
1013 /* Like R_M32R_HI16_ULO, but referring to the GOT table entry for
1014 the symbol. */
1015 HOWTO (R_M32R_GOT16_HI_ULO, /* type */
1016 16, /* rightshift */
1017 2, /* size (0 = byte, 1 = short, 2 = long) */
1018 16, /* bitsize */
1019 FALSE, /* pc_relative */
1020 0, /* bitpos */
1021 complain_overflow_dont, /* complain_on_overflow */
1022 bfd_elf_generic_reloc, /* special_function */
1023 "R_M32R_GOT16_HI_ULO", /* name */
1024 FALSE, /* partial_inplace */
1025 0x0000ffff, /* src_mask */
1026 0x0000ffff, /* dst_mask */
1027 FALSE), /* pcrel_offset */
4c72e23a 1028
47b0e7ad
NC
1029 /* Like R_M32R_HI16_SLO, but referring to the GOT table entry for
1030 the symbol. */
1031 HOWTO (R_M32R_GOT16_HI_SLO, /* type */
1032 16, /* rightshift */
1033 2, /* size (0 = byte, 1 = short, 2 = long) */
1034 16, /* bitsize */
1035 FALSE, /* pc_relative */
1036 0, /* bitpos */
1037 complain_overflow_dont, /* complain_on_overflow */
1038 bfd_elf_generic_reloc, /* special_function */
1039 "R_M32R_GOT16_HI_SLO", /* name */
1040 FALSE, /* partial_inplace */
1041 0x0000ffff, /* src_mask */
1042 0x0000ffff, /* dst_mask */
1043 FALSE), /* pcrel_offset */
8b125cde 1044
47b0e7ad
NC
1045 /* Like R_M32R_LO16, but referring to the GOT table entry for
1046 the symbol. */
1047 HOWTO (R_M32R_GOT16_LO, /* type */
1048 0, /* rightshift */
1049 2, /* size (0 = byte, 1 = short, 2 = long) */
1050 16, /* bitsize */
1051 FALSE, /* pc_relative */
1052 0, /* bitpos */
1053 complain_overflow_dont, /* complain_on_overflow */
1054 bfd_elf_generic_reloc, /* special_function */
1055 "R_M32R_GOT16_LO", /* name */
1056 FALSE, /* partial_inplace */
1057 0x0000ffff, /* src_mask */
1058 0x0000ffff, /* dst_mask */
1059 FALSE), /* pcrel_offset */
4c72e23a 1060
47b0e7ad
NC
1061 /* An PC Relative relocation used when setting PIC offset table register.
1062 Like R_M32R_HI16_ULO, but referring to the GOT table entry for
1063 the symbol. */
1064 HOWTO (R_M32R_GOTPC_HI_ULO, /* type */
1065 16, /* rightshift */
1066 2, /* size (0 = byte, 1 = short, 2 = long) */
1067 16, /* bitsize */
1068 FALSE, /* pc_relative */
1069 0, /* bitpos */
1070 complain_overflow_dont, /* complain_on_overflow */
1071 bfd_elf_generic_reloc, /* special_function */
1072 "R_M32R_GOTPC_HI_ULO", /* name */
1073 FALSE, /* partial_inplace */
1074 0x0000ffff, /* src_mask */
1075 0x0000ffff, /* dst_mask */
1076 TRUE), /* pcrel_offset */
4c72e23a 1077
47b0e7ad
NC
1078 /* An PC Relative relocation used when setting PIC offset table register.
1079 Like R_M32R_HI16_SLO, but referring to the GOT table entry for
1080 the symbol. */
1081 HOWTO (R_M32R_GOTPC_HI_SLO, /* type */
1082 16, /* rightshift */
1083 2, /* size (0 = byte, 1 = short, 2 = long) */
1084 16, /* bitsize */
1085 FALSE, /* pc_relative */
1086 0, /* bitpos */
1087 complain_overflow_dont, /* complain_on_overflow */
1088 bfd_elf_generic_reloc, /* special_function */
1089 "R_M32R_GOTPC_HI_SLO", /* name */
1090 FALSE, /* partial_inplace */
1091 0x0000ffff, /* src_mask */
1092 0x0000ffff, /* dst_mask */
1093 TRUE), /* pcrel_offset */
4c72e23a 1094
47b0e7ad
NC
1095 /* An PC Relative relocation used when setting PIC offset table register.
1096 Like R_M32R_LO16, but referring to the GOT table entry for
1097 the symbol. */
1098 HOWTO (R_M32R_GOTPC_LO, /* type */
1099 0, /* rightshift */
1100 2, /* size (0 = byte, 1 = short, 2 = long) */
1101 16, /* bitsize */
1102 FALSE, /* pc_relative */
1103 0, /* bitpos */
1104 complain_overflow_dont, /* complain_on_overflow */
1105 bfd_elf_generic_reloc, /* special_function */
1106 "R_M32R_GOTPC_LO", /* name */
1107 FALSE, /* partial_inplace */
1108 0x0000ffff, /* src_mask */
1109 0x0000ffff, /* dst_mask */
1110 TRUE), /* pcrel_offset */
252b5132 1111
47b0e7ad
NC
1112 HOWTO (R_M32R_GOTOFF_HI_ULO, /* type */
1113 16, /* rightshift */
1114 2, /* size (0 = byte, 1 = short, 2 = long) */
1115 16, /* bitsize */
1116 FALSE, /* pc_relative */
1117 0, /* bitpos */
1118 complain_overflow_dont, /* complain_on_overflow */
1119 bfd_elf_generic_reloc, /* special_function */
1120 "R_M32R_GOTOFF_HI_ULO",/* name */
1121 FALSE, /* partial_inplace */
1122 0x0000ffff, /* src_mask */
1123 0x0000ffff, /* dst_mask */
1124 FALSE), /* pcrel_offset */
252b5132 1125
47b0e7ad
NC
1126 HOWTO (R_M32R_GOTOFF_HI_SLO, /* type */
1127 16, /* rightshift */
1128 2, /* size (0 = byte, 1 = short, 2 = long) */
1129 16, /* bitsize */
1130 FALSE, /* pc_relative */
1131 0, /* bitpos */
1132 complain_overflow_dont, /* complain_on_overflow */
1133 bfd_elf_generic_reloc, /* special_function */
1134 "R_M32R_GOTOFF_HI_SLO",/* name */
1135 FALSE, /* partial_inplace */
1136 0x0000ffff, /* src_mask */
1137 0x0000ffff, /* dst_mask */
1138 FALSE), /* pcrel_offset */
252b5132 1139
47b0e7ad
NC
1140 HOWTO (R_M32R_GOTOFF_LO, /* type */
1141 0, /* rightshift */
1142 2, /* size (0 = byte, 1 = short, 2 = long) */
1143 16, /* bitsize */
1144 FALSE, /* pc_relative */
1145 0, /* bitpos */
1146 complain_overflow_dont, /* complain_on_overflow */
1147 bfd_elf_generic_reloc, /* special_function */
1148 "R_M32R_GOTOFF_LO", /* name */
1149 FALSE, /* partial_inplace */
1150 0x0000ffff, /* src_mask */
1151 0x0000ffff, /* dst_mask */
1152 FALSE), /* pcrel_offset */
1153};
252b5132 1154
252b5132
RH
1155/* Map BFD reloc types to M32R ELF reloc types. */
1156
1157struct m32r_reloc_map
1158{
1159 bfd_reloc_code_real_type bfd_reloc_val;
1160 unsigned char elf_reloc_val;
1161};
1162
d5b2f13b 1163#ifdef USE_M32R_OLD_RELOC
6edf0760 1164static const struct m32r_reloc_map m32r_reloc_map_old[] =
252b5132
RH
1165{
1166 { BFD_RELOC_NONE, R_M32R_NONE },
1167 { BFD_RELOC_16, R_M32R_16 },
1168 { BFD_RELOC_32, R_M32R_32 },
1169 { BFD_RELOC_M32R_24, R_M32R_24 },
1170 { BFD_RELOC_M32R_10_PCREL, R_M32R_10_PCREL },
1171 { BFD_RELOC_M32R_18_PCREL, R_M32R_18_PCREL },
1172 { BFD_RELOC_M32R_26_PCREL, R_M32R_26_PCREL },
1173 { BFD_RELOC_M32R_HI16_ULO, R_M32R_HI16_ULO },
1174 { BFD_RELOC_M32R_HI16_SLO, R_M32R_HI16_SLO },
1175 { BFD_RELOC_M32R_LO16, R_M32R_LO16 },
1176 { BFD_RELOC_M32R_SDA16, R_M32R_SDA16 },
1177 { BFD_RELOC_VTABLE_INHERIT, R_M32R_GNU_VTINHERIT },
1178 { BFD_RELOC_VTABLE_ENTRY, R_M32R_GNU_VTENTRY },
1179};
d5b2f13b 1180#else
6edf0760
NC
1181static const struct m32r_reloc_map m32r_reloc_map[] =
1182{
1183 { BFD_RELOC_NONE, R_M32R_NONE },
1184 { BFD_RELOC_16, R_M32R_16_RELA },
1185 { BFD_RELOC_32, R_M32R_32_RELA },
1186 { BFD_RELOC_M32R_24, R_M32R_24_RELA },
1187 { BFD_RELOC_M32R_10_PCREL, R_M32R_10_PCREL_RELA },
1188 { BFD_RELOC_M32R_18_PCREL, R_M32R_18_PCREL_RELA },
1189 { BFD_RELOC_M32R_26_PCREL, R_M32R_26_PCREL_RELA },
1190 { BFD_RELOC_M32R_HI16_ULO, R_M32R_HI16_ULO_RELA },
1191 { BFD_RELOC_M32R_HI16_SLO, R_M32R_HI16_SLO_RELA },
1192 { BFD_RELOC_M32R_LO16, R_M32R_LO16_RELA },
1193 { BFD_RELOC_M32R_SDA16, R_M32R_SDA16_RELA },
1194 { BFD_RELOC_VTABLE_INHERIT, R_M32R_RELA_GNU_VTINHERIT },
1195 { BFD_RELOC_VTABLE_ENTRY, R_M32R_RELA_GNU_VTENTRY },
41978308 1196
6edf0760
NC
1197 { BFD_RELOC_M32R_GOT24, R_M32R_GOT24 },
1198 { BFD_RELOC_M32R_26_PLTREL, R_M32R_26_PLTREL },
1199 { BFD_RELOC_M32R_COPY, R_M32R_COPY },
1200 { BFD_RELOC_M32R_GLOB_DAT, R_M32R_GLOB_DAT },
1201 { BFD_RELOC_M32R_JMP_SLOT, R_M32R_JMP_SLOT },
1202 { BFD_RELOC_M32R_RELATIVE, R_M32R_RELATIVE },
1203 { BFD_RELOC_M32R_GOTOFF, R_M32R_GOTOFF },
1204 { BFD_RELOC_M32R_GOTPC24, R_M32R_GOTPC24 },
1205 { BFD_RELOC_M32R_GOT16_HI_ULO, R_M32R_GOT16_HI_ULO },
1206 { BFD_RELOC_M32R_GOT16_HI_SLO, R_M32R_GOT16_HI_SLO },
1207 { BFD_RELOC_M32R_GOT16_LO, R_M32R_GOT16_LO },
1208 { BFD_RELOC_M32R_GOTPC_HI_ULO, R_M32R_GOTPC_HI_ULO },
1209 { BFD_RELOC_M32R_GOTPC_HI_SLO, R_M32R_GOTPC_HI_SLO },
1210 { BFD_RELOC_M32R_GOTPC_LO, R_M32R_GOTPC_LO },
097f809a
NC
1211 { BFD_RELOC_M32R_GOTOFF_HI_ULO, R_M32R_GOTOFF_HI_ULO },
1212 { BFD_RELOC_M32R_GOTOFF_HI_SLO, R_M32R_GOTOFF_HI_SLO },
1213 { BFD_RELOC_M32R_GOTOFF_LO, R_M32R_GOTOFF_LO },
6edf0760 1214};
d5b2f13b 1215#endif
6edf0760 1216
252b5132 1217static reloc_howto_type *
47b0e7ad
NC
1218bfd_elf32_bfd_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1219 bfd_reloc_code_real_type code)
252b5132
RH
1220{
1221 unsigned int i;
1222
6edf0760
NC
1223#ifdef USE_M32R_OLD_RELOC
1224 for (i = 0;
1225 i < sizeof (m32r_reloc_map_old) / sizeof (struct m32r_reloc_map);
1226 i++)
47b0e7ad
NC
1227 if (m32r_reloc_map_old[i].bfd_reloc_val == code)
1228 return &m32r_elf_howto_table[m32r_reloc_map_old[i].elf_reloc_val];
1229
6edf0760
NC
1230#else /* ! USE_M32R_OLD_RELOC */
1231
252b5132
RH
1232 for (i = 0;
1233 i < sizeof (m32r_reloc_map) / sizeof (struct m32r_reloc_map);
1234 i++)
47b0e7ad
NC
1235 if (m32r_reloc_map[i].bfd_reloc_val == code)
1236 return &m32r_elf_howto_table[m32r_reloc_map[i].elf_reloc_val];
6edf0760 1237#endif
252b5132
RH
1238
1239 return NULL;
1240}
1241
1242/* Set the howto pointer for an M32R ELF reloc. */
1243
1244static void
47b0e7ad
NC
1245m32r_info_to_howto_rel (bfd *abfd ATTRIBUTE_UNUSED,
1246 arelent *cache_ptr,
1247 Elf_Internal_Rela *dst)
252b5132
RH
1248{
1249 unsigned int r_type;
1250
1251 r_type = ELF32_R_TYPE (dst->r_info);
f12123c0 1252 BFD_ASSERT (ELF32_R_TYPE(dst->r_info) <= (unsigned int) R_M32R_GNU_VTENTRY);
252b5132
RH
1253 cache_ptr->howto = &m32r_elf_howto_table[r_type];
1254}
6edf0760
NC
1255
1256static void
47b0e7ad
NC
1257m32r_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
1258 arelent *cache_ptr,
1259 Elf_Internal_Rela *dst)
6edf0760
NC
1260{
1261 BFD_ASSERT ((ELF32_R_TYPE(dst->r_info) == (unsigned int) R_M32R_NONE)
1262 || ((ELF32_R_TYPE(dst->r_info) > (unsigned int) R_M32R_GNU_VTENTRY)
1263 && (ELF32_R_TYPE(dst->r_info) < (unsigned int) R_M32R_max)));
1264 cache_ptr->howto = &m32r_elf_howto_table[ELF32_R_TYPE(dst->r_info)];
1265}
1266
252b5132
RH
1267\f
1268/* Given a BFD section, try to locate the corresponding ELF section
1269 index. */
1270
47b0e7ad
NC
1271static bfd_boolean
1272_bfd_m32r_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
1273 asection *sec,
1274 int *retval)
252b5132
RH
1275{
1276 if (strcmp (bfd_get_section_name (abfd, sec), ".scommon") == 0)
1277 {
1278 *retval = SHN_M32R_SCOMMON;
b34976b6 1279 return TRUE;
252b5132 1280 }
b34976b6 1281 return FALSE;
252b5132
RH
1282}
1283
1284/* M32R ELF uses two common sections. One is the usual one, and the other
1285 is for small objects. All the small objects are kept together, and then
1286 referenced via one register, which yields faster assembler code. It is
1287 up to the compiler to emit an instruction to load the register with
1288 _SDA_BASE. This is what we use for the small common section. This
1289 approach is copied from elf32-mips.c. */
1290static asection m32r_elf_scom_section;
1291static asymbol m32r_elf_scom_symbol;
1292static asymbol *m32r_elf_scom_symbol_ptr;
1293
1294/* Handle the special M32R section numbers that a symbol may use. */
1295
47b0e7ad
NC
1296static void
1297_bfd_m32r_elf_symbol_processing (bfd *abfd ATTRIBUTE_UNUSED, asymbol *asym)
252b5132 1298{
47b0e7ad 1299 elf_symbol_type *elfsym = (elf_symbol_type *) asym;
252b5132
RH
1300
1301 switch (elfsym->internal_elf_sym.st_shndx)
1302 {
1303 case SHN_M32R_SCOMMON:
1304 if (m32r_elf_scom_section.name == NULL)
1305 {
1306 /* Initialize the small common section. */
1307 m32r_elf_scom_section.name = ".scommon";
1308 m32r_elf_scom_section.flags = SEC_IS_COMMON;
1309 m32r_elf_scom_section.output_section = &m32r_elf_scom_section;
1310 m32r_elf_scom_section.symbol = &m32r_elf_scom_symbol;
1311 m32r_elf_scom_section.symbol_ptr_ptr = &m32r_elf_scom_symbol_ptr;
1312 m32r_elf_scom_symbol.name = ".scommon";
1313 m32r_elf_scom_symbol.flags = BSF_SECTION_SYM;
1314 m32r_elf_scom_symbol.section = &m32r_elf_scom_section;
1315 m32r_elf_scom_symbol_ptr = &m32r_elf_scom_symbol;
1316 }
1317 asym->section = &m32r_elf_scom_section;
1318 asym->value = elfsym->internal_elf_sym.st_size;
1319 break;
1320 }
1321}
1322
1323/* Hook called by the linker routine which adds symbols from an object
1324 file. We must handle the special M32R section numbers here.
1325 We also keep watching for whether we need to create the sdata special
1326 linker sections. */
1327
b34976b6 1328static bfd_boolean
47b0e7ad
NC
1329m32r_elf_add_symbol_hook (bfd *abfd,
1330 struct bfd_link_info *info,
1331 Elf_Internal_Sym *sym,
1332 const char **namep,
1333 flagword *flagsp ATTRIBUTE_UNUSED,
1334 asection **secp,
1335 bfd_vma *valp)
252b5132 1336{
1049f94e 1337 if (! info->relocatable
252b5132 1338 && (*namep)[0] == '_' && (*namep)[1] == 'S'
4ab82700 1339 && strcmp (*namep, "_SDA_BASE_") == 0
0eddce27 1340 && is_elf_hash_table (info->hash))
252b5132
RH
1341 {
1342 /* This is simpler than using _bfd_elf_create_linker_section
1343 (our needs are simpler than ppc's needs). Also
1344 _bfd_elf_create_linker_section currently has a bug where if a .sdata
1345 section already exists a new one is created that follows it which
1346 screws of _SDA_BASE_ address calcs because output_offset != 0. */
1347 struct elf_link_hash_entry *h;
14a793b2 1348 struct bfd_link_hash_entry *bh;
252b5132
RH
1349 asection *s = bfd_get_section_by_name (abfd, ".sdata");
1350
6edf0760 1351 /* The following code was cobbled from elf32-ppc.c and elflink.c. */
6edf0760
NC
1352 if (s == NULL)
1353 {
1354 flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
1355 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
1356
3496cb2a
L
1357 s = bfd_make_section_anyway_with_flags (abfd, ".sdata",
1358 flags);
6edf0760
NC
1359 if (s == NULL)
1360 return FALSE;
6edf0760
NC
1361 bfd_set_section_alignment (abfd, s, 2);
1362 }
1363
1364 bh = bfd_link_hash_lookup (info->hash, "_SDA_BASE_",
1365 FALSE, FALSE, FALSE);
1366
1367 if ((bh == NULL || bh->type == bfd_link_hash_undefined)
1368 && !(_bfd_generic_link_add_one_symbol (info,
1369 abfd,
1370 "_SDA_BASE_",
1371 BSF_GLOBAL,
1372 s,
1373 (bfd_vma) 32768,
47b0e7ad 1374 NULL,
6edf0760
NC
1375 FALSE,
1376 get_elf_backend_data (abfd)->collect,
1377 &bh)))
1378 return FALSE;
1379 h = (struct elf_link_hash_entry *) bh;
1380 h->type = STT_OBJECT;
1381 }
1382
1383 switch (sym->st_shndx)
1384 {
1385 case SHN_M32R_SCOMMON:
1386 *secp = bfd_make_section_old_way (abfd, ".scommon");
1387 (*secp)->flags |= SEC_IS_COMMON;
1388 *valp = sym->st_size;
1389 break;
1390 }
1391
1392 return TRUE;
1393}
1394
1395/* We have to figure out the SDA_BASE value, so that we can adjust the
1396 symbol value correctly. We look up the symbol _SDA_BASE_ in the output
1397 BFD. If we can't find it, we're stuck. We cache it in the ELF
1398 target data. We don't need to adjust the symbol value for an
1399 external symbol if we are producing relocatable output. */
1400
1401static bfd_reloc_status_type
47b0e7ad
NC
1402m32r_elf_final_sda_base (bfd *output_bfd,
1403 struct bfd_link_info *info,
1404 const char **error_message,
1405 bfd_vma *psb)
6edf0760
NC
1406{
1407 if (elf_gp (output_bfd) == 0)
1408 {
1409 struct bfd_link_hash_entry *h;
1410
1411 h = bfd_link_hash_lookup (info->hash, "_SDA_BASE_", FALSE, FALSE, TRUE);
47b0e7ad 1412 if (h != NULL && h->type == bfd_link_hash_defined)
6edf0760
NC
1413 elf_gp (output_bfd) = (h->u.def.value
1414 + h->u.def.section->output_section->vma
1415 + h->u.def.section->output_offset);
1416 else
1417 {
1418 /* Only get the error once. */
1419 *psb = elf_gp (output_bfd) = 4;
1420 *error_message =
1421 (const char *) _("SDA relocation when _SDA_BASE_ not defined");
1422 return bfd_reloc_dangerous;
1423 }
1424 }
1425 *psb = elf_gp (output_bfd);
1426 return bfd_reloc_ok;
1427}
1428\f
1429/* Return size of a PLT entry. */
1430#define elf_m32r_sizeof_plt(info) PLT_ENTRY_SIZE
1431
1432/* The m32r linker needs to keep track of the number of relocs that it
1433 decides to copy in check_relocs for each symbol. This is so that
1434 it can discard PC relative relocs if it doesn't need them when
1435 linking with -Bsymbolic. We store the information in a field
1436 extending the regular ELF linker hash table. */
1437
1438/* This structure keeps track of the number of PC relative relocs we
1439 have copied for a given symbol. */
1440
1441struct elf_m32r_pcrel_relocs_copied
1442{
1443 /* Next section. */
1444 struct elf_m32r_pcrel_relocs_copied *next;
1445 /* A section in dynobj. */
1446 asection *section;
1447 /* Number of relocs copied in this section. */
1448 bfd_size_type count;
1449};
1450
1451/* The sh linker needs to keep track of the number of relocs that it
1452 decides to copy as dynamic relocs in check_relocs for each symbol.
1453 This is so that it can later discard them if they are found to be
1454 unnecessary. We store the information in a field extending the
1455 regular ELF linker hash table. */
1456
1457struct elf_m32r_dyn_relocs
1458{
1459 struct elf_m32r_dyn_relocs *next;
1460
1461 /* The input section of the reloc. */
1462 asection *sec;
1463
1464 /* Total number of relocs copied for the input section. */
1465 bfd_size_type count;
1466
1467 /* Number of pc-relative relocs copied for the input section. */
1468 bfd_size_type pc_count;
1469};
1470
1471
1472/* m32r ELF linker hash entry. */
1473
1474struct elf_m32r_link_hash_entry
1475{
1476 struct elf_link_hash_entry root;
1477
1478 /* Track dynamic relocs copied for this symbol. */
1479 struct elf_m32r_dyn_relocs *dyn_relocs;
6edf0760
NC
1480};
1481
1482/* m32r ELF linker hash table. */
1483
1484struct elf_m32r_link_hash_table
1485{
1486 struct elf_link_hash_table root;
1487
1488 /* Short-cuts to get to dynamic linker sections. */
1489 asection *sgot;
1490 asection *sgotplt;
1491 asection *srelgot;
1492 asection *splt;
1493 asection *srelplt;
1494 asection *sdynbss;
1495 asection *srelbss;
1496
1497 /* Small local sym to section mapping cache. */
1498 struct sym_sec_cache sym_sec;
1499};
1500
1501/* Traverse an m32r ELF linker hash table. */
1502
1503#define m32r_elf_link_hash_traverse(table, func, info) \
1504 (elf_link_hash_traverse \
1505 (&(table)->root, \
47b0e7ad 1506 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
6edf0760
NC
1507 (info)))
1508
1509/* Get the m32r ELF linker hash table from a link_info structure. */
1510
1511
1512#define m32r_elf_hash_table(p) \
1513 ((struct elf_m32r_link_hash_table *) ((p)->hash))
1514
1515/* Create an entry in an m32r ELF linker hash table. */
6edf0760
NC
1516
1517static struct bfd_hash_entry *
47b0e7ad
NC
1518m32r_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
1519 struct bfd_hash_table *table,
1520 const char *string)
6edf0760
NC
1521{
1522 struct elf_m32r_link_hash_entry *ret =
1523 (struct elf_m32r_link_hash_entry *) entry;
41978308 1524
6edf0760
NC
1525 /* Allocate the structure if it has not already been allocated by a
1526 subclass. */
47b0e7ad
NC
1527 if (ret == NULL)
1528 ret = bfd_hash_allocate (table,
1529 sizeof (struct elf_m32r_link_hash_entry));
1530 if (ret == NULL)
1531 return NULL;
41978308 1532
6edf0760
NC
1533 /* Call the allocation method of the superclass. */
1534 ret = ((struct elf_m32r_link_hash_entry *)
1535 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
1536 table, string));
47b0e7ad 1537 if (ret != NULL)
6edf0760
NC
1538 {
1539 struct elf_m32r_link_hash_entry *eh;
41978308 1540
6edf0760
NC
1541 eh = (struct elf_m32r_link_hash_entry *) ret;
1542 eh->dyn_relocs = NULL;
6edf0760 1543 }
41978308 1544
6edf0760
NC
1545 return (struct bfd_hash_entry *) ret;
1546}
1547
1548/* Create an m32r ELF linker hash table. */
6edf0760
NC
1549
1550static struct bfd_link_hash_table *
47b0e7ad 1551m32r_elf_link_hash_table_create (bfd *abfd)
6edf0760
NC
1552{
1553 struct elf_m32r_link_hash_table *ret;
1554 bfd_size_type amt = sizeof (struct elf_m32r_link_hash_table);
41978308 1555
47b0e7ad
NC
1556 ret = bfd_malloc (amt);
1557 if (ret == NULL)
6edf0760 1558 return NULL;
41978308 1559
6edf0760
NC
1560 if (! _bfd_elf_link_hash_table_init (&ret->root, abfd,
1561 m32r_elf_link_hash_newfunc))
1562 {
1563 free (ret);
1564 return NULL;
1565 }
41978308 1566
6edf0760
NC
1567 ret->sgot = NULL;
1568 ret->sgotplt = NULL;
1569 ret->srelgot = NULL;
1570 ret->splt = NULL;
1571 ret->srelplt = NULL;
1572 ret->sdynbss = NULL;
1573 ret->srelbss = NULL;
1574 ret->sym_sec.abfd = NULL;
41978308 1575
6edf0760
NC
1576 return &ret->root.root;
1577}
1578
1579/* Create .got, .gotplt, and .rela.got sections in DYNOBJ, and set up
1580 shortcuts to them in our hash table. */
6edf0760
NC
1581
1582static bfd_boolean
47b0e7ad 1583create_got_section (bfd *dynobj, struct bfd_link_info *info)
6edf0760
NC
1584{
1585 struct elf_m32r_link_hash_table *htab;
1586
1587 if (! _bfd_elf_create_got_section (dynobj, info))
1588 return FALSE;
1589
1590 htab = m32r_elf_hash_table (info);
1591 htab->sgot = bfd_get_section_by_name (dynobj, ".got");
1592 htab->sgotplt = bfd_get_section_by_name (dynobj, ".got.plt");
1593 if (! htab->sgot || ! htab->sgotplt)
1594 abort ();
1595
3496cb2a
L
1596 htab->srelgot = bfd_make_section_with_flags (dynobj, ".rela.got",
1597 (SEC_ALLOC
1598 | SEC_LOAD
1599 | SEC_HAS_CONTENTS
1600 | SEC_IN_MEMORY
1601 | SEC_LINKER_CREATED
1602 | SEC_READONLY));
6edf0760 1603 if (htab->srelgot == NULL
6edf0760
NC
1604 || ! bfd_set_section_alignment (dynobj, htab->srelgot, 2))
1605 return FALSE;
1606
1607 return TRUE;
1608}
1609
1610/* Create dynamic sections when linking against a dynamic object. */
1611
1612static bfd_boolean
47b0e7ad 1613m32r_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
6edf0760
NC
1614{
1615 struct elf_m32r_link_hash_table *htab;
1616 flagword flags, pltflags;
47b0e7ad 1617 asection *s;
6edf0760
NC
1618 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1619 int ptralign = 2; /* 32bit */
1620
1621 htab = m32r_elf_hash_table (info);
1622
1623 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
1624 .rel[a].bss sections. */
6edf0760
NC
1625 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
1626 | SEC_LINKER_CREATED);
1627
1628 pltflags = flags;
1629 pltflags |= SEC_CODE;
1630 if (bed->plt_not_loaded)
1631 pltflags &= ~ (SEC_LOAD | SEC_HAS_CONTENTS);
1632 if (bed->plt_readonly)
1633 pltflags |= SEC_READONLY;
1634
3496cb2a 1635 s = bfd_make_section_with_flags (abfd, ".plt", pltflags);
6edf0760
NC
1636 htab->splt = s;
1637 if (s == NULL
6edf0760
NC
1638 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
1639 return FALSE;
1640
1641 if (bed->want_plt_sym)
1642 {
1643 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
1644 .plt section. */
41978308
AM
1645 struct bfd_link_hash_entry *bh = NULL;
1646 struct elf_link_hash_entry *h;
47b0e7ad 1647
6edf0760
NC
1648 if (! (_bfd_generic_link_add_one_symbol
1649 (info, abfd, "_PROCEDURE_LINKAGE_TABLE_", BSF_GLOBAL, s,
47b0e7ad 1650 (bfd_vma) 0, NULL, FALSE,
41978308 1651 get_elf_backend_data (abfd)->collect, &bh)))
6edf0760 1652 return FALSE;
41978308 1653 h = (struct elf_link_hash_entry *) bh;
f5385ebf 1654 h->def_regular = 1;
6edf0760
NC
1655 h->type = STT_OBJECT;
1656
1657 if (info->shared
c152c796 1658 && ! bfd_elf_link_record_dynamic_symbol (info, h))
6edf0760
NC
1659 return FALSE;
1660 }
1661
3496cb2a
L
1662 s = bfd_make_section_with_flags (abfd,
1663 bed->default_use_rela_p ? ".rela.plt" : ".rel.plt",
1664 flags | SEC_READONLY);
6edf0760
NC
1665 htab->srelplt = s;
1666 if (s == NULL
6edf0760
NC
1667 || ! bfd_set_section_alignment (abfd, s, ptralign))
1668 return FALSE;
1669
1670 if (htab->sgot == NULL
1671 && ! create_got_section (abfd, info))
1672 return FALSE;
1673
1674 {
1675 const char *secname;
1676 char *relname;
1677 flagword secflags;
1678 asection *sec;
1679
1680 for (sec = abfd->sections; sec; sec = sec->next)
1681 {
1682 secflags = bfd_get_section_flags (abfd, sec);
1683 if ((secflags & (SEC_DATA | SEC_LINKER_CREATED))
1684 || ((secflags & SEC_HAS_CONTENTS) != SEC_HAS_CONTENTS))
1685 continue;
1686 secname = bfd_get_section_name (abfd, sec);
47b0e7ad 1687 relname = bfd_malloc ((bfd_size_type) strlen (secname) + 6);
6edf0760
NC
1688 strcpy (relname, ".rela");
1689 strcat (relname, secname);
1690 if (bfd_get_section_by_name (abfd, secname))
1691 continue;
3496cb2a
L
1692 s = bfd_make_section_with_flags (abfd, relname,
1693 flags | SEC_READONLY);
6edf0760 1694 if (s == NULL
6edf0760
NC
1695 || ! bfd_set_section_alignment (abfd, s, ptralign))
1696 return FALSE;
1697 }
1698 }
1699
1700 if (bed->want_dynbss)
1701 {
1702 /* The .dynbss section is a place to put symbols which are defined
1703 by dynamic objects, are referenced by regular objects, and are
1704 not functions. We must allocate space for them in the process
1705 image and use a R_*_COPY reloc to tell the dynamic linker to
1706 initialize them at run time. The linker script puts the .dynbss
1707 section into the .bss section of the final image. */
3496cb2a
L
1708 s = bfd_make_section_with_flags (abfd, ".dynbss",
1709 SEC_ALLOC | SEC_LINKER_CREATED);
6edf0760 1710 htab->sdynbss = s;
3496cb2a 1711 if (s == NULL)
6edf0760
NC
1712 return FALSE;
1713 /* The .rel[a].bss section holds copy relocs. This section is not
1714 normally needed. We need to create it here, though, so that the
1715 linker will map it to an output section. We can't just create it
1716 only if we need it, because we will not know whether we need it
1717 until we have seen all the input files, and the first time the
1718 main linker code calls BFD after examining all the input files
1719 (size_dynamic_sections) the input sections have already been
1720 mapped to the output sections. If the section turns out not to
1721 be needed, we can discard it later. We will never need this
1722 section when generating a shared object, since they do not use
1723 copy relocs. */
1724 if (! info->shared)
1725 {
3496cb2a
L
1726 s = bfd_make_section_with_flags (abfd,
1727 (bed->default_use_rela_p
1728 ? ".rela.bss" : ".rel.bss"),
1729 flags | SEC_READONLY);
6edf0760
NC
1730 htab->srelbss = s;
1731 if (s == NULL
6edf0760
NC
1732 || ! bfd_set_section_alignment (abfd, s, ptralign))
1733 return FALSE;
1734 }
1735 }
1736
1737 return TRUE;
1738}
1739
1740/* Copy the extra info we tack onto an elf_link_hash_entry. */
41978308 1741
6edf0760
NC
1742static void
1743m32r_elf_copy_indirect_symbol (const struct elf_backend_data *bed,
1744 struct elf_link_hash_entry *dir,
1745 struct elf_link_hash_entry *ind)
1746{
47b0e7ad
NC
1747 struct elf_m32r_link_hash_entry * edir;
1748 struct elf_m32r_link_hash_entry * eind;
41978308 1749
6edf0760
NC
1750 edir = (struct elf_m32r_link_hash_entry *) dir;
1751 eind = (struct elf_m32r_link_hash_entry *) ind;
41978308 1752
6edf0760
NC
1753 if (eind->dyn_relocs != NULL)
1754 {
1755 if (edir->dyn_relocs != NULL)
1756 {
1757 struct elf_m32r_dyn_relocs **pp;
1758 struct elf_m32r_dyn_relocs *p;
41978308 1759
6edf0760
NC
1760 if (ind->root.type == bfd_link_hash_indirect)
1761 abort ();
41978308 1762
6edf0760
NC
1763 /* Add reloc counts against the weak sym to the strong sym
1764 list. Merge any entries against the same section. */
47b0e7ad 1765 for (pp = &eind->dyn_relocs; (p = *pp) != NULL;)
6edf0760
NC
1766 {
1767 struct elf_m32r_dyn_relocs *q;
41978308 1768
6edf0760
NC
1769 for (q = edir->dyn_relocs; q != NULL; q = q->next)
1770 if (q->sec == p->sec)
1771 {
1772 q->pc_count += p->pc_count;
1773 q->count += p->count;
1774 *pp = p->next;
1775 break;
1776 }
1777 if (q == NULL)
1778 pp = &p->next;
1779 }
1780 *pp = edir->dyn_relocs;
1781 }
41978308 1782
6edf0760
NC
1783 edir->dyn_relocs = eind->dyn_relocs;
1784 eind->dyn_relocs = NULL;
1785 }
41978308 1786
6edf0760
NC
1787 _bfd_elf_link_hash_copy_indirect (bed, dir, ind);
1788}
1789
1790\f
1791/* Adjust a symbol defined by a dynamic object and referenced by a
1792 regular object. The current definition is in some section of the
1793 dynamic object, but we're not including those sections. We have to
1794 change the definition to something the rest of the link can
1795 understand. */
41978308 1796
6edf0760 1797static bfd_boolean
47b0e7ad
NC
1798m32r_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
1799 struct elf_link_hash_entry *h)
6edf0760
NC
1800{
1801 struct elf_m32r_link_hash_table *htab;
1802 struct elf_m32r_link_hash_entry *eh;
1803 struct elf_m32r_dyn_relocs *p;
1804 bfd *dynobj;
1805 asection *s;
1806 unsigned int power_of_two;
1807
1808#ifdef DEBUG_PIC
47b0e7ad 1809 printf ("m32r_elf_adjust_dynamic_symbol()\n");
6edf0760 1810#endif
41978308 1811
6edf0760 1812 dynobj = elf_hash_table (info)->dynobj;
41978308 1813
6edf0760
NC
1814 /* Make sure we know what is going on here. */
1815 BFD_ASSERT (dynobj != NULL
f5385ebf 1816 && (h->needs_plt
f6e332e6 1817 || h->u.weakdef != NULL
f5385ebf
AM
1818 || (h->def_dynamic
1819 && h->ref_regular
1820 && !h->def_regular)));
6edf0760 1821
6edf0760
NC
1822 /* If this is a function, put it in the procedure linkage table. We
1823 will fill in the contents of the procedure linkage table later,
1824 when we know the address of the .got section. */
1825 if (h->type == STT_FUNC
f5385ebf 1826 || h->needs_plt)
6edf0760
NC
1827 {
1828 if (! info->shared
f5385ebf
AM
1829 && !h->def_dynamic
1830 && !h->ref_dynamic
6edf0760
NC
1831 && h->root.type != bfd_link_hash_undefweak
1832 && h->root.type != bfd_link_hash_undefined)
1833 {
1834 /* This case can occur if we saw a PLT reloc in an input
1835 file, but the symbol was never referred to by a dynamic
1836 object. In such a case, we don't actually need to build
1837 a procedure linkage table, and we can just do a PCREL
1838 reloc instead. */
1839 h->plt.offset = (bfd_vma) -1;
f5385ebf 1840 h->needs_plt = 0;
6edf0760
NC
1841 }
1842
1843 return TRUE;
1844 }
1845 else
1846 h->plt.offset = (bfd_vma) -1;
41978308 1847
6edf0760
NC
1848 /* If this is a weak symbol, and there is a real definition, the
1849 processor independent code will have arranged for us to see the
1850 real definition first, and we can just use the same value. */
f6e332e6 1851 if (h->u.weakdef != NULL)
6edf0760 1852 {
f6e332e6
AM
1853 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
1854 || h->u.weakdef->root.type == bfd_link_hash_defweak);
1855 h->root.u.def.section = h->u.weakdef->root.u.def.section;
1856 h->root.u.def.value = h->u.weakdef->root.u.def.value;
6edf0760
NC
1857 return TRUE;
1858 }
41978308 1859
6edf0760
NC
1860 /* This is a reference to a symbol defined by a dynamic object which
1861 is not a function. */
41978308 1862
6edf0760
NC
1863 /* If we are creating a shared library, we must presume that the
1864 only references to the symbol are via the global offset table.
1865 For such cases we need not do anything here; the relocations will
1866 be handled correctly by relocate_section. */
1867 if (info->shared)
1868 return TRUE;
41978308 1869
6edf0760
NC
1870 /* If there are no references to this symbol that do not use the
1871 GOT, we don't need to generate a copy reloc. */
f5385ebf 1872 if (!h->non_got_ref)
6edf0760
NC
1873 return TRUE;
1874
1875 /* If -z nocopyreloc was given, we won't generate them either. */
1876 if (info->nocopyreloc)
1877 {
f5385ebf 1878 h->non_got_ref = 0;
6edf0760
NC
1879 return TRUE;
1880 }
1881
1882 eh = (struct elf_m32r_link_hash_entry *) h;
1883 for (p = eh->dyn_relocs; p != NULL; p = p->next)
1884 {
1885 s = p->sec->output_section;
1886 if (s != NULL && (s->flags & (SEC_READONLY | SEC_HAS_CONTENTS)) != 0)
1887 break;
1888 }
1889
1890 /* If we didn't find any dynamic relocs in sections which needs the
1891 copy reloc, then we'll be keeping the dynamic relocs and avoiding
1892 the copy reloc. */
1893 if (p == NULL)
1894 {
f5385ebf 1895 h->non_got_ref = 0;
6edf0760
NC
1896 return TRUE;
1897 }
1898
1899 /* We must allocate the symbol in our .dynbss section, which will
1900 become part of the .bss section of the executable. There will be
1901 an entry for this symbol in the .dynsym section. The dynamic
1902 object will contain position independent code, so all references
1903 from the dynamic object to this symbol will go through the global
1904 offset table. The dynamic linker will use the .dynsym entry to
1905 determine the address it must put in the global offset table, so
1906 both the dynamic object and the regular object will refer to the
1907 same memory location for the variable. */
41978308 1908
6edf0760
NC
1909 htab = m32r_elf_hash_table (info);
1910 s = htab->sdynbss;
1911 BFD_ASSERT (s != NULL);
41978308 1912
6edf0760
NC
1913 /* We must generate a R_M32R_COPY reloc to tell the dynamic linker
1914 to copy the initial value out of the dynamic object and into the
1915 runtime process image. We need to remember the offset into the
1916 .rela.bss section we are going to use. */
1917 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
1918 {
1919 asection *srel;
41978308 1920
6edf0760
NC
1921 srel = htab->srelbss;
1922 BFD_ASSERT (srel != NULL);
eea6121a 1923 srel->size += sizeof (Elf32_External_Rela);
f5385ebf 1924 h->needs_copy = 1;
6edf0760 1925 }
41978308 1926
6edf0760
NC
1927 /* We need to figure out the alignment required for this symbol. I
1928 have no idea how ELF linkers handle this. */
1929 power_of_two = bfd_log2 (h->size);
1930 if (power_of_two > 3)
1931 power_of_two = 3;
41978308 1932
6edf0760 1933 /* Apply the required alignment. */
eea6121a 1934 s->size = BFD_ALIGN (s->size, (bfd_size_type) (1 << power_of_two));
6edf0760
NC
1935 if (power_of_two > bfd_get_section_alignment (dynobj, s))
1936 {
1937 if (! bfd_set_section_alignment (dynobj, s, power_of_two))
1938 return FALSE;
1939 }
41978308 1940
6edf0760
NC
1941 /* Define the symbol as being at this point in the section. */
1942 h->root.u.def.section = s;
eea6121a 1943 h->root.u.def.value = s->size;
41978308 1944
6edf0760 1945 /* Increment the section size to make room for the symbol. */
eea6121a 1946 s->size += h->size;
41978308 1947
6edf0760
NC
1948 return TRUE;
1949}
1950
6edf0760
NC
1951/* Allocate space in .plt, .got and associated reloc sections for
1952 dynamic relocs. */
41978308 1953
6edf0760 1954static bfd_boolean
47b0e7ad 1955allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
6edf0760
NC
1956{
1957 struct bfd_link_info *info;
1958 struct elf_m32r_link_hash_table *htab;
1959 struct elf_m32r_link_hash_entry *eh;
1960 struct elf_m32r_dyn_relocs *p;
41978308 1961
6edf0760
NC
1962 if (h->root.type == bfd_link_hash_indirect)
1963 return TRUE;
41978308 1964
6edf0760
NC
1965 if (h->root.type == bfd_link_hash_warning)
1966 /* When warning symbols are created, they **replace** the "real"
1967 entry in the hash table, thus we never get to see the real
1968 symbol in a hash traversal. So look at it now. */
1969 h = (struct elf_link_hash_entry *) h->root.u.i.link;
41978308 1970
6edf0760
NC
1971 info = (struct bfd_link_info *) inf;
1972 htab = m32r_elf_hash_table (info);
41978308 1973
6edf0760 1974 eh = (struct elf_m32r_link_hash_entry *) h;
41978308 1975
6edf0760
NC
1976 if (htab->root.dynamic_sections_created
1977 && h->plt.refcount > 0)
1978 {
1979 /* Make sure this symbol is output as a dynamic symbol.
1980 Undefined weak syms won't yet be marked as dynamic. */
1981 if (h->dynindx == -1
f5385ebf 1982 && !h->forced_local)
6edf0760 1983 {
c152c796 1984 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6edf0760
NC
1985 return FALSE;
1986 }
41978308 1987
c152c796 1988 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, info->shared, h))
6edf0760
NC
1989 {
1990 asection *s = htab->splt;
41978308 1991
6edf0760
NC
1992 /* If this is the first .plt entry, make room for the special
1993 first entry. */
eea6121a
AM
1994 if (s->size == 0)
1995 s->size += PLT_ENTRY_SIZE;
41978308 1996
eea6121a 1997 h->plt.offset = s->size;
41978308 1998
6edf0760
NC
1999 /* If this symbol is not defined in a regular file, and we are
2000 not generating a shared library, then set the symbol to this
2001 location in the .plt. This is required to make function
2002 pointers compare as equal between the normal executable and
2003 the shared library. */
2004 if (! info->shared
f5385ebf 2005 && !h->def_regular)
6edf0760
NC
2006 {
2007 h->root.u.def.section = s;
2008 h->root.u.def.value = h->plt.offset;
2009 }
41978308 2010
6edf0760 2011 /* Make room for this entry. */
eea6121a 2012 s->size += PLT_ENTRY_SIZE;
41978308 2013
6edf0760
NC
2014 /* We also need to make an entry in the .got.plt section, which
2015 will be placed in the .got section by the linker script. */
eea6121a 2016 htab->sgotplt->size += 4;
41978308 2017
6edf0760 2018 /* We also need to make an entry in the .rel.plt section. */
eea6121a 2019 htab->srelplt->size += sizeof (Elf32_External_Rela);
6edf0760
NC
2020 }
2021 else
2022 {
2023 h->plt.offset = (bfd_vma) -1;
f5385ebf 2024 h->needs_plt = 0;
6edf0760
NC
2025 }
2026 }
2027 else
2028 {
2029 h->plt.offset = (bfd_vma) -1;
f5385ebf 2030 h->needs_plt = 0;
6edf0760 2031 }
41978308 2032
6edf0760
NC
2033 if (h->got.refcount > 0)
2034 {
2035 asection *s;
2036 bfd_boolean dyn;
41978308 2037
6edf0760
NC
2038 /* Make sure this symbol is output as a dynamic symbol.
2039 Undefined weak syms won't yet be marked as dynamic. */
2040 if (h->dynindx == -1
f5385ebf 2041 && !h->forced_local)
6edf0760 2042 {
c152c796 2043 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6edf0760
NC
2044 return FALSE;
2045 }
41978308 2046
6edf0760
NC
2047 s = htab->sgot;
2048
eea6121a
AM
2049 h->got.offset = s->size;
2050 s->size += 4;
6edf0760 2051 dyn = htab->root.dynamic_sections_created;
c152c796 2052 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h))
eea6121a 2053 htab->srelgot->size += sizeof (Elf32_External_Rela);
6edf0760
NC
2054 }
2055 else
2056 h->got.offset = (bfd_vma) -1;
41978308 2057
6edf0760
NC
2058 if (eh->dyn_relocs == NULL)
2059 return TRUE;
41978308 2060
6edf0760
NC
2061 /* In the shared -Bsymbolic case, discard space allocated for
2062 dynamic pc-relative relocs against symbols which turn out to be
2063 defined in regular objects. For the normal shared case, discard
2064 space for pc-relative relocs that have become local due to symbol
2065 visibility changes. */
2066
2067 if (info->shared)
2068 {
f5385ebf
AM
2069 if (h->def_regular
2070 && (h->forced_local
6edf0760
NC
2071 || info->symbolic))
2072 {
2073 struct elf_m32r_dyn_relocs **pp;
47b0e7ad
NC
2074
2075 for (pp = &eh->dyn_relocs; (p = *pp) != NULL;)
6edf0760
NC
2076 {
2077 p->count -= p->pc_count;
2078 p->pc_count = 0;
2079 if (p->count == 0)
2080 *pp = p->next;
2081 else
2082 pp = &p->next;
2083 }
2084 }
2085 }
2086 else
2087 {
2088 /* For the non-shared case, discard space for relocs against
2089 symbols which turn out to need copy relocs or are not
2090 dynamic. */
41978308 2091
f5385ebf
AM
2092 if (!h->non_got_ref
2093 && ((h->def_dynamic
2094 && !h->def_regular)
6edf0760
NC
2095 || (htab->root.dynamic_sections_created
2096 && (h->root.type == bfd_link_hash_undefweak
2097 || h->root.type == bfd_link_hash_undefined))))
2098 {
2099 /* Make sure this symbol is output as a dynamic symbol.
2100 Undefined weak syms won't yet be marked as dynamic. */
2101 if (h->dynindx == -1
f5385ebf 2102 && !h->forced_local)
6edf0760 2103 {
c152c796 2104 if (! bfd_elf_link_record_dynamic_symbol (info, h))
6edf0760
NC
2105 return FALSE;
2106 }
41978308 2107
6edf0760
NC
2108 /* If that succeeded, we know we'll be keeping all the
2109 relocs. */
2110 if (h->dynindx != -1)
2111 goto keep;
2112 }
41978308 2113
6edf0760 2114 eh->dyn_relocs = NULL;
41978308 2115
6edf0760
NC
2116 keep: ;
2117 }
41978308 2118
6edf0760
NC
2119 /* Finally, allocate space. */
2120 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2121 {
2122 asection *sreloc = elf_section_data (p->sec)->sreloc;
eea6121a 2123 sreloc->size += p->count * sizeof (Elf32_External_Rela);
6edf0760 2124 }
41978308 2125
6edf0760
NC
2126 return TRUE;
2127}
47b0e7ad 2128
6edf0760 2129/* Find any dynamic relocs that apply to read-only sections. */
41978308 2130
6edf0760 2131static bfd_boolean
47b0e7ad 2132readonly_dynrelocs (struct elf_link_hash_entry *h, void * inf)
6edf0760
NC
2133{
2134 struct elf_m32r_link_hash_entry *eh;
2135 struct elf_m32r_dyn_relocs *p;
2136
2137 if (h->root.type == bfd_link_hash_warning)
2138 h = (struct elf_link_hash_entry *) h->root.u.i.link;
252b5132 2139
6edf0760
NC
2140 eh = (struct elf_m32r_link_hash_entry *) h;
2141 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2142 {
2143 asection *s = p->sec->output_section;
252b5132 2144
6edf0760
NC
2145 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2146 {
2147 struct bfd_link_info *info = (struct bfd_link_info *) inf;
252b5132 2148
6edf0760 2149 info->flags |= DF_TEXTREL;
252b5132 2150
6edf0760
NC
2151 /* Not an error, just cut short the traversal. */
2152 return FALSE;
2153 }
252b5132 2154 }
6edf0760
NC
2155 return TRUE;
2156}
252b5132 2157
6edf0760 2158/* Set the sizes of the dynamic sections. */
41978308 2159
6edf0760 2160static bfd_boolean
47b0e7ad
NC
2161m32r_elf_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
2162 struct bfd_link_info *info)
6edf0760
NC
2163{
2164 struct elf_m32r_link_hash_table *htab;
2165 bfd *dynobj;
2166 asection *s;
2167 bfd_boolean relocs;
2168 bfd *ibfd;
2169
2170#ifdef DEBUG_PIC
47b0e7ad 2171 printf ("m32r_elf_size_dynamic_sections()\n");
6edf0760
NC
2172#endif
2173
2174 htab = m32r_elf_hash_table (info);
2175 dynobj = htab->root.dynobj;
2176 BFD_ASSERT (dynobj != NULL);
2177
2178 if (htab->root.dynamic_sections_created)
252b5132 2179 {
6edf0760 2180 /* Set the contents of the .interp section to the interpreter. */
80447b21 2181 if (info->executable)
6edf0760
NC
2182 {
2183 s = bfd_get_section_by_name (dynobj, ".interp");
2184 BFD_ASSERT (s != NULL);
eea6121a 2185 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
6edf0760
NC
2186 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
2187 }
252b5132
RH
2188 }
2189
6edf0760
NC
2190 /* Set up .got offsets for local syms, and space for local dynamic
2191 relocs. */
2192 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
2193 {
2194 bfd_signed_vma *local_got;
2195 bfd_signed_vma *end_local_got;
2196 bfd_size_type locsymcount;
2197 Elf_Internal_Shdr *symtab_hdr;
2198 asection *srel;
252b5132 2199
6edf0760
NC
2200 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
2201 continue;
252b5132 2202
6edf0760
NC
2203 for (s = ibfd->sections; s != NULL; s = s->next)
2204 {
2205 struct elf_m32r_dyn_relocs *p;
2206
2207 for (p = ((struct elf_m32r_dyn_relocs *)
2208 elf_section_data (s)->local_dynrel);
2209 p != NULL;
2210 p = p->next)
2211 {
2212 if (! bfd_is_abs_section (p->sec)
2213 && bfd_is_abs_section (p->sec->output_section))
2214 {
2215 /* Input section has been discarded, either because
2216 it is a copy of a linkonce section or due to
2217 linker script /DISCARD/, so we'll be discarding
2218 the relocs too. */
2219 }
2220 else if (p->count != 0)
2221 {
2222 srel = elf_section_data (p->sec)->sreloc;
eea6121a 2223 srel->size += p->count * sizeof (Elf32_External_Rela);
6edf0760
NC
2224 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
2225 info->flags |= DF_TEXTREL;
2226 }
2227 }
2228 }
2229
2230 local_got = elf_local_got_refcounts (ibfd);
2231 if (!local_got)
2232 continue;
2233
2234 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
2235 locsymcount = symtab_hdr->sh_info;
2236 end_local_got = local_got + locsymcount;
2237 s = htab->sgot;
2238 srel = htab->srelgot;
2239 for (; local_got < end_local_got; ++local_got)
2240 {
2241 if (*local_got > 0)
2242 {
eea6121a
AM
2243 *local_got = s->size;
2244 s->size += 4;
6edf0760 2245 if (info->shared)
eea6121a 2246 srel->size += sizeof (Elf32_External_Rela);
6edf0760
NC
2247 }
2248 else
2249 *local_got = (bfd_vma) -1;
2250 }
2251 }
2252
2253 /* Allocate global sym .plt and .got entries, and space for global
2254 sym dynamic relocs. */
47b0e7ad 2255 elf_link_hash_traverse (&htab->root, allocate_dynrelocs, info);
6edf0760
NC
2256
2257 /* We now have determined the sizes of the various dynamic sections.
2258 Allocate memory for them. */
2259 relocs = FALSE;
2260 for (s = dynobj->sections; s != NULL; s = s->next)
252b5132 2261 {
6edf0760
NC
2262 if ((s->flags & SEC_LINKER_CREATED) == 0)
2263 continue;
252b5132 2264
6edf0760
NC
2265 if (s == htab->splt
2266 || s == htab->sgot
c456f082
AM
2267 || s == htab->sgotplt
2268 || s == htab->sdynbss)
6edf0760
NC
2269 {
2270 /* Strip this section if we don't need it; see the
2271 comment below. */
2272 }
2273 else if (strncmp (bfd_get_section_name (dynobj, s), ".rela", 5) == 0)
2274 {
eea6121a 2275 if (s->size != 0 && s != htab->srelplt)
6edf0760
NC
2276 relocs = TRUE;
2277
2278 /* We use the reloc_count field as a counter if we need
2279 to copy relocs into the output file. */
2280 s->reloc_count = 0;
2281 }
252b5132 2282 else
47b0e7ad
NC
2283 /* It's not one of our sections, so don't allocate space. */
2284 continue;
6edf0760 2285
eea6121a 2286 if (s->size == 0)
6edf0760
NC
2287 {
2288 /* If we don't need this section, strip it from the
2289 output file. This is mostly to handle .rela.bss and
2290 .rela.plt. We must create both sections in
2291 create_dynamic_sections, because they must be created
2292 before the linker maps input sections to output
2293 sections. The linker does that before
2294 adjust_dynamic_symbol is called, and it is that
2295 function which decides whether anything needs to go
2296 into these sections. */
8423293d 2297 s->flags |= SEC_EXCLUDE;
6edf0760
NC
2298 continue;
2299 }
2300
c456f082
AM
2301 if ((s->flags & SEC_HAS_CONTENTS) == 0)
2302 continue;
2303
6edf0760
NC
2304 /* Allocate memory for the section contents. We use bfd_zalloc
2305 here in case unused entries are not reclaimed before the
2306 section's contents are written out. This should not happen,
2307 but this way if it does, we get a R_M32R_NONE reloc instead
2308 of garbage. */
47b0e7ad 2309 s->contents = bfd_zalloc (dynobj, s->size);
6edf0760
NC
2310 if (s->contents == NULL)
2311 return FALSE;
2312 }
2313
2314 if (htab->root.dynamic_sections_created)
2315 {
2316 /* Add some entries to the .dynamic section. We fill in the
2317 values later, in m32r_elf_finish_dynamic_sections, but we
2318 must add the entries now so that we get the correct size for
2319 the .dynamic section. The DT_DEBUG entry is filled in by the
2320 dynamic linker and used by the debugger. */
2321#define add_dynamic_entry(TAG, VAL) \
5a580b3a 2322 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
6edf0760 2323
80447b21 2324 if (info->executable)
252b5132 2325 {
6edf0760
NC
2326 if (! add_dynamic_entry (DT_DEBUG, 0))
2327 return FALSE;
252b5132 2328 }
6edf0760 2329
eea6121a 2330 if (htab->splt->size != 0)
6edf0760
NC
2331 {
2332 if (! add_dynamic_entry (DT_PLTGOT, 0)
2333 || ! add_dynamic_entry (DT_PLTRELSZ, 0)
2334 || ! add_dynamic_entry (DT_PLTREL, DT_RELA)
2335 || ! add_dynamic_entry (DT_JMPREL, 0))
2336 return FALSE;
2337 }
2338
2339 if (relocs)
2340 {
2341 if (! add_dynamic_entry (DT_RELA, 0)
2342 || ! add_dynamic_entry (DT_RELASZ, 0)
2343 || ! add_dynamic_entry (DT_RELAENT,
2344 sizeof (Elf32_External_Rela)))
2345 return FALSE;
2346
2347 /* If any dynamic relocs apply to a read-only section,
2348 then we need a DT_TEXTREL entry. */
2349 if ((info->flags & DF_TEXTREL) == 0)
2350 elf_link_hash_traverse (&htab->root, readonly_dynrelocs,
47b0e7ad 2351 info);
6edf0760
NC
2352
2353 if ((info->flags & DF_TEXTREL) != 0)
2354 {
2355 if (! add_dynamic_entry (DT_TEXTREL, 0))
2356 return FALSE;
2357 }
2358 }
252b5132 2359 }
6edf0760
NC
2360#undef add_dynamic_entry
2361
2362 return TRUE;
252b5132 2363}
47b0e7ad 2364
252b5132
RH
2365/* Relocate an M32R/D ELF section.
2366 There is some attempt to make this function usable for many architectures,
f0fe0e16 2367 both for RELA and REL type relocs, if only to serve as a learning tool.
252b5132
RH
2368
2369 The RELOCATE_SECTION function is called by the new ELF backend linker
2370 to handle the relocations for a section.
2371
2372 The relocs are always passed as Rela structures; if the section
2373 actually uses Rel structures, the r_addend field will always be
2374 zero.
2375
2376 This function is responsible for adjust the section contents as
2377 necessary, and (if using Rela relocs and generating a
1049f94e 2378 relocatable output file) adjusting the reloc addend as
252b5132
RH
2379 necessary.
2380
2381 This function does not have to worry about setting the reloc
2382 address or the reloc symbol index.
2383
2384 LOCAL_SYMS is a pointer to the swapped in local symbols.
2385
2386 LOCAL_SECTIONS is an array giving the section in the input file
2387 corresponding to the st_shndx field of each local symbol.
2388
2389 The global hash table entry for the global symbols can be found
2390 via elf_sym_hashes (input_bfd).
2391
1049f94e 2392 When generating relocatable output, this function must handle
252b5132
RH
2393 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
2394 going to be the section symbol corresponding to the output
2395 section, which means that the addend must be adjusted
2396 accordingly. */
2397
b34976b6 2398static bfd_boolean
47b0e7ad
NC
2399m32r_elf_relocate_section (bfd *output_bfd ATTRIBUTE_UNUSED,
2400 struct bfd_link_info *info,
2401 bfd *input_bfd,
2402 asection *input_section,
2403 bfd_byte *contents,
2404 Elf_Internal_Rela *relocs,
2405 Elf_Internal_Sym *local_syms,
2406 asection **local_sections)
252b5132
RH
2407{
2408 Elf_Internal_Shdr *symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
2409 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (input_bfd);
2410 Elf_Internal_Rela *rel, *relend;
2411 /* Assume success. */
b34976b6 2412 bfd_boolean ret = TRUE;
252b5132 2413
6edf0760
NC
2414 struct elf_m32r_link_hash_table *htab = m32r_elf_hash_table (info);
2415 bfd *dynobj;
2416 bfd_vma *local_got_offsets;
2417 asection *sgot, *splt, *sreloc;
07515404 2418 bfd_vma high_address = bfd_get_section_limit (input_bfd, input_section);
6edf0760
NC
2419
2420 dynobj = htab->root.dynobj;
2421 local_got_offsets = elf_local_got_offsets (input_bfd);
41978308 2422
6edf0760
NC
2423 sgot = htab->sgot;
2424 splt = htab->splt;
2425 sreloc = NULL;
b491616a 2426
252b5132
RH
2427 rel = relocs;
2428 relend = relocs + input_section->reloc_count;
2429 for (; rel < relend; rel++)
2430 {
2431 int r_type;
2432 reloc_howto_type *howto;
2433 unsigned long r_symndx;
6edf0760 2434 struct elf_link_hash_entry *h;
252b5132 2435 /* We can't modify r_addend here as elf_link_input_bfd has an assert to
6edf0760
NC
2436 ensure it's zero (we use REL relocs, not RELA). Therefore this
2437 should be assigning zero to `addend', but for clarity we use
2438 `r_addend'. */
252b5132
RH
2439 bfd_vma addend = rel->r_addend;
2440 bfd_vma offset = rel->r_offset;
252b5132
RH
2441 Elf_Internal_Sym *sym;
2442 asection *sec;
2443 const char *sym_name;
2444 bfd_reloc_status_type r;
2445 const char *errmsg = NULL;
6edf0760 2446 bfd_boolean use_rel = FALSE;
252b5132
RH
2447
2448 h = NULL;
2449 r_type = ELF32_R_TYPE (rel->r_info);
2450 if (r_type < 0 || r_type >= (int) R_M32R_max)
2451 {
d003868e
AM
2452 (*_bfd_error_handler) (_("%B: unknown relocation type %d"),
2453 input_bfd,
252b5132
RH
2454 (int) r_type);
2455 bfd_set_error (bfd_error_bad_value);
b34976b6 2456 ret = FALSE;
252b5132
RH
2457 continue;
2458 }
2459
47b0e7ad 2460 if ( r_type == R_M32R_GNU_VTENTRY
6edf0760
NC
2461 || r_type == R_M32R_GNU_VTINHERIT
2462 || r_type == R_M32R_NONE
2463 || r_type == R_M32R_RELA_GNU_VTENTRY
2464 || r_type == R_M32R_RELA_GNU_VTINHERIT)
252b5132
RH
2465 continue;
2466
6edf0760
NC
2467 if (r_type <= R_M32R_GNU_VTENTRY)
2468 use_rel = TRUE;
2469
252b5132
RH
2470 howto = m32r_elf_howto_table + r_type;
2471 r_symndx = ELF32_R_SYM (rel->r_info);
2472
688c58f3 2473 if (info->relocatable && use_rel)
252b5132 2474 {
1049f94e 2475 /* This is a relocatable link. We don't have to change
252b5132
RH
2476 anything, unless the reloc is against a section symbol,
2477 in which case we have to adjust according to where the
2478 section symbol winds up in the output section. */
2479 sec = NULL;
2480 if (r_symndx >= symtab_hdr->sh_info)
47b0e7ad
NC
2481 /* External symbol. */
2482 continue;
252b5132
RH
2483
2484 /* Local symbol. */
2485 sym = local_syms + r_symndx;
2486 sym_name = "<local symbol>";
2487 /* STT_SECTION: symbol is associated with a section. */
2488 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
47b0e7ad
NC
2489 /* Symbol isn't associated with a section. Nothing to do. */
2490 continue;
252b5132
RH
2491
2492 sec = local_sections[r_symndx];
2493 addend += sec->output_offset + sym->st_value;
252b5132 2494
252b5132
RH
2495 /* If partial_inplace, we need to store any additional addend
2496 back in the section. */
2497 if (! howto->partial_inplace)
2498 continue;
2499 /* ??? Here is a nice place to call a special_function
2500 like handler. */
2501 if (r_type != R_M32R_HI16_SLO && r_type != R_M32R_HI16_ULO)
2502 r = _bfd_relocate_contents (howto, input_bfd,
2503 addend, contents + offset);
2504 else
2505 {
2506 Elf_Internal_Rela *lorel;
2507
2508 /* We allow an arbitrary number of HI16 relocs before the
2509 LO16 reloc. This permits gcc to emit the HI and LO relocs
2510 itself. */
2511 for (lorel = rel + 1;
2512 (lorel < relend
2513 && (ELF32_R_TYPE (lorel->r_info) == R_M32R_HI16_SLO
2514 || ELF32_R_TYPE (lorel->r_info) == R_M32R_HI16_ULO));
2515 lorel++)
2516 continue;
2517 if (lorel < relend
2518 && ELF32_R_TYPE (lorel->r_info) == R_M32R_LO16)
2519 {
2520 m32r_elf_relocate_hi16 (input_bfd, r_type, rel, lorel,
2521 contents, addend);
2522 r = bfd_reloc_ok;
2523 }
2524 else
2525 r = _bfd_relocate_contents (howto, input_bfd,
2526 addend, contents + offset);
2527 }
252b5132
RH
2528 }
2529 else
2530 {
2531 bfd_vma relocation;
2532
2533 /* This is a final link. */
2534 sym = NULL;
2535 sec = NULL;
6edf0760 2536 h = NULL;
252b5132
RH
2537
2538 if (r_symndx < symtab_hdr->sh_info)
2539 {
2540 /* Local symbol. */
2541 sym = local_syms + r_symndx;
2542 sec = local_sections[r_symndx];
2543 sym_name = "<local symbol>";
6edf0760 2544
688c58f3 2545 if (!use_rel)
6edf0760
NC
2546 {
2547 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
2548 addend = rel->r_addend;
2549
2550 if (info->relocatable)
2551 {
2552 /* This is a relocatable link. We don't have to change
2553 anything, unless the reloc is against a section symbol,
2554 in which case we have to adjust according to where the
2555 section symbol winds up in the output section. */
2556 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
2557 rel->r_addend += sec->output_offset + sym->st_value;
41978308 2558
6edf0760
NC
2559 continue;
2560 }
2561 }
2562 else
2563 {
2564 relocation = (sec->output_section->vma
2565 + sec->output_offset
2566 + sym->st_value);
2567 }
252b5132
RH
2568 }
2569 else
2570 {
2571 /* External symbol. */
688c58f3 2572 if (info->relocatable && !use_rel)
6edf0760
NC
2573 continue;
2574
252b5132
RH
2575 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
2576 while (h->root.type == bfd_link_hash_indirect
2577 || h->root.type == bfd_link_hash_warning)
2578 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2579 sym_name = h->root.root.string;
2580
2581 if (h->root.type == bfd_link_hash_defined
2582 || h->root.type == bfd_link_hash_defweak)
2583 {
6edf0760 2584 bfd_boolean dyn;
252b5132 2585 sec = h->root.u.def.section;
6edf0760
NC
2586
2587 dyn = htab->root.dynamic_sections_created;
2588 sec = h->root.u.def.section;
2589 if (r_type == R_M32R_GOTPC24
2590 || (r_type == R_M32R_GOTPC_HI_ULO
2591 || r_type == R_M32R_GOTPC_HI_SLO
2592 || r_type == R_M32R_GOTPC_LO)
2593 || (r_type == R_M32R_26_PLTREL
2594 && h->plt.offset != (bfd_vma) -1)
2595 || ((r_type == R_M32R_GOT24
2596 || r_type == R_M32R_GOT16_HI_ULO
2597 || r_type == R_M32R_GOT16_HI_SLO
2598 || r_type == R_M32R_GOT16_LO)
c152c796
AM
2599 && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
2600 info->shared, h)
6edf0760
NC
2601 && (! info->shared
2602 || (! info->symbolic && h->dynindx != -1)
f5385ebf 2603 || !h->def_regular))
6edf0760
NC
2604 || (info->shared
2605 && ((! info->symbolic && h->dynindx != -1)
f5385ebf 2606 || !h->def_regular)
6edf0760
NC
2607 && (((r_type == R_M32R_16_RELA
2608 || r_type == R_M32R_32_RELA
2609 || r_type == R_M32R_24_RELA
2610 || r_type == R_M32R_HI16_ULO_RELA
2611 || r_type == R_M32R_HI16_SLO_RELA
2612 || r_type == R_M32R_LO16_RELA)
f5385ebf 2613 && !h->forced_local)
6edf0760
NC
2614 || r_type == R_M32R_10_PCREL_RELA
2615 || r_type == R_M32R_18_PCREL_RELA
2616 || r_type == R_M32R_26_PCREL_RELA)
2617 && ((input_section->flags & SEC_ALLOC) != 0
2618 /* DWARF will emit R_M32R_16(24,32) relocations
41978308 2619 in its sections against symbols defined
6edf0760
NC
2620 externally in shared libraries. We can't do
2621 anything with them here. */
2622 || ((input_section->flags & SEC_DEBUGGING) != 0
f5385ebf 2623 && h->def_dynamic))))
6edf0760
NC
2624 {
2625 /* In these cases, we don't need the relocation
2626 value. We check specially because in some
2627 obscure cases sec->output_section will be NULL. */
2628 relocation = 0;
2629 }
2630 else if (sec->output_section == NULL)
2631 {
2632 (*_bfd_error_handler)
2633 (_("%s: warning: unresolvable relocation against symbol `%s' from %s section"),
2634 bfd_get_filename (input_bfd), h->root.root.string,
2635 bfd_get_section_name (input_bfd, input_section));
2636
2637 relocation = 0;
2638 }
252b5132
RH
2639 else
2640 relocation = (h->root.u.def.value
2641 + sec->output_section->vma
2642 + sec->output_offset);
2643 }
2644 else if (h->root.type == bfd_link_hash_undefweak)
2645 relocation = 0;
59c2e50f 2646 else if (info->unresolved_syms_in_objects == RM_IGNORE
6edf0760
NC
2647 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
2648 relocation = 0;
252b5132
RH
2649 else
2650 {
2651 if (! ((*info->callbacks->undefined_symbol)
2652 (info, h->root.root.string, input_bfd,
6edf0760 2653 input_section, offset,
59c2e50f 2654 (info->unresolved_syms_in_objects == RM_GENERATE_ERROR
6edf0760 2655 || ELF_ST_VISIBILITY (h->other)))))
b34976b6 2656 return FALSE;
252b5132
RH
2657 relocation = 0;
2658 }
2659 }
2660
2661 /* Sanity check the address. */
07515404 2662 if (offset > high_address)
252b5132
RH
2663 {
2664 r = bfd_reloc_outofrange;
2665 goto check_reloc;
2666 }
2667
2668 switch ((int) r_type)
2669 {
097f809a
NC
2670 case R_M32R_GOTOFF:
2671 /* Relocation is relative to the start of the global offset
2672 table (for ld24 rx, #uimm24). eg access at label+addend
f12123c0 2673
097f809a
NC
2674 ld24 rx. #label@GOTOFF + addend
2675 sub rx, r12. */
2676
2677 BFD_ASSERT (sgot != NULL);
2678
2679 relocation = -(relocation - sgot->output_section->vma);
2680 rel->r_addend = -rel->r_addend;
2681 break;
2682
2683 case R_M32R_GOTOFF_HI_ULO:
2684 case R_M32R_GOTOFF_HI_SLO:
2685 case R_M32R_GOTOFF_LO:
2686 BFD_ASSERT (sgot != NULL);
2687
2688 relocation -= sgot->output_section->vma;
2689
2690 if ((r_type == R_M32R_GOTOFF_HI_SLO)
2691 && ((relocation + rel->r_addend) & 0x8000))
2692 rel->r_addend += 0x10000;
2693 break;
2694
6edf0760
NC
2695 case R_M32R_GOTPC24:
2696 /* .got(_GLOBAL_OFFSET_TABLE_) - pc relocation
2697 ld24 rx,#_GLOBAL_OFFSET_TABLE_
2698 */
2699 relocation = sgot->output_section->vma;
2700 break;
2701
2702 case R_M32R_GOTPC_HI_ULO:
2703 case R_M32R_GOTPC_HI_SLO:
41978308 2704 case R_M32R_GOTPC_LO:
6edf0760
NC
2705 {
2706 /* .got(_GLOBAL_OFFSET_TABLE_) - pc relocation
2707 bl .+4
2708 seth rx,#high(_GLOBAL_OFFSET_TABLE_)
2709 or3 rx,rx,#low(_GLOBAL_OFFSET_TABLE_ +4)
2710 or
2711 bl .+4
2712 seth rx,#shigh(_GLOBAL_OFFSET_TABLE_)
2713 add3 rx,rx,#low(_GLOBAL_OFFSET_TABLE_ +4)
2714 */
2715 relocation = sgot->output_section->vma;
2716 relocation -= (input_section->output_section->vma
2717 + input_section->output_offset
2718 + rel->r_offset);
41978308 2719 if ((r_type == R_M32R_GOTPC_HI_SLO)
6edf0760
NC
2720 && ((relocation + rel->r_addend) & 0x8000))
2721 rel->r_addend += 0x10000;
2722
2723 break;
2724 }
2725 case R_M32R_GOT16_HI_ULO:
2726 case R_M32R_GOT16_HI_SLO:
41978308 2727 case R_M32R_GOT16_LO:
6edf0760
NC
2728 /* Fall through. */
2729 case R_M32R_GOT24:
2730 /* Relocation is to the entry for this symbol in the global
2731 offset table. */
2732 BFD_ASSERT (sgot != NULL);
41978308 2733
6edf0760
NC
2734 if (h != NULL)
2735 {
2736 bfd_boolean dyn;
2737 bfd_vma off;
41978308 2738
6edf0760
NC
2739 off = h->got.offset;
2740 BFD_ASSERT (off != (bfd_vma) -1);
2741
2742 dyn = htab->root.dynamic_sections_created;
c152c796 2743 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
6edf0760
NC
2744 || (info->shared
2745 && (info->symbolic
2746 || h->dynindx == -1
f5385ebf
AM
2747 || h->forced_local)
2748 && h->def_regular))
6edf0760
NC
2749 {
2750 /* This is actually a static link, or it is a
2751 -Bsymbolic link and the symbol is defined
2752 locally, or the symbol was forced to be local
2753 because of a version file. We must initialize
2754 this entry in the global offset table. Since the
2755 offset must always be a multiple of 4, we use the
2756 least significant bit to record whether we have
2757 initialized it already.
41978308 2758
6edf0760
NC
2759 When doing a dynamic link, we create a .rela.got
2760 relocation entry to initialize the value. This
2761 is done in the finish_dynamic_symbol routine. */
2762 if ((off & 1) != 0)
2763 off &= ~1;
2764 else
2765 {
2766 bfd_put_32 (output_bfd, relocation,
2767 sgot->contents + off);
2768 h->got.offset |= 1;
2769 }
2770 }
41978308 2771
6edf0760
NC
2772 relocation = sgot->output_offset + off;
2773 }
2774 else
2775 {
2776 bfd_vma off;
2777 bfd_byte *loc;
41978308 2778
6edf0760
NC
2779 BFD_ASSERT (local_got_offsets != NULL
2780 && local_got_offsets[r_symndx] != (bfd_vma) -1);
41978308 2781
6edf0760 2782 off = local_got_offsets[r_symndx];
41978308 2783
6edf0760
NC
2784 /* The offset must always be a multiple of 4. We use
2785 the least significant bit to record whether we have
2786 already processed this entry. */
2787 if ((off & 1) != 0)
2788 off &= ~1;
2789 else
2790 {
2791 bfd_put_32 (output_bfd, relocation, sgot->contents + off);
41978308 2792
6edf0760
NC
2793 if (info->shared)
2794 {
2795 asection *srelgot;
2796 Elf_Internal_Rela outrel;
41978308 2797
6edf0760
NC
2798 /* We need to generate a R_M32R_RELATIVE reloc
2799 for the dynamic linker. */
2800 srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
2801 BFD_ASSERT (srelgot != NULL);
41978308 2802
6edf0760
NC
2803 outrel.r_offset = (sgot->output_section->vma
2804 + sgot->output_offset
2805 + off);
2806 outrel.r_info = ELF32_R_INFO (0, R_M32R_RELATIVE);
2807 outrel.r_addend = relocation;
2808 loc = srelgot->contents;
47b0e7ad 2809 loc += srelgot->reloc_count * sizeof (Elf32_External_Rela);
6edf0760
NC
2810 bfd_elf32_swap_reloca_out (output_bfd, &outrel,loc);
2811 ++srelgot->reloc_count;
2812 }
41978308 2813
6edf0760
NC
2814 local_got_offsets[r_symndx] |= 1;
2815 }
41978308 2816
6edf0760
NC
2817 relocation = sgot->output_offset + off;
2818 }
2819 if ((r_type == R_M32R_GOT16_HI_SLO)
2820 && ((relocation + rel->r_addend) & 0x8000))
2821 rel->r_addend += 0x10000;
2822
2823 break;
41978308 2824
6edf0760
NC
2825 case R_M32R_26_PLTREL:
2826 /* Relocation is to the entry for this symbol in the
2827 procedure linkage table. */
41978308 2828
6edf0760
NC
2829 /* The native assembler will generate a 26_PLTREL reloc
2830 for a local symbol if you assemble a call from one
2831 section to another when using -K pic. */
2832 if (h == NULL)
2833 break;
2834
f5385ebf 2835 if (h->forced_local)
6edf0760
NC
2836 break;
2837
2838 if (h->plt.offset == (bfd_vma) -1)
47b0e7ad
NC
2839 /* We didn't make a PLT entry for this symbol. This
2840 happens when statically linking PIC code, or when
2841 using -Bsymbolic. */
2842 break;
41978308 2843
6edf0760
NC
2844 relocation = (splt->output_section->vma
2845 + splt->output_offset
2846 + h->plt.offset);
2847 break;
41978308 2848
6edf0760 2849 case R_M32R_HI16_SLO_RELA:
47b0e7ad
NC
2850 if ((relocation + rel->r_addend) & 0x8000)
2851 rel->r_addend += 0x10000;
6edf0760 2852 /* Fall through. */
47b0e7ad 2853
6edf0760
NC
2854 case R_M32R_16_RELA:
2855 case R_M32R_24_RELA:
2856 case R_M32R_32_RELA:
2857 case R_M32R_18_PCREL_RELA:
2858 case R_M32R_26_PCREL_RELA:
2859 case R_M32R_HI16_ULO_RELA:
2860 case R_M32R_LO16_RELA:
6edf0760
NC
2861 if (info->shared
2862 && r_symndx != 0
2863 && (input_section->flags & SEC_ALLOC) != 0
2864 && ((r_type != R_M32R_18_PCREL_RELA
2865 && r_type != R_M32R_26_PCREL_RELA)
2866 || (h != NULL
2867 && h->dynindx != -1
2868 && (! info->symbolic
f5385ebf 2869 || !h->def_regular))))
6edf0760
NC
2870 {
2871 Elf_Internal_Rela outrel;
2872 bfd_boolean skip, relocate;
2873 bfd_byte *loc;
41978308 2874
6edf0760
NC
2875 /* When generating a shared object, these relocations
2876 are copied into the output file to be resolved at run
2877 time. */
6edf0760
NC
2878 if (sreloc == NULL)
2879 {
2880 const char *name;
41978308 2881
6edf0760
NC
2882 name = (bfd_elf_string_from_elf_section
2883 (input_bfd,
2884 elf_elfheader (input_bfd)->e_shstrndx,
2885 elf_section_data (input_section)->rel_hdr.sh_name));
2886 if (name == NULL)
2887 return FALSE;
41978308 2888
6edf0760
NC
2889 BFD_ASSERT (strncmp (name, ".rela", 5) == 0
2890 && strcmp (bfd_get_section_name (input_bfd,
2891 input_section),
2892 name + 5) == 0);
41978308 2893
6edf0760
NC
2894 sreloc = bfd_get_section_by_name (dynobj, name);
2895 BFD_ASSERT (sreloc != NULL);
2896 }
41978308 2897
6edf0760
NC
2898 skip = FALSE;
2899 relocate = FALSE;
41978308 2900
6edf0760
NC
2901 outrel.r_offset = _bfd_elf_section_offset (output_bfd,
2902 info,
2903 input_section,
2904 rel->r_offset);
2905 if (outrel.r_offset == (bfd_vma) -1)
2906 skip = TRUE;
2907 else if (outrel.r_offset == (bfd_vma) -2)
47b0e7ad 2908 skip = relocate = TRUE;
6edf0760
NC
2909 outrel.r_offset += (input_section->output_section->vma
2910 + input_section->output_offset);
41978308 2911
6edf0760
NC
2912 if (skip)
2913 memset (&outrel, 0, sizeof outrel);
2914 else if (r_type == R_M32R_18_PCREL_RELA
2915 || r_type == R_M32R_26_PCREL_RELA)
2916 {
2917 BFD_ASSERT (h != NULL && h->dynindx != -1);
2918 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
2919 outrel.r_addend = rel->r_addend;
2920 }
2921 else
2922 {
2923 /* h->dynindx may be -1 if this symbol was marked to
2924 become local. */
2925 if (h == NULL
2926 || ((info->symbolic || h->dynindx == -1)
f5385ebf 2927 && h->def_regular))
6edf0760
NC
2928 {
2929 relocate = TRUE;
2930 outrel.r_info = ELF32_R_INFO (0, R_M32R_RELATIVE);
2931 outrel.r_addend = relocation + rel->r_addend;
2932 }
2933 else
2934 {
2935 BFD_ASSERT (h->dynindx != -1);
2936 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
2937 outrel.r_addend = relocation + rel->r_addend;
2938 }
2939 }
2940
2941 loc = sreloc->contents;
47b0e7ad 2942 loc += sreloc->reloc_count * sizeof (Elf32_External_Rela);
6edf0760
NC
2943 bfd_elf32_swap_reloca_out (output_bfd, &outrel,loc);
2944 ++sreloc->reloc_count;
2945
2946 /* If this reloc is against an external symbol, we do
2947 not want to fiddle with the addend. Otherwise, we
2948 need to include the symbol value so that it becomes
2949 an addend for the dynamic reloc. */
2950 if (! relocate)
2951 continue;
2952 }
2953 break;
41978308 2954
252b5132
RH
2955 case (int) R_M32R_10_PCREL :
2956 r = m32r_elf_do_10_pcrel_reloc (input_bfd, howto, input_section,
2957 contents, offset,
2958 sec, relocation, addend);
6edf0760 2959 goto check_reloc;
252b5132
RH
2960
2961 case (int) R_M32R_HI16_SLO :
2962 case (int) R_M32R_HI16_ULO :
2963 {
2964 Elf_Internal_Rela *lorel;
2965
2966 /* We allow an arbitrary number of HI16 relocs before the
2967 LO16 reloc. This permits gcc to emit the HI and LO relocs
2968 itself. */
2969 for (lorel = rel + 1;
2970 (lorel < relend
2971 && (ELF32_R_TYPE (lorel->r_info) == R_M32R_HI16_SLO
2972 || ELF32_R_TYPE (lorel->r_info) == R_M32R_HI16_ULO));
2973 lorel++)
2974 continue;
2975 if (lorel < relend
2976 && ELF32_R_TYPE (lorel->r_info) == R_M32R_LO16)
2977 {
2978 m32r_elf_relocate_hi16 (input_bfd, r_type, rel, lorel,
2979 contents, relocation + addend);
2980 r = bfd_reloc_ok;
2981 }
2982 else
2983 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
2984 contents, offset,
2985 relocation, addend);
2986 }
6edf0760
NC
2987
2988 goto check_reloc;
252b5132 2989
af705ba8 2990 case (int) R_M32R_SDA16_RELA:
252b5132
RH
2991 case (int) R_M32R_SDA16 :
2992 {
2993 const char *name;
2994
2995 BFD_ASSERT (sec != NULL);
2996 name = bfd_get_section_name (abfd, sec);
2997
47b0e7ad 2998 if ( strcmp (name, ".sdata") == 0
252b5132
RH
2999 || strcmp (name, ".sbss") == 0
3000 || strcmp (name, ".scommon") == 0)
3001 {
3002 bfd_vma sda_base;
3003 bfd *out_bfd = sec->output_section->owner;
3004
3005 r = m32r_elf_final_sda_base (out_bfd, info,
3006 &errmsg,
3007 &sda_base);
3008 if (r != bfd_reloc_ok)
3009 {
b34976b6 3010 ret = FALSE;
252b5132
RH
3011 goto check_reloc;
3012 }
3013
3014 /* At this point `relocation' contains the object's
3015 address. */
3016 relocation -= sda_base;
3017 /* Now it contains the offset from _SDA_BASE_. */
3018 }
3019 else
3020 {
8f615d07 3021 (*_bfd_error_handler)
d003868e
AM
3022 (_("%B: The target (%s) of an %s relocation is in the wrong section (%A)"),
3023 input_bfd,
3024 sec,
8f615d07 3025 sym_name,
d003868e 3026 m32r_elf_howto_table[(int) r_type].name);
252b5132 3027 /*bfd_set_error (bfd_error_bad_value); ??? why? */
b34976b6 3028 ret = FALSE;
252b5132
RH
3029 continue;
3030 }
3031 }
47b0e7ad 3032 /* Fall through. */
6edf0760
NC
3033
3034 default : /* OLD_M32R_RELOC */
252b5132 3035
252b5132
RH
3036 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
3037 contents, offset,
3038 relocation, addend);
6edf0760 3039 goto check_reloc;
252b5132 3040 }
6edf0760
NC
3041
3042 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
3043 contents, rel->r_offset,
3044 relocation, rel->r_addend);
3045
252b5132
RH
3046 }
3047
3048 check_reloc:
3049
3050 if (r != bfd_reloc_ok)
3051 {
3052 /* FIXME: This should be generic enough to go in a utility. */
3053 const char *name;
3054
3055 if (h != NULL)
3056 name = h->root.root.string;
3057 else
3058 {
3059 name = (bfd_elf_string_from_elf_section
3060 (input_bfd, symtab_hdr->sh_link, sym->st_name));
3061 if (name == NULL || *name == '\0')
3062 name = bfd_section_name (input_bfd, sec);
3063 }
3064
3065 if (errmsg != NULL)
3066 goto common_error;
3067
3068 switch (r)
3069 {
3070 case bfd_reloc_overflow:
3071 if (! ((*info->callbacks->reloc_overflow)
dfeffb9f
L
3072 (info, (h ? &h->root : NULL), name, howto->name,
3073 (bfd_vma) 0, input_bfd, input_section, offset)))
b34976b6 3074 return FALSE;
252b5132
RH
3075 break;
3076
3077 case bfd_reloc_undefined:
3078 if (! ((*info->callbacks->undefined_symbol)
3079 (info, name, input_bfd, input_section,
b34976b6
AM
3080 offset, TRUE)))
3081 return FALSE;
252b5132
RH
3082 break;
3083
3084 case bfd_reloc_outofrange:
3085 errmsg = _("internal error: out of range error");
3086 goto common_error;
3087
3088 case bfd_reloc_notsupported:
3089 errmsg = _("internal error: unsupported relocation error");
3090 goto common_error;
3091
3092 case bfd_reloc_dangerous:
3093 errmsg = _("internal error: dangerous error");
3094 goto common_error;
3095
3096 default:
3097 errmsg = _("internal error: unknown error");
3098 /* fall through */
3099
3100 common_error:
3101 if (!((*info->callbacks->warning)
3102 (info, errmsg, name, input_bfd, input_section,
3103 offset)))
b34976b6 3104 return FALSE;
252b5132
RH
3105 break;
3106 }
3107 }
3108 }
3109
3110 return ret;
3111}
6edf0760
NC
3112
3113/* Finish up dynamic symbol handling. We set the contents of various
3114 dynamic sections here. */
47b0e7ad 3115
6edf0760 3116static bfd_boolean
47b0e7ad
NC
3117m32r_elf_finish_dynamic_symbol (bfd *output_bfd,
3118 struct bfd_link_info *info,
3119 struct elf_link_hash_entry *h,
3120 Elf_Internal_Sym *sym)
6edf0760
NC
3121{
3122 struct elf_m32r_link_hash_table *htab;
3123 bfd *dynobj;
3124 bfd_byte *loc;
41978308 3125
6edf0760 3126#ifdef DEBUG_PIC
47b0e7ad 3127 printf ("m32r_elf_finish_dynamic_symbol()\n");
6edf0760 3128#endif
41978308 3129
6edf0760
NC
3130 htab = m32r_elf_hash_table (info);
3131 dynobj = htab->root.dynobj;
3132
3133 if (h->plt.offset != (bfd_vma) -1)
3134 {
3135 asection *splt;
3136 asection *sgot;
3137 asection *srela;
3138
3139 bfd_vma plt_index;
3140 bfd_vma got_offset;
3141 Elf_Internal_Rela rela;
41978308 3142
6edf0760
NC
3143 /* This symbol has an entry in the procedure linkage table. Set
3144 it up. */
41978308 3145
6edf0760 3146 BFD_ASSERT (h->dynindx != -1);
41978308 3147
6edf0760
NC
3148 splt = htab->splt;
3149 sgot = htab->sgotplt;
3150 srela = htab->srelplt;
3151 BFD_ASSERT (splt != NULL && sgot != NULL && srela != NULL);
3152
3153 /* Get the index in the procedure linkage table which
3154 corresponds to this symbol. This is the index of this symbol
3155 in all the symbols for which we are making plt entries. The
3156 first entry in the procedure linkage table is reserved. */
3157 plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
3158
3159 /* Get the offset into the .got table of the entry that
3160 corresponds to this function. Each .got entry is 4 bytes.
3161 The first three are reserved. */
3162 got_offset = (plt_index + 3) * 4;
3163
3164 /* Fill in the entry in the procedure linkage table. */
3165 if (! info->shared)
3166 {
3167 bfd_put_32 (output_bfd,
3168 (PLT_ENTRY_WORD0b
3169 + (((sgot->output_section->vma
3170 + sgot->output_offset
3171 + got_offset) >> 16) & 0xffff)),
3172 splt->contents + h->plt.offset);
3173 bfd_put_32 (output_bfd,
3174 (PLT_ENTRY_WORD1b
3175 + ((sgot->output_section->vma
3176 + sgot->output_offset
3177 + got_offset) & 0xffff)),
3178 splt->contents + h->plt.offset + 4);
3179 bfd_put_32 (output_bfd, PLT_ENTRY_WORD2,
3180 splt->contents + h->plt.offset + 8);
3181 bfd_put_32 (output_bfd,
3182 (PLT_ENTRY_WORD3
3183 + plt_index * sizeof (Elf32_External_Rela)),
3184 splt->contents + h->plt.offset + 12);
3185 bfd_put_32 (output_bfd,
3186 (PLT_ENTRY_WORD4
3187 + (((unsigned int) ((- (h->plt.offset + 16)) >> 2)) & 0xffffff)),
3188 splt->contents + h->plt.offset + 16);
3189 }
3190 else
3191 {
3192 bfd_put_32 (output_bfd,
3193 PLT_ENTRY_WORD0 + got_offset,
3194 splt->contents + h->plt.offset);
3195 bfd_put_32 (output_bfd, PLT_ENTRY_WORD1,
3196 splt->contents + h->plt.offset + 4);
3197 bfd_put_32 (output_bfd, PLT_ENTRY_WORD2,
3198 splt->contents + h->plt.offset + 8);
3199 bfd_put_32 (output_bfd,
3200 (PLT_ENTRY_WORD3
3201 + plt_index * sizeof (Elf32_External_Rela)),
3202 splt->contents + h->plt.offset + 12);
3203 bfd_put_32 (output_bfd,
3204 (PLT_ENTRY_WORD4
3205 + (((unsigned int) ((- (h->plt.offset + 16)) >> 2)) & 0xffffff)),
3206 splt->contents + h->plt.offset + 16);
3207 }
41978308 3208
6edf0760
NC
3209 /* Fill in the entry in the global offset table. */
3210 bfd_put_32 (output_bfd,
3211 (splt->output_section->vma
3212 + splt->output_offset
3213 + h->plt.offset
3214 + 12), /* same offset */
3215 sgot->contents + got_offset);
3216
3217 /* Fill in the entry in the .rela.plt section. */
3218 rela.r_offset = (sgot->output_section->vma
3219 + sgot->output_offset
3220 + got_offset);
3221 rela.r_info = ELF32_R_INFO (h->dynindx, R_M32R_JMP_SLOT);
3222 rela.r_addend = 0;
3223 loc = srela->contents;
47b0e7ad 3224 loc += plt_index * sizeof (Elf32_External_Rela);
6edf0760 3225 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
41978308 3226
f5385ebf 3227 if (!h->def_regular)
6edf0760
NC
3228 {
3229 /* Mark the symbol as undefined, rather than as defined in
3230 the .plt section. Leave the value alone. */
3231 sym->st_shndx = SHN_UNDEF;
3232 }
3233 }
3234
3235 if (h->got.offset != (bfd_vma) -1)
3236 {
3237 asection *sgot;
3238 asection *srela;
3239 Elf_Internal_Rela rela;
41978308 3240
6edf0760
NC
3241 /* This symbol has an entry in the global offset table. Set it
3242 up. */
41978308 3243
6edf0760
NC
3244 sgot = htab->sgot;
3245 srela = htab->srelgot;
3246 BFD_ASSERT (sgot != NULL && srela != NULL);
41978308 3247
6edf0760
NC
3248 rela.r_offset = (sgot->output_section->vma
3249 + sgot->output_offset
3250 + (h->got.offset &~ 1));
41978308 3251
6edf0760
NC
3252 /* If this is a -Bsymbolic link, and the symbol is defined
3253 locally, we just want to emit a RELATIVE reloc. Likewise if
3254 the symbol was forced to be local because of a version file.
3255 The entry in the global offset table will already have been
3256 initialized in the relocate_section function. */
3257 if (info->shared
3258 && (info->symbolic
3259 || h->dynindx == -1
f5385ebf
AM
3260 || h->forced_local)
3261 && h->def_regular)
6edf0760
NC
3262 {
3263 rela.r_info = ELF32_R_INFO (0, R_M32R_RELATIVE);
3264 rela.r_addend = (h->root.u.def.value
3265 + h->root.u.def.section->output_section->vma
3266 + h->root.u.def.section->output_offset);
3267 }
3268 else
3269 {
47b0e7ad 3270 BFD_ASSERT ((h->got.offset & 1) == 0);
6edf0760
NC
3271 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + h->got.offset);
3272 rela.r_info = ELF32_R_INFO (h->dynindx, R_M32R_GLOB_DAT);
3273 rela.r_addend = 0;
3274 }
41978308 3275
6edf0760 3276 loc = srela->contents;
47b0e7ad 3277 loc += srela->reloc_count * sizeof (Elf32_External_Rela);
6edf0760
NC
3278 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
3279 ++srela->reloc_count;
3280 }
41978308 3281
f5385ebf 3282 if (h->needs_copy)
6edf0760
NC
3283 {
3284 asection *s;
3285 Elf_Internal_Rela rela;
41978308 3286
6edf0760 3287 /* This symbols needs a copy reloc. Set it up. */
41978308 3288
6edf0760
NC
3289 BFD_ASSERT (h->dynindx != -1
3290 && (h->root.type == bfd_link_hash_defined
3291 || h->root.type == bfd_link_hash_defweak));
41978308 3292
6edf0760
NC
3293 s = bfd_get_section_by_name (h->root.u.def.section->owner,
3294 ".rela.bss");
3295 BFD_ASSERT (s != NULL);
41978308 3296
6edf0760
NC
3297 rela.r_offset = (h->root.u.def.value
3298 + h->root.u.def.section->output_section->vma
3299 + h->root.u.def.section->output_offset);
3300 rela.r_info = ELF32_R_INFO (h->dynindx, R_M32R_COPY);
3301 rela.r_addend = 0;
3302 loc = s->contents;
47b0e7ad 3303 loc += s->reloc_count * sizeof (Elf32_External_Rela);
6edf0760
NC
3304 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
3305 ++s->reloc_count;
3306 }
41978308 3307
6edf0760
NC
3308 /* Mark some specially defined symbols as absolute. */
3309 if (strcmp (h->root.root.string, "_DYNAMIC") == 0
3310 || strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
3311 sym->st_shndx = SHN_ABS;
41978308 3312
6edf0760
NC
3313 return TRUE;
3314}
3315
3316
3317/* Finish up the dynamic sections. */
41978308 3318
6edf0760 3319static bfd_boolean
47b0e7ad
NC
3320m32r_elf_finish_dynamic_sections (bfd *output_bfd,
3321 struct bfd_link_info *info)
6edf0760
NC
3322{
3323 struct elf_m32r_link_hash_table *htab;
3324 bfd *dynobj;
3325 asection *sdyn;
3326 asection *sgot;
3327
3328#ifdef DEBUG_PIC
47b0e7ad 3329 printf ("m32r_elf_finish_dynamic_sections()\n");
6edf0760 3330#endif
41978308 3331
6edf0760
NC
3332 htab = m32r_elf_hash_table (info);
3333 dynobj = htab->root.dynobj;
3334
3335 sgot = htab->sgotplt;
3336 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
41978308 3337
6edf0760
NC
3338 if (htab->root.dynamic_sections_created)
3339 {
3340 asection *splt;
3341 Elf32_External_Dyn *dyncon, *dynconend;
41978308 3342
6edf0760 3343 BFD_ASSERT (sgot != NULL && sdyn != NULL);
41978308 3344
6edf0760 3345 dyncon = (Elf32_External_Dyn *) sdyn->contents;
eea6121a 3346 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
6edf0760
NC
3347
3348 for (; dyncon < dynconend; dyncon++)
3349 {
3350 Elf_Internal_Dyn dyn;
3351 const char *name;
3352 asection *s;
41978308 3353
6edf0760 3354 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
41978308 3355
6edf0760
NC
3356 switch (dyn.d_tag)
3357 {
3358 default:
3359 break;
3360
3361 case DT_PLTGOT:
3362 name = ".got";
41978308 3363 s = htab->sgot->output_section;
6edf0760
NC
3364 goto get_vma;
3365 case DT_JMPREL:
3366 name = ".rela.plt";
3367 s = htab->srelplt->output_section;
3368 get_vma:
3369 BFD_ASSERT (s != NULL);
3370 dyn.d_un.d_ptr = s->vma;
3371 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
3372 break;
3373
3374 case DT_PLTRELSZ:
3375 s = htab->srelplt->output_section;
3376 BFD_ASSERT (s != NULL);
eea6121a 3377 dyn.d_un.d_val = s->size;
6edf0760
NC
3378 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
3379 break;
3380
3381 case DT_RELASZ:
3382 /* My reading of the SVR4 ABI indicates that the
3383 procedure linkage table relocs (DT_JMPREL) should be
3384 included in the overall relocs (DT_RELA). This is
3385 what Solaris does. However, UnixWare can not handle
3386 that case. Therefore, we override the DT_RELASZ entry
3387 here to make it not include the JMPREL relocs. Since
3388 the linker script arranges for .rela.plt to follow all
3389 other relocation sections, we don't have to worry
3390 about changing the DT_RELA entry. */
3391 if (htab->srelplt != NULL)
3392 {
3393 s = htab->srelplt->output_section;
eea6121a 3394 dyn.d_un.d_val -= s->size;
6edf0760
NC
3395 }
3396 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
3397 break;
3398 }
3399 }
41978308 3400
6edf0760
NC
3401 /* Fill in the first entry in the procedure linkage table. */
3402 splt = htab->splt;
eea6121a 3403 if (splt && splt->size > 0)
6edf0760
NC
3404 {
3405 if (info->shared)
3406 {
3407 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD0, splt->contents);
3408 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD1, splt->contents + 4);
3409 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD2, splt->contents + 8);
3410 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD3, splt->contents + 12);
3411 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD4, splt->contents + 16);
3412 }
3413 else
3414 {
3415 unsigned long addr;
3416 /* addr = .got + 4 */
3417 addr = sgot->output_section->vma + sgot->output_offset + 4;
3418 bfd_put_32 (output_bfd,
3419 PLT0_ENTRY_WORD0 | ((addr >> 16) & 0xffff),
3420 splt->contents);
41978308 3421 bfd_put_32 (output_bfd,
6edf0760
NC
3422 PLT0_ENTRY_WORD1 | (addr & 0xffff),
3423 splt->contents + 4);
3424 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD2, splt->contents + 8);
3425 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD3, splt->contents + 12);
3426 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD4, splt->contents + 16);
3427 }
3428
3429 elf_section_data (splt->output_section)->this_hdr.sh_entsize =
3430 PLT_ENTRY_SIZE;
3431 }
3432 }
3433
3434 /* Fill in the first three entries in the global offset table. */
eea6121a 3435 if (sgot && sgot->size > 0)
6edf0760
NC
3436 {
3437 if (sdyn == NULL)
3438 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
3439 else
3440 bfd_put_32 (output_bfd,
3441 sdyn->output_section->vma + sdyn->output_offset,
3442 sgot->contents);
3443 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
3444 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
3445
3446 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
3447 }
41978308 3448
6edf0760
NC
3449 return TRUE;
3450}
3451
252b5132
RH
3452\f
3453/* Set the right machine number. */
47b0e7ad 3454
b34976b6 3455static bfd_boolean
47b0e7ad 3456m32r_elf_object_p (bfd *abfd)
252b5132
RH
3457{
3458 switch (elf_elfheader (abfd)->e_flags & EF_M32R_ARCH)
3459 {
3460 default:
3461 case E_M32R_ARCH: (void) bfd_default_set_arch_mach (abfd, bfd_arch_m32r, bfd_mach_m32r); break;
e916b64e 3462 case E_M32RX_ARCH: (void) bfd_default_set_arch_mach (abfd, bfd_arch_m32r, bfd_mach_m32rx); break;
88845958 3463 case E_M32R2_ARCH: (void) bfd_default_set_arch_mach (abfd, bfd_arch_m32r, bfd_mach_m32r2); break;
252b5132 3464 }
b34976b6 3465 return TRUE;
252b5132
RH
3466}
3467
3468/* Store the machine number in the flags field. */
47b0e7ad 3469
252b5132 3470static void
47b0e7ad
NC
3471m32r_elf_final_write_processing (bfd *abfd,
3472 bfd_boolean linker ATTRIBUTE_UNUSED)
252b5132
RH
3473{
3474 unsigned long val;
3475
3476 switch (bfd_get_mach (abfd))
3477 {
3478 default:
3479 case bfd_mach_m32r: val = E_M32R_ARCH; break;
e916b64e 3480 case bfd_mach_m32rx: val = E_M32RX_ARCH; break;
88845958 3481 case bfd_mach_m32r2: val = E_M32R2_ARCH; break;
252b5132
RH
3482 }
3483
3484 elf_elfheader (abfd)->e_flags &=~ EF_M32R_ARCH;
3485 elf_elfheader (abfd)->e_flags |= val;
3486}
3487
c3668558 3488/* Function to keep M32R specific file flags. */
47b0e7ad 3489
b34976b6 3490static bfd_boolean
47b0e7ad 3491m32r_elf_set_private_flags (bfd *abfd, flagword flags)
252b5132
RH
3492{
3493 BFD_ASSERT (!elf_flags_init (abfd)
3494 || elf_elfheader (abfd)->e_flags == flags);
3495
3496 elf_elfheader (abfd)->e_flags = flags;
b34976b6
AM
3497 elf_flags_init (abfd) = TRUE;
3498 return TRUE;
252b5132
RH
3499}
3500
252b5132
RH
3501/* Merge backend specific data from an object file to the output
3502 object file when linking. */
47b0e7ad 3503
b34976b6 3504static bfd_boolean
47b0e7ad 3505m32r_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
252b5132
RH
3506{
3507 flagword out_flags;
3508 flagword in_flags;
3509
3510 if ( bfd_get_flavour (ibfd) != bfd_target_elf_flavour
3511 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 3512 return TRUE;
252b5132
RH
3513
3514 in_flags = elf_elfheader (ibfd)->e_flags;
3515 out_flags = elf_elfheader (obfd)->e_flags;
3516
3517 if (! elf_flags_init (obfd))
3518 {
3519 /* If the input is the default architecture then do not
3520 bother setting the flags for the output architecture,
3521 instead allow future merges to do this. If no future
3522 merges ever set these flags then they will retain their
3523 unitialised values, which surprise surprise, correspond
3524 to the default values. */
3525 if (bfd_get_arch_info (ibfd)->the_default)
b34976b6 3526 return TRUE;
c3668558 3527
b34976b6 3528 elf_flags_init (obfd) = TRUE;
252b5132
RH
3529 elf_elfheader (obfd)->e_flags = in_flags;
3530
3531 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
3532 && bfd_get_arch_info (obfd)->the_default)
47b0e7ad
NC
3533 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
3534 bfd_get_mach (ibfd));
252b5132 3535
b34976b6 3536 return TRUE;
252b5132
RH
3537 }
3538
3539 /* Check flag compatibility. */
3540 if (in_flags == out_flags)
b34976b6 3541 return TRUE;
252b5132
RH
3542
3543 if ((in_flags & EF_M32R_ARCH) != (out_flags & EF_M32R_ARCH))
3544 {
88845958
NC
3545 if ( ((in_flags & EF_M32R_ARCH) != E_M32R_ARCH)
3546 || ((out_flags & EF_M32R_ARCH) == E_M32R_ARCH)
3547 || ((in_flags & EF_M32R_ARCH) == E_M32R2_ARCH))
252b5132 3548 {
8f615d07 3549 (*_bfd_error_handler)
d003868e 3550 (_("%B: Instruction set mismatch with previous modules"), ibfd);
252b5132
RH
3551
3552 bfd_set_error (bfd_error_bad_value);
b34976b6 3553 return FALSE;
252b5132
RH
3554 }
3555 }
3556
b34976b6 3557 return TRUE;
252b5132
RH
3558}
3559
47b0e7ad
NC
3560/* Display the flags field. */
3561
b34976b6 3562static bfd_boolean
47b0e7ad 3563m32r_elf_print_private_bfd_data (bfd *abfd, void * ptr)
252b5132
RH
3564{
3565 FILE * file = (FILE *) ptr;
c3668558 3566
f12123c0 3567 BFD_ASSERT (abfd != NULL && ptr != NULL);
c3668558 3568
252b5132 3569 _bfd_elf_print_private_bfd_data (abfd, ptr);
c3668558 3570
252b5132 3571 fprintf (file, _("private flags = %lx"), elf_elfheader (abfd)->e_flags);
c3668558 3572
252b5132
RH
3573 switch (elf_elfheader (abfd)->e_flags & EF_M32R_ARCH)
3574 {
3575 default:
3576 case E_M32R_ARCH: fprintf (file, _(": m32r instructions")); break;
e916b64e 3577 case E_M32RX_ARCH: fprintf (file, _(": m32rx instructions")); break;
88845958 3578 case E_M32R2_ARCH: fprintf (file, _(": m32r2 instructions")); break;
252b5132 3579 }
c3668558 3580
252b5132 3581 fputc ('\n', file);
c3668558 3582
b34976b6 3583 return TRUE;
252b5132
RH
3584}
3585
47b0e7ad
NC
3586static asection *
3587m32r_elf_gc_mark_hook (asection *sec,
3588 struct bfd_link_info *info ATTRIBUTE_UNUSED,
3589 Elf_Internal_Rela *rel,
3590 struct elf_link_hash_entry *h,
3591 Elf_Internal_Sym *sym)
252b5132
RH
3592{
3593 if (h != NULL)
3594 {
3595 switch (ELF32_R_TYPE (rel->r_info))
3596 {
3597 case R_M32R_GNU_VTINHERIT:
3598 case R_M32R_GNU_VTENTRY:
6edf0760
NC
3599 case R_M32R_RELA_GNU_VTINHERIT:
3600 case R_M32R_RELA_GNU_VTENTRY:
252b5132 3601 break;
c3668558 3602
252b5132
RH
3603 default:
3604 switch (h->root.type)
3605 {
3606 case bfd_link_hash_defined:
3607 case bfd_link_hash_defweak:
3608 return h->root.u.def.section;
c3668558 3609
252b5132
RH
3610 case bfd_link_hash_common:
3611 return h->root.u.c.p->section;
e049a0de
ILT
3612
3613 default:
3614 break;
252b5132
RH
3615 }
3616 }
3617 }
3618 else
1e2f5b6e
AM
3619 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
3620
252b5132
RH
3621 return NULL;
3622}
3623
b34976b6 3624static bfd_boolean
47b0e7ad
NC
3625m32r_elf_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED,
3626 struct bfd_link_info *info ATTRIBUTE_UNUSED,
3627 asection *sec ATTRIBUTE_UNUSED,
3628 const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
252b5132 3629{
6edf0760
NC
3630 /* Update the got entry reference counts for the section being removed. */
3631 Elf_Internal_Shdr *symtab_hdr;
3632 struct elf_link_hash_entry **sym_hashes;
3633 bfd_signed_vma *local_got_refcounts;
3634 const Elf_Internal_Rela *rel, *relend;
6edf0760
NC
3635
3636 elf_section_data (sec)->local_dynrel = NULL;
3637
3638 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3639 sym_hashes = elf_sym_hashes (abfd);
3640 local_got_refcounts = elf_local_got_refcounts (abfd);
3641
3642 relend = relocs + sec->reloc_count;
3643 for (rel = relocs; rel < relend; rel++)
3eb128b2
AM
3644 {
3645 unsigned long r_symndx;
3646 struct elf_link_hash_entry *h = NULL;
6edf0760 3647
3eb128b2
AM
3648 r_symndx = ELF32_R_SYM (rel->r_info);
3649 if (r_symndx >= symtab_hdr->sh_info)
3650 {
3651 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3652 while (h->root.type == bfd_link_hash_indirect
3653 || h->root.type == bfd_link_hash_warning)
3654 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3655 }
6edf0760 3656
3eb128b2
AM
3657 switch (ELF32_R_TYPE (rel->r_info))
3658 {
3659 case R_M32R_GOT16_HI_ULO:
3660 case R_M32R_GOT16_HI_SLO:
3661 case R_M32R_GOT16_LO:
3662 case R_M32R_GOTOFF:
3663 case R_M32R_GOTOFF_HI_ULO:
3664 case R_M32R_GOTOFF_HI_SLO:
3665 case R_M32R_GOTOFF_LO:
3666 case R_M32R_GOT24:
3667 case R_M32R_GOTPC_HI_ULO:
3668 case R_M32R_GOTPC_HI_SLO:
3669 case R_M32R_GOTPC_LO:
3670 case R_M32R_GOTPC24:
3671 if (h != NULL)
3672 {
3673 if (h->got.refcount > 0)
3674 h->got.refcount--;
3675 }
3676 else
3677 {
3678 if (local_got_refcounts && local_got_refcounts[r_symndx] > 0)
3679 local_got_refcounts[r_symndx]--;
3680 }
3681 break;
3682
3683 case R_M32R_16_RELA:
3684 case R_M32R_24_RELA:
3685 case R_M32R_32_RELA:
3686 case R_M32R_HI16_ULO_RELA:
3687 case R_M32R_HI16_SLO_RELA:
3688 case R_M32R_LO16_RELA:
3689 case R_M32R_SDA16_RELA:
3690 case R_M32R_18_PCREL_RELA:
3691 case R_M32R_26_PCREL_RELA:
3692 if (h != NULL)
3693 {
3694 struct elf_m32r_link_hash_entry *eh;
3695 struct elf_m32r_dyn_relocs **pp;
3696 struct elf_m32r_dyn_relocs *p;
6edf0760 3697
3eb128b2
AM
3698 if (!info->shared && h->plt.refcount > 0)
3699 h->plt.refcount -= 1;
6edf0760 3700
3eb128b2 3701 eh = (struct elf_m32r_link_hash_entry *) h;
6edf0760 3702
3eb128b2
AM
3703 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
3704 if (p->sec == sec)
3705 {
3706 if (ELF32_R_TYPE (rel->r_info) == R_M32R_26_PCREL_RELA
3707 || ELF32_R_TYPE (rel->r_info) == R_M32R_26_PCREL_RELA)
3708 p->pc_count -= 1;
3709 p->count -= 1;
3710 if (p->count == 0)
3711 *pp = p->next;
3712 break;
3713 }
3714 }
3715 break;
6edf0760 3716
3eb128b2
AM
3717 case R_M32R_26_PLTREL:
3718 if (h != NULL)
3719 {
3720 if (h->plt.refcount > 0)
3721 h->plt.refcount--;
3722 }
3723 break;
6edf0760 3724
3eb128b2
AM
3725 default:
3726 break;
3727 }
3728 }
6edf0760 3729
b34976b6 3730 return TRUE;
252b5132
RH
3731}
3732
252b5132
RH
3733/* Look through the relocs for a section during the first phase.
3734 Since we don't do .gots or .plts, we just need to consider the
3735 virtual table relocs for gc. */
c3668558 3736
b34976b6 3737static bfd_boolean
47b0e7ad
NC
3738m32r_elf_check_relocs (bfd *abfd,
3739 struct bfd_link_info *info,
3740 asection *sec,
3741 const Elf_Internal_Rela *relocs)
252b5132
RH
3742{
3743 Elf_Internal_Shdr *symtab_hdr;
3744 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
3745 const Elf_Internal_Rela *rel;
3746 const Elf_Internal_Rela *rel_end;
6edf0760
NC
3747 struct elf_m32r_link_hash_table *htab;
3748 bfd *dynobj;
3749 bfd_vma *local_got_offsets;
3750 asection *sgot, *srelgot, *sreloc;
c3668558 3751
1049f94e 3752 if (info->relocatable)
b34976b6 3753 return TRUE;
c3668558 3754
6edf0760
NC
3755 sgot = srelgot = sreloc = NULL;
3756
252b5132
RH
3757 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3758 sym_hashes = elf_sym_hashes (abfd);
c3668558 3759 sym_hashes_end = sym_hashes + symtab_hdr->sh_size/sizeof (Elf32_External_Sym);
252b5132
RH
3760 if (!elf_bad_symtab (abfd))
3761 sym_hashes_end -= symtab_hdr->sh_info;
c3668558 3762
6edf0760
NC
3763 htab = m32r_elf_hash_table (info);
3764 dynobj = htab->root.dynobj;
3765 local_got_offsets = elf_local_got_offsets (abfd);
3766
252b5132
RH
3767 rel_end = relocs + sec->reloc_count;
3768 for (rel = relocs; rel < rel_end; rel++)
3769 {
6edf0760 3770 int r_type;
252b5132
RH
3771 struct elf_link_hash_entry *h;
3772 unsigned long r_symndx;
c3668558 3773
252b5132 3774 r_symndx = ELF32_R_SYM (rel->r_info);
6edf0760 3775 r_type = ELF32_R_TYPE (rel->r_info);
252b5132
RH
3776 if (r_symndx < symtab_hdr->sh_info)
3777 h = NULL;
3778 else
973a3492
L
3779 {
3780 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3781 while (h->root.type == bfd_link_hash_indirect
3782 || h->root.type == bfd_link_hash_warning)
3783 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3784 }
c3668558 3785
6edf0760
NC
3786 /* Some relocs require a global offset table. */
3787 if (htab->sgot == NULL)
3788 {
3789 switch (r_type)
3790 {
3791 case R_M32R_GOT16_HI_ULO:
3792 case R_M32R_GOT16_HI_SLO:
097f809a
NC
3793 case R_M32R_GOTOFF:
3794 case R_M32R_GOTOFF_HI_ULO:
3795 case R_M32R_GOTOFF_HI_SLO:
3796 case R_M32R_GOTOFF_LO:
6edf0760
NC
3797 case R_M32R_GOT16_LO:
3798 case R_M32R_GOTPC24:
3799 case R_M32R_GOTPC_HI_ULO:
3800 case R_M32R_GOTPC_HI_SLO:
3801 case R_M32R_GOTPC_LO:
3802 case R_M32R_GOT24:
3803 if (dynobj == NULL)
3804 htab->root.dynobj = dynobj = abfd;
3805 if (! create_got_section (dynobj, info))
3806 return FALSE;
3807 break;
3808
3809 default:
3810 break;
3811 }
3812 }
3813
3814 switch (r_type)
252b5132 3815 {
6edf0760
NC
3816 case R_M32R_GOT16_HI_ULO:
3817 case R_M32R_GOT16_HI_SLO:
41978308 3818 case R_M32R_GOT16_LO:
6edf0760
NC
3819 case R_M32R_GOT24:
3820
3821 if (h != NULL)
3822 h->got.refcount += 1;
3823 else
3824 {
3825 bfd_signed_vma *local_got_refcounts;
3826
3827 /* This is a global offset table entry for a local
3828 symbol. */
3829 local_got_refcounts = elf_local_got_refcounts (abfd);
3830 if (local_got_refcounts == NULL)
3831 {
3832 bfd_size_type size;
3833
3834 size = symtab_hdr->sh_info;
3835 size *= sizeof (bfd_signed_vma);
47b0e7ad 3836 local_got_refcounts = bfd_zalloc (abfd, size);
6edf0760
NC
3837 if (local_got_refcounts == NULL)
3838 return FALSE;
3839 elf_local_got_refcounts (abfd) = local_got_refcounts;
3840 }
3841 local_got_refcounts[r_symndx] += 1;
3842 }
3843 break;
3844
3845 case R_M32R_26_PLTREL:
3846 /* This symbol requires a procedure linkage table entry. We
3847 actually build the entry in adjust_dynamic_symbol,
3848 because this might be a case of linking PIC code without
3849 linking in any dynamic objects, in which case we don't
3850 need to generate a procedure linkage table after all. */
41978308 3851
6edf0760
NC
3852 /* If this is a local symbol, we resolve it directly without
3853 creating a procedure linkage table entry. */
3854 if (h == NULL)
3855 continue;
3856
f5385ebf 3857 if (h->forced_local)
6edf0760
NC
3858 break;
3859
f5385ebf 3860 h->needs_plt = 1;
6edf0760
NC
3861 h->plt.refcount += 1;
3862 break;
3863
3864 case R_M32R_16_RELA:
3865 case R_M32R_24_RELA:
3866 case R_M32R_32_RELA:
3867 case R_M32R_HI16_ULO_RELA:
3868 case R_M32R_HI16_SLO_RELA:
3869 case R_M32R_LO16_RELA:
3870 case R_M32R_SDA16_RELA:
3871 case R_M32R_18_PCREL_RELA:
3872 case R_M32R_26_PCREL_RELA:
3873
3874 if (h != NULL && !info->shared)
3875 {
f5385ebf 3876 h->non_got_ref = 1;
6edf0760
NC
3877 h->plt.refcount += 1;
3878 }
3879
3880 /* If we are creating a shared library, and this is a reloc
3881 against a global symbol, or a non PC relative reloc
3882 against a local symbol, then we need to copy the reloc
3883 into the shared library. However, if we are linking with
3884 -Bsymbolic, we do not need to copy a reloc against a
3885 global symbol which is defined in an object we are
3886 including in the link (i.e., DEF_REGULAR is set). At
3887 this point we have not seen all the input files, so it is
3888 possible that DEF_REGULAR is not set now but will be set
3889 later (it is never cleared). We account for that
3890 possibility below by storing information in the
3891 dyn_relocs field of the hash table entry. A similar
3892 situation occurs when creating shared libraries and symbol
3893 visibility changes render the symbol local.
3894
3895 If on the other hand, we are creating an executable, we
3896 may need to keep relocations for symbols satisfied by a
3897 dynamic library if we manage to avoid copy relocs for the
3898 symbol. */
3899 if ((info->shared
3900 && (sec->flags & SEC_ALLOC) != 0
3901 && ((r_type != R_M32R_26_PCREL_RELA
3902 && r_type != R_M32R_18_PCREL_RELA)
3903 || (h != NULL
3904 && (! info->symbolic
3905 || h->root.type == bfd_link_hash_defweak
f5385ebf 3906 || !h->def_regular))))
6edf0760
NC
3907 || (!info->shared
3908 && (sec->flags & SEC_ALLOC) != 0
3909 && h != NULL
3910 && (h->root.type == bfd_link_hash_defweak
f5385ebf 3911 || !h->def_regular)))
6edf0760
NC
3912 {
3913 struct elf_m32r_dyn_relocs *p;
3914 struct elf_m32r_dyn_relocs **head;
3915
3916 if (dynobj == NULL)
3917 htab->root.dynobj = dynobj = abfd;
3918
3919 /* When creating a shared object, we must copy these
3920 relocs into the output file. We create a reloc
3921 section in dynobj and make room for the reloc. */
3922 if (sreloc == NULL)
3923 {
3924 const char *name;
41978308 3925
6edf0760
NC
3926 name = (bfd_elf_string_from_elf_section
3927 (abfd,
3928 elf_elfheader (abfd)->e_shstrndx,
3929 elf_section_data (sec)->rel_hdr.sh_name));
3930 if (name == NULL)
3931 return FALSE;
41978308 3932
6edf0760
NC
3933 BFD_ASSERT (strncmp (name, ".rela", 5) == 0
3934 && strcmp (bfd_get_section_name (abfd, sec),
3935 name + 5) == 0);
41978308 3936
6edf0760
NC
3937 sreloc = bfd_get_section_by_name (dynobj, name);
3938 if (sreloc == NULL)
3939 {
3940 flagword flags;
41978308 3941
6edf0760
NC
3942 flags = (SEC_HAS_CONTENTS | SEC_READONLY
3943 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
3944 if ((sec->flags & SEC_ALLOC) != 0)
3945 flags |= SEC_ALLOC | SEC_LOAD;
3496cb2a
L
3946 sreloc = bfd_make_section_with_flags (dynobj,
3947 name,
3948 flags);
6edf0760 3949 if (sreloc == NULL
6edf0760
NC
3950 || ! bfd_set_section_alignment (dynobj, sreloc, 2))
3951 return FALSE;
3952 }
3953 elf_section_data (sec)->sreloc = sreloc;
3954 }
41978308 3955
6edf0760
NC
3956 /* If this is a global symbol, we count the number of
3957 relocations we need for this symbol. */
3958 if (h != NULL)
3959 head = &((struct elf_m32r_link_hash_entry *) h)->dyn_relocs;
3960 else
3961 {
3962 asection *s;
3963
3964 /* Track dynamic relocs needed for local syms too. */
3965 s = bfd_section_from_r_symndx (abfd, &htab->sym_sec,
3966 sec, r_symndx);
3967 if (s == NULL)
3968 return FALSE;
3969
3970 head = ((struct elf_m32r_dyn_relocs **)
3971 &elf_section_data (s)->local_dynrel);
3972 }
3973
3974 p = *head;
3975 if (p == NULL || p->sec != sec)
3976 {
3977 bfd_size_type amt = sizeof (*p);
47b0e7ad
NC
3978
3979 p = bfd_alloc (dynobj, amt);
6edf0760
NC
3980 if (p == NULL)
3981 return FALSE;
3982 p->next = *head;
3983 *head = p;
3984 p->sec = sec;
3985 p->count = 0;
3986 p->pc_count = 0;
3987 }
3988
3989 p->count += 1;
3990 if (ELF32_R_TYPE (rel->r_info) == R_M32R_26_PCREL_RELA
3991 || ELF32_R_TYPE (rel->r_info) == R_M32R_18_PCREL_RELA)
3992 p->pc_count += 1;
3993 }
3994 break;
3995
252b5132
RH
3996 /* This relocation describes the C++ object vtable hierarchy.
3997 Reconstruct it for later use during GC. */
6edf0760 3998 case R_M32R_RELA_GNU_VTINHERIT:
252b5132 3999 case R_M32R_GNU_VTINHERIT:
c152c796 4000 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
b34976b6 4001 return FALSE;
252b5132 4002 break;
c3668558 4003
252b5132
RH
4004 /* This relocation describes which C++ vtable entries are actually
4005 used. Record for later use during GC. */
4006 case R_M32R_GNU_VTENTRY:
c152c796 4007 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
b34976b6 4008 return FALSE;
252b5132 4009 break;
6edf0760 4010 case R_M32R_RELA_GNU_VTENTRY:
c152c796 4011 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
6edf0760
NC
4012 return FALSE;
4013 break;
252b5132
RH
4014 }
4015 }
c3668558 4016
b34976b6 4017 return TRUE;
252b5132 4018}
2f89ff8d 4019
b35d266b 4020static const struct bfd_elf_special_section m32r_elf_special_sections[] =
2f89ff8d 4021{
7dcb9820 4022 { ".sbss", 5, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
551b43fd
AM
4023 { ".sdata", 6, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
4024 { NULL, 0, 0, 0, 0 }
7f4d3958
L
4025};
4026
6edf0760 4027static bfd_boolean
47b0e7ad
NC
4028m32r_elf_fake_sections (bfd *abfd,
4029 Elf_Internal_Shdr *hdr ATTRIBUTE_UNUSED,
4030 asection *sec)
6edf0760 4031{
47b0e7ad 4032 const char *name;
6edf0760
NC
4033
4034 name = bfd_get_section_name (abfd, sec);
4035
4036 /* The generic elf_fake_sections will set up REL_HDR using the
4037 default kind of relocations. But, we may actually need both
4038 kinds of relocations, so we set up the second header here.
4039
4040 This is not necessary for the O32 ABI since that only uses Elf32_Rel
4041 relocations (cf. System V ABI, MIPS RISC Processor Supplement,
4042 3rd Edition, p. 4-17). It breaks the IRIX 5/6 32-bit ld, since one
4043 of the resulting empty .rela.<section> sections starts with
4044 sh_offset == object size, and ld doesn't allow that. While the check
4045 is arguably bogus for empty or SHT_NOBITS sections, it can easily be
4046 avoided by not emitting those useless sections in the first place. */
4047 if ((sec->flags & SEC_RELOC) != 0)
4048 {
4049 struct bfd_elf_section_data *esd;
4050 bfd_size_type amt = sizeof (Elf_Internal_Shdr);
4051
4052 esd = elf_section_data (sec);
4053 BFD_ASSERT (esd->rel_hdr2 == NULL);
47b0e7ad 4054 esd->rel_hdr2 = bfd_zalloc (abfd, amt);
6edf0760
NC
4055 if (!esd->rel_hdr2)
4056 return FALSE;
4057 _bfd_elf_init_reloc_shdr (abfd, esd->rel_hdr2, sec,
4058 !sec->use_rela_p);
4059 }
4060
4061 return TRUE;
4062}
4063
4064static enum elf_reloc_type_class
47b0e7ad 4065m32r_elf_reloc_type_class (const Elf_Internal_Rela *rela)
6edf0760
NC
4066{
4067 switch ((int) ELF32_R_TYPE (rela->r_info))
4068 {
47b0e7ad
NC
4069 case R_M32R_RELATIVE: return reloc_class_relative;
4070 case R_M32R_JMP_SLOT: return reloc_class_plt;
4071 case R_M32R_COPY: return reloc_class_copy;
4072 default: return reloc_class_normal;
6edf0760
NC
4073 }
4074}
252b5132 4075\f
252b5132 4076#define ELF_ARCH bfd_arch_m32r
aa4f99bb
AO
4077#define ELF_MACHINE_CODE EM_M32R
4078#define ELF_MACHINE_ALT1 EM_CYGNUS_M32R
e916b64e 4079#define ELF_MAXPAGESIZE 0x1 /* Explicitly requested by Mitsubishi. */
252b5132
RH
4080
4081#define TARGET_BIG_SYM bfd_elf32_m32r_vec
4082#define TARGET_BIG_NAME "elf32-m32r"
6edf0760
NC
4083#define TARGET_LITTLE_SYM bfd_elf32_m32rle_vec
4084#define TARGET_LITTLE_NAME "elf32-m32rle"
252b5132 4085
6edf0760 4086#define elf_info_to_howto m32r_info_to_howto
252b5132
RH
4087#define elf_info_to_howto_rel m32r_info_to_howto_rel
4088#define elf_backend_section_from_bfd_section _bfd_m32r_elf_section_from_bfd_section
4089#define elf_backend_symbol_processing _bfd_m32r_elf_symbol_processing
4090#define elf_backend_add_symbol_hook m32r_elf_add_symbol_hook
4091#define elf_backend_relocate_section m32r_elf_relocate_section
4092#define elf_backend_gc_mark_hook m32r_elf_gc_mark_hook
4093#define elf_backend_gc_sweep_hook m32r_elf_gc_sweep_hook
4094#define elf_backend_check_relocs m32r_elf_check_relocs
4095
6edf0760
NC
4096#define elf_backend_create_dynamic_sections m32r_elf_create_dynamic_sections
4097#define bfd_elf32_bfd_link_hash_table_create m32r_elf_link_hash_table_create
4098#define elf_backend_size_dynamic_sections m32r_elf_size_dynamic_sections
4099#define elf_backend_finish_dynamic_sections m32r_elf_finish_dynamic_sections
4100#define elf_backend_adjust_dynamic_symbol m32r_elf_adjust_dynamic_symbol
4101#define elf_backend_finish_dynamic_symbol m32r_elf_finish_dynamic_symbol
4102#define elf_backend_reloc_type_class m32r_elf_reloc_type_class
4103#define elf_backend_copy_indirect_symbol m32r_elf_copy_indirect_symbol
4104
252b5132 4105#define elf_backend_can_gc_sections 1
6edf0760 4106/*#if !USE_REL
b491616a 4107#define elf_backend_rela_normal 1
6edf0760
NC
4108#endif*/
4109#define elf_backend_can_refcount 1
4110#define elf_backend_want_got_plt 1
4111#define elf_backend_plt_readonly 1
4112#define elf_backend_want_plt_sym 0
4113#define elf_backend_got_header_size 12
4114
4115#define elf_backend_may_use_rel_p 1
4116#ifdef USE_M32R_OLD_RELOC
4117#define elf_backend_default_use_rela_p 0
4118#define elf_backend_may_use_rela_p 0
4119#else
4120#define elf_backend_default_use_rela_p 1
4121#define elf_backend_may_use_rela_p 1
4122#define elf_backend_fake_sections m32r_elf_fake_sections
b491616a 4123#endif
6edf0760 4124
252b5132
RH
4125#define elf_backend_object_p m32r_elf_object_p
4126#define elf_backend_final_write_processing m32r_elf_final_write_processing
252b5132
RH
4127#define bfd_elf32_bfd_merge_private_bfd_data m32r_elf_merge_private_bfd_data
4128#define bfd_elf32_bfd_set_private_flags m32r_elf_set_private_flags
4129#define bfd_elf32_bfd_print_private_bfd_data m32r_elf_print_private_bfd_data
29ef7005 4130#define elf_backend_special_sections m32r_elf_special_sections
c3668558 4131
252b5132 4132#include "elf32-target.h"
6edf0760 4133
47b0e7ad 4134#undef ELF_MAXPAGESIZE
6edf0760
NC
4135#define ELF_MAXPAGESIZE 0x1000
4136
47b0e7ad 4137#undef TARGET_BIG_SYM
6edf0760 4138#define TARGET_BIG_SYM bfd_elf32_m32rlin_vec
47b0e7ad 4139#undef TARGET_BIG_NAME
6edf0760 4140#define TARGET_BIG_NAME "elf32-m32r-linux"
47b0e7ad 4141#undef TARGET_LITTLE_SYM
6edf0760 4142#define TARGET_LITTLE_SYM bfd_elf32_m32rlelin_vec
47b0e7ad 4143#undef TARGET_LITTLE_NAME
6edf0760 4144#define TARGET_LITTLE_NAME "elf32-m32rle-linux"
47b0e7ad 4145#undef elf32_bed
6edf0760
NC
4146#define elf32_bed elf32_m32r_lin_bed
4147
4148#include "elf32-target.h"
4149
This page took 0.537021 seconds and 4 git commands to generate.