]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - bfd/reloc.c
Fix memory access violations triggered by running objdump on fuzzed binaries.
[thirdparty/binutils-gdb.git] / bfd / reloc.c
1 /* BFD support for handling relocation entries.
2 Copyright (C) 1990-2015 Free Software Foundation, Inc.
3 Written by Cygnus Support.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
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 3 of the License, or
10 (at your option) any later version.
11
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.
16
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
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22 /*
23 SECTION
24 Relocations
25
26 BFD maintains relocations in much the same way it maintains
27 symbols: they are left alone until required, then read in
28 en-masse and translated into an internal form. A common
29 routine <<bfd_perform_relocation>> acts upon the
30 canonical form to do the fixup.
31
32 Relocations are maintained on a per section basis,
33 while symbols are maintained on a per BFD basis.
34
35 All that a back end has to do to fit the BFD interface is to create
36 a <<struct reloc_cache_entry>> for each relocation
37 in a particular section, and fill in the right bits of the structures.
38
39 @menu
40 @* typedef arelent::
41 @* howto manager::
42 @end menu
43
44 */
45
46 /* DO compile in the reloc_code name table from libbfd.h. */
47 #define _BFD_MAKE_TABLE_bfd_reloc_code_real
48
49 #include "sysdep.h"
50 #include "bfd.h"
51 #include "bfdlink.h"
52 #include "libbfd.h"
53 /*
54 DOCDD
55 INODE
56 typedef arelent, howto manager, Relocations, Relocations
57
58 SUBSECTION
59 typedef arelent
60
61 This is the structure of a relocation entry:
62
63 CODE_FRAGMENT
64 .
65 .typedef enum bfd_reloc_status
66 .{
67 . {* No errors detected. *}
68 . bfd_reloc_ok,
69 .
70 . {* The relocation was performed, but there was an overflow. *}
71 . bfd_reloc_overflow,
72 .
73 . {* The address to relocate was not within the section supplied. *}
74 . bfd_reloc_outofrange,
75 .
76 . {* Used by special functions. *}
77 . bfd_reloc_continue,
78 .
79 . {* Unsupported relocation size requested. *}
80 . bfd_reloc_notsupported,
81 .
82 . {* Unused. *}
83 . bfd_reloc_other,
84 .
85 . {* The symbol to relocate against was undefined. *}
86 . bfd_reloc_undefined,
87 .
88 . {* The relocation was performed, but may not be ok - presently
89 . generated only when linking i960 coff files with i960 b.out
90 . symbols. If this type is returned, the error_message argument
91 . to bfd_perform_relocation will be set. *}
92 . bfd_reloc_dangerous
93 . }
94 . bfd_reloc_status_type;
95 .
96 .
97 .typedef struct reloc_cache_entry
98 .{
99 . {* A pointer into the canonical table of pointers. *}
100 . struct bfd_symbol **sym_ptr_ptr;
101 .
102 . {* offset in section. *}
103 . bfd_size_type address;
104 .
105 . {* addend for relocation value. *}
106 . bfd_vma addend;
107 .
108 . {* Pointer to how to perform the required relocation. *}
109 . reloc_howto_type *howto;
110 .
111 .}
112 .arelent;
113 .
114 */
115
116 /*
117 DESCRIPTION
118
119 Here is a description of each of the fields within an <<arelent>>:
120
121 o <<sym_ptr_ptr>>
122
123 The symbol table pointer points to a pointer to the symbol
124 associated with the relocation request. It is the pointer
125 into the table returned by the back end's
126 <<canonicalize_symtab>> action. @xref{Symbols}. The symbol is
127 referenced through a pointer to a pointer so that tools like
128 the linker can fix up all the symbols of the same name by
129 modifying only one pointer. The relocation routine looks in
130 the symbol and uses the base of the section the symbol is
131 attached to and the value of the symbol as the initial
132 relocation offset. If the symbol pointer is zero, then the
133 section provided is looked up.
134
135 o <<address>>
136
137 The <<address>> field gives the offset in bytes from the base of
138 the section data which owns the relocation record to the first
139 byte of relocatable information. The actual data relocated
140 will be relative to this point; for example, a relocation
141 type which modifies the bottom two bytes of a four byte word
142 would not touch the first byte pointed to in a big endian
143 world.
144
145 o <<addend>>
146
147 The <<addend>> is a value provided by the back end to be added (!)
148 to the relocation offset. Its interpretation is dependent upon
149 the howto. For example, on the 68k the code:
150
151 | char foo[];
152 | main()
153 | {
154 | return foo[0x12345678];
155 | }
156
157 Could be compiled into:
158
159 | linkw fp,#-4
160 | moveb @@#12345678,d0
161 | extbl d0
162 | unlk fp
163 | rts
164
165 This could create a reloc pointing to <<foo>>, but leave the
166 offset in the data, something like:
167
168 |RELOCATION RECORDS FOR [.text]:
169 |offset type value
170 |00000006 32 _foo
171 |
172 |00000000 4e56 fffc ; linkw fp,#-4
173 |00000004 1039 1234 5678 ; moveb @@#12345678,d0
174 |0000000a 49c0 ; extbl d0
175 |0000000c 4e5e ; unlk fp
176 |0000000e 4e75 ; rts
177
178 Using coff and an 88k, some instructions don't have enough
179 space in them to represent the full address range, and
180 pointers have to be loaded in two parts. So you'd get something like:
181
182 | or.u r13,r0,hi16(_foo+0x12345678)
183 | ld.b r2,r13,lo16(_foo+0x12345678)
184 | jmp r1
185
186 This should create two relocs, both pointing to <<_foo>>, and with
187 0x12340000 in their addend field. The data would consist of:
188
189 |RELOCATION RECORDS FOR [.text]:
190 |offset type value
191 |00000002 HVRT16 _foo+0x12340000
192 |00000006 LVRT16 _foo+0x12340000
193 |
194 |00000000 5da05678 ; or.u r13,r0,0x5678
195 |00000004 1c4d5678 ; ld.b r2,r13,0x5678
196 |00000008 f400c001 ; jmp r1
197
198 The relocation routine digs out the value from the data, adds
199 it to the addend to get the original offset, and then adds the
200 value of <<_foo>>. Note that all 32 bits have to be kept around
201 somewhere, to cope with carry from bit 15 to bit 16.
202
203 One further example is the sparc and the a.out format. The
204 sparc has a similar problem to the 88k, in that some
205 instructions don't have room for an entire offset, but on the
206 sparc the parts are created in odd sized lumps. The designers of
207 the a.out format chose to not use the data within the section
208 for storing part of the offset; all the offset is kept within
209 the reloc. Anything in the data should be ignored.
210
211 | save %sp,-112,%sp
212 | sethi %hi(_foo+0x12345678),%g2
213 | ldsb [%g2+%lo(_foo+0x12345678)],%i0
214 | ret
215 | restore
216
217 Both relocs contain a pointer to <<foo>>, and the offsets
218 contain junk.
219
220 |RELOCATION RECORDS FOR [.text]:
221 |offset type value
222 |00000004 HI22 _foo+0x12345678
223 |00000008 LO10 _foo+0x12345678
224 |
225 |00000000 9de3bf90 ; save %sp,-112,%sp
226 |00000004 05000000 ; sethi %hi(_foo+0),%g2
227 |00000008 f048a000 ; ldsb [%g2+%lo(_foo+0)],%i0
228 |0000000c 81c7e008 ; ret
229 |00000010 81e80000 ; restore
230
231 o <<howto>>
232
233 The <<howto>> field can be imagined as a
234 relocation instruction. It is a pointer to a structure which
235 contains information on what to do with all of the other
236 information in the reloc record and data section. A back end
237 would normally have a relocation instruction set and turn
238 relocations into pointers to the correct structure on input -
239 but it would be possible to create each howto field on demand.
240
241 */
242
243 /*
244 SUBSUBSECTION
245 <<enum complain_overflow>>
246
247 Indicates what sort of overflow checking should be done when
248 performing a relocation.
249
250 CODE_FRAGMENT
251 .
252 .enum complain_overflow
253 .{
254 . {* Do not complain on overflow. *}
255 . complain_overflow_dont,
256 .
257 . {* Complain if the value overflows when considered as a signed
258 . number one bit larger than the field. ie. A bitfield of N bits
259 . is allowed to represent -2**n to 2**n-1. *}
260 . complain_overflow_bitfield,
261 .
262 . {* Complain if the value overflows when considered as a signed
263 . number. *}
264 . complain_overflow_signed,
265 .
266 . {* Complain if the value overflows when considered as an
267 . unsigned number. *}
268 . complain_overflow_unsigned
269 .};
270
271 */
272
273 /*
274 SUBSUBSECTION
275 <<reloc_howto_type>>
276
277 The <<reloc_howto_type>> is a structure which contains all the
278 information that libbfd needs to know to tie up a back end's data.
279
280 CODE_FRAGMENT
281 .struct bfd_symbol; {* Forward declaration. *}
282 .
283 .struct reloc_howto_struct
284 .{
285 . {* The type field has mainly a documentary use - the back end can
286 . do what it wants with it, though normally the back end's
287 . external idea of what a reloc number is stored
288 . in this field. For example, a PC relative word relocation
289 . in a coff environment has the type 023 - because that's
290 . what the outside world calls a R_PCRWORD reloc. *}
291 . unsigned int type;
292 .
293 . {* The value the final relocation is shifted right by. This drops
294 . unwanted data from the relocation. *}
295 . unsigned int rightshift;
296 .
297 . {* The size of the item to be relocated. This is *not* a
298 . power-of-two measure. To get the number of bytes operated
299 . on by a type of relocation, use bfd_get_reloc_size. *}
300 . int size;
301 .
302 . {* The number of bits in the item to be relocated. This is used
303 . when doing overflow checking. *}
304 . unsigned int bitsize;
305 .
306 . {* The relocation is relative to the field being relocated. *}
307 . bfd_boolean pc_relative;
308 .
309 . {* The bit position of the reloc value in the destination.
310 . The relocated value is left shifted by this amount. *}
311 . unsigned int bitpos;
312 .
313 . {* What type of overflow error should be checked for when
314 . relocating. *}
315 . enum complain_overflow complain_on_overflow;
316 .
317 . {* If this field is non null, then the supplied function is
318 . called rather than the normal function. This allows really
319 . strange relocation methods to be accommodated (e.g., i960 callj
320 . instructions). *}
321 . bfd_reloc_status_type (*special_function)
322 . (bfd *, arelent *, struct bfd_symbol *, void *, asection *,
323 . bfd *, char **);
324 .
325 . {* The textual name of the relocation type. *}
326 . char *name;
327 .
328 . {* Some formats record a relocation addend in the section contents
329 . rather than with the relocation. For ELF formats this is the
330 . distinction between USE_REL and USE_RELA (though the code checks
331 . for USE_REL == 1/0). The value of this field is TRUE if the
332 . addend is recorded with the section contents; when performing a
333 . partial link (ld -r) the section contents (the data) will be
334 . modified. The value of this field is FALSE if addends are
335 . recorded with the relocation (in arelent.addend); when performing
336 . a partial link the relocation will be modified.
337 . All relocations for all ELF USE_RELA targets should set this field
338 . to FALSE (values of TRUE should be looked on with suspicion).
339 . However, the converse is not true: not all relocations of all ELF
340 . USE_REL targets set this field to TRUE. Why this is so is peculiar
341 . to each particular target. For relocs that aren't used in partial
342 . links (e.g. GOT stuff) it doesn't matter what this is set to. *}
343 . bfd_boolean partial_inplace;
344 .
345 . {* src_mask selects the part of the instruction (or data) to be used
346 . in the relocation sum. If the target relocations don't have an
347 . addend in the reloc, eg. ELF USE_REL, src_mask will normally equal
348 . dst_mask to extract the addend from the section contents. If
349 . relocations do have an addend in the reloc, eg. ELF USE_RELA, this
350 . field should be zero. Non-zero values for ELF USE_RELA targets are
351 . bogus as in those cases the value in the dst_mask part of the
352 . section contents should be treated as garbage. *}
353 . bfd_vma src_mask;
354 .
355 . {* dst_mask selects which parts of the instruction (or data) are
356 . replaced with a relocated value. *}
357 . bfd_vma dst_mask;
358 .
359 . {* When some formats create PC relative instructions, they leave
360 . the value of the pc of the place being relocated in the offset
361 . slot of the instruction, so that a PC relative relocation can
362 . be made just by adding in an ordinary offset (e.g., sun3 a.out).
363 . Some formats leave the displacement part of an instruction
364 . empty (e.g., m88k bcs); this flag signals the fact. *}
365 . bfd_boolean pcrel_offset;
366 .};
367 .
368 */
369
370 /*
371 FUNCTION
372 The HOWTO Macro
373
374 DESCRIPTION
375 The HOWTO define is horrible and will go away.
376
377 .#define HOWTO(C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \
378 . { (unsigned) C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC }
379
380 DESCRIPTION
381 And will be replaced with the totally magic way. But for the
382 moment, we are compatible, so do it this way.
383
384 .#define NEWHOWTO(FUNCTION, NAME, SIZE, REL, IN) \
385 . HOWTO (0, 0, SIZE, 0, REL, 0, complain_overflow_dont, FUNCTION, \
386 . NAME, FALSE, 0, 0, IN)
387 .
388
389 DESCRIPTION
390 This is used to fill in an empty howto entry in an array.
391
392 .#define EMPTY_HOWTO(C) \
393 . HOWTO ((C), 0, 0, 0, FALSE, 0, complain_overflow_dont, NULL, \
394 . NULL, FALSE, 0, 0, FALSE)
395 .
396
397 DESCRIPTION
398 Helper routine to turn a symbol into a relocation value.
399
400 .#define HOWTO_PREPARE(relocation, symbol) \
401 . { \
402 . if (symbol != NULL) \
403 . { \
404 . if (bfd_is_com_section (symbol->section)) \
405 . { \
406 . relocation = 0; \
407 . } \
408 . else \
409 . { \
410 . relocation = symbol->value; \
411 . } \
412 . } \
413 . }
414 .
415 */
416
417 /*
418 FUNCTION
419 bfd_get_reloc_size
420
421 SYNOPSIS
422 unsigned int bfd_get_reloc_size (reloc_howto_type *);
423
424 DESCRIPTION
425 For a reloc_howto_type that operates on a fixed number of bytes,
426 this returns the number of bytes operated on.
427 */
428
429 unsigned int
430 bfd_get_reloc_size (reloc_howto_type *howto)
431 {
432 switch (howto->size)
433 {
434 case 0: return 1;
435 case 1: return 2;
436 case 2: return 4;
437 case 3: return 0;
438 case 4: return 8;
439 case 8: return 16;
440 case -1: return 2;
441 case -2: return 4;
442 default: abort ();
443 }
444 }
445
446 /*
447 TYPEDEF
448 arelent_chain
449
450 DESCRIPTION
451
452 How relocs are tied together in an <<asection>>:
453
454 .typedef struct relent_chain
455 .{
456 . arelent relent;
457 . struct relent_chain *next;
458 .}
459 .arelent_chain;
460 .
461 */
462
463 /* N_ONES produces N one bits, without overflowing machine arithmetic. */
464 #define N_ONES(n) (((((bfd_vma) 1 << ((n) - 1)) - 1) << 1) | 1)
465
466 /*
467 FUNCTION
468 bfd_check_overflow
469
470 SYNOPSIS
471 bfd_reloc_status_type bfd_check_overflow
472 (enum complain_overflow how,
473 unsigned int bitsize,
474 unsigned int rightshift,
475 unsigned int addrsize,
476 bfd_vma relocation);
477
478 DESCRIPTION
479 Perform overflow checking on @var{relocation} which has
480 @var{bitsize} significant bits and will be shifted right by
481 @var{rightshift} bits, on a machine with addresses containing
482 @var{addrsize} significant bits. The result is either of
483 @code{bfd_reloc_ok} or @code{bfd_reloc_overflow}.
484
485 */
486
487 bfd_reloc_status_type
488 bfd_check_overflow (enum complain_overflow how,
489 unsigned int bitsize,
490 unsigned int rightshift,
491 unsigned int addrsize,
492 bfd_vma relocation)
493 {
494 bfd_vma fieldmask, addrmask, signmask, ss, a;
495 bfd_reloc_status_type flag = bfd_reloc_ok;
496
497 /* Note: BITSIZE should always be <= ADDRSIZE, but in case it's not,
498 we'll be permissive: extra bits in the field mask will
499 automatically extend the address mask for purposes of the
500 overflow check. */
501 fieldmask = N_ONES (bitsize);
502 signmask = ~fieldmask;
503 addrmask = N_ONES (addrsize) | (fieldmask << rightshift);
504 a = (relocation & addrmask) >> rightshift;
505
506 switch (how)
507 {
508 case complain_overflow_dont:
509 break;
510
511 case complain_overflow_signed:
512 /* If any sign bits are set, all sign bits must be set. That
513 is, A must be a valid negative address after shifting. */
514 signmask = ~ (fieldmask >> 1);
515 /* Fall thru */
516
517 case complain_overflow_bitfield:
518 /* Bitfields are sometimes signed, sometimes unsigned. We
519 explicitly allow an address wrap too, which means a bitfield
520 of n bits is allowed to store -2**n to 2**n-1. Thus overflow
521 if the value has some, but not all, bits set outside the
522 field. */
523 ss = a & signmask;
524 if (ss != 0 && ss != ((addrmask >> rightshift) & signmask))
525 flag = bfd_reloc_overflow;
526 break;
527
528 case complain_overflow_unsigned:
529 /* We have an overflow if the address does not fit in the field. */
530 if ((a & signmask) != 0)
531 flag = bfd_reloc_overflow;
532 break;
533
534 default:
535 abort ();
536 }
537
538 return flag;
539 }
540
541 /*
542 FUNCTION
543 bfd_perform_relocation
544
545 SYNOPSIS
546 bfd_reloc_status_type bfd_perform_relocation
547 (bfd *abfd,
548 arelent *reloc_entry,
549 void *data,
550 asection *input_section,
551 bfd *output_bfd,
552 char **error_message);
553
554 DESCRIPTION
555 If @var{output_bfd} is supplied to this function, the
556 generated image will be relocatable; the relocations are
557 copied to the output file after they have been changed to
558 reflect the new state of the world. There are two ways of
559 reflecting the results of partial linkage in an output file:
560 by modifying the output data in place, and by modifying the
561 relocation record. Some native formats (e.g., basic a.out and
562 basic coff) have no way of specifying an addend in the
563 relocation type, so the addend has to go in the output data.
564 This is no big deal since in these formats the output data
565 slot will always be big enough for the addend. Complex reloc
566 types with addends were invented to solve just this problem.
567 The @var{error_message} argument is set to an error message if
568 this return @code{bfd_reloc_dangerous}.
569
570 */
571
572 bfd_reloc_status_type
573 bfd_perform_relocation (bfd *abfd,
574 arelent *reloc_entry,
575 void *data,
576 asection *input_section,
577 bfd *output_bfd,
578 char **error_message)
579 {
580 bfd_vma relocation;
581 bfd_reloc_status_type flag = bfd_reloc_ok;
582 bfd_size_type octets = reloc_entry->address * bfd_octets_per_byte (abfd);
583 bfd_vma output_base = 0;
584 reloc_howto_type *howto = reloc_entry->howto;
585 asection *reloc_target_output_section;
586 asymbol *symbol;
587
588 symbol = *(reloc_entry->sym_ptr_ptr);
589 if (bfd_is_abs_section (symbol->section)
590 && output_bfd != NULL)
591 {
592 reloc_entry->address += input_section->output_offset;
593 return bfd_reloc_ok;
594 }
595
596 /* PR 17512: file: 0f67f69d. */
597 if (howto == NULL)
598 return bfd_reloc_undefined;
599
600 /* If we are not producing relocatable output, return an error if
601 the symbol is not defined. An undefined weak symbol is
602 considered to have a value of zero (SVR4 ABI, p. 4-27). */
603 if (bfd_is_und_section (symbol->section)
604 && (symbol->flags & BSF_WEAK) == 0
605 && output_bfd == NULL)
606 flag = bfd_reloc_undefined;
607
608 /* If there is a function supplied to handle this relocation type,
609 call it. It'll return `bfd_reloc_continue' if further processing
610 can be done. */
611 if (howto->special_function)
612 {
613 bfd_reloc_status_type cont;
614 cont = howto->special_function (abfd, reloc_entry, symbol, data,
615 input_section, output_bfd,
616 error_message);
617 if (cont != bfd_reloc_continue)
618 return cont;
619 }
620
621 /* Is the address of the relocation really within the section? */
622 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section)
623 /* PR 17512: file: c146ab8b.
624 PR 17512: file: 46dff27f.
625 Include the size of the reloc in the test for out of range addresses. */
626 - bfd_get_reloc_size (howto)
627 /* PR 17512: file: 38e53ebf
628 Add make sure that there is enough room for the relocation to be applied. */
629 || bfd_get_reloc_size (howto) > bfd_get_section_limit (abfd, input_section))
630 return bfd_reloc_outofrange;
631
632 /* Work out which section the relocation is targeted at and the
633 initial relocation command value. */
634
635 /* Get symbol value. (Common symbols are special.) */
636 if (bfd_is_com_section (symbol->section))
637 relocation = 0;
638 else
639 relocation = symbol->value;
640
641 reloc_target_output_section = symbol->section->output_section;
642
643 /* Convert input-section-relative symbol value to absolute. */
644 if ((output_bfd && ! howto->partial_inplace)
645 || reloc_target_output_section == NULL)
646 output_base = 0;
647 else
648 output_base = reloc_target_output_section->vma;
649
650 relocation += output_base + symbol->section->output_offset;
651
652 /* Add in supplied addend. */
653 relocation += reloc_entry->addend;
654
655 /* Here the variable relocation holds the final address of the
656 symbol we are relocating against, plus any addend. */
657
658 if (howto->pc_relative)
659 {
660 /* This is a PC relative relocation. We want to set RELOCATION
661 to the distance between the address of the symbol and the
662 location. RELOCATION is already the address of the symbol.
663
664 We start by subtracting the address of the section containing
665 the location.
666
667 If pcrel_offset is set, we must further subtract the position
668 of the location within the section. Some targets arrange for
669 the addend to be the negative of the position of the location
670 within the section; for example, i386-aout does this. For
671 i386-aout, pcrel_offset is FALSE. Some other targets do not
672 include the position of the location; for example, m88kbcs,
673 or ELF. For those targets, pcrel_offset is TRUE.
674
675 If we are producing relocatable output, then we must ensure
676 that this reloc will be correctly computed when the final
677 relocation is done. If pcrel_offset is FALSE we want to wind
678 up with the negative of the location within the section,
679 which means we must adjust the existing addend by the change
680 in the location within the section. If pcrel_offset is TRUE
681 we do not want to adjust the existing addend at all.
682
683 FIXME: This seems logical to me, but for the case of
684 producing relocatable output it is not what the code
685 actually does. I don't want to change it, because it seems
686 far too likely that something will break. */
687
688 relocation -=
689 input_section->output_section->vma + input_section->output_offset;
690
691 if (howto->pcrel_offset)
692 relocation -= reloc_entry->address;
693 }
694
695 if (output_bfd != NULL)
696 {
697 if (! howto->partial_inplace)
698 {
699 /* This is a partial relocation, and we want to apply the relocation
700 to the reloc entry rather than the raw data. Modify the reloc
701 inplace to reflect what we now know. */
702 reloc_entry->addend = relocation;
703 reloc_entry->address += input_section->output_offset;
704 return flag;
705 }
706 else
707 {
708 /* This is a partial relocation, but inplace, so modify the
709 reloc record a bit.
710
711 If we've relocated with a symbol with a section, change
712 into a ref to the section belonging to the symbol. */
713
714 reloc_entry->address += input_section->output_offset;
715
716 /* WTF?? */
717 if (abfd->xvec->flavour == bfd_target_coff_flavour
718 && strcmp (abfd->xvec->name, "coff-Intel-little") != 0
719 && strcmp (abfd->xvec->name, "coff-Intel-big") != 0)
720 {
721 /* For m68k-coff, the addend was being subtracted twice during
722 relocation with -r. Removing the line below this comment
723 fixes that problem; see PR 2953.
724
725 However, Ian wrote the following, regarding removing the line below,
726 which explains why it is still enabled: --djm
727
728 If you put a patch like that into BFD you need to check all the COFF
729 linkers. I am fairly certain that patch will break coff-i386 (e.g.,
730 SCO); see coff_i386_reloc in coff-i386.c where I worked around the
731 problem in a different way. There may very well be a reason that the
732 code works as it does.
733
734 Hmmm. The first obvious point is that bfd_perform_relocation should
735 not have any tests that depend upon the flavour. It's seem like
736 entirely the wrong place for such a thing. The second obvious point
737 is that the current code ignores the reloc addend when producing
738 relocatable output for COFF. That's peculiar. In fact, I really
739 have no idea what the point of the line you want to remove is.
740
741 A typical COFF reloc subtracts the old value of the symbol and adds in
742 the new value to the location in the object file (if it's a pc
743 relative reloc it adds the difference between the symbol value and the
744 location). When relocating we need to preserve that property.
745
746 BFD handles this by setting the addend to the negative of the old
747 value of the symbol. Unfortunately it handles common symbols in a
748 non-standard way (it doesn't subtract the old value) but that's a
749 different story (we can't change it without losing backward
750 compatibility with old object files) (coff-i386 does subtract the old
751 value, to be compatible with existing coff-i386 targets, like SCO).
752
753 So everything works fine when not producing relocatable output. When
754 we are producing relocatable output, logically we should do exactly
755 what we do when not producing relocatable output. Therefore, your
756 patch is correct. In fact, it should probably always just set
757 reloc_entry->addend to 0 for all cases, since it is, in fact, going to
758 add the value into the object file. This won't hurt the COFF code,
759 which doesn't use the addend; I'm not sure what it will do to other
760 formats (the thing to check for would be whether any formats both use
761 the addend and set partial_inplace).
762
763 When I wanted to make coff-i386 produce relocatable output, I ran
764 into the problem that you are running into: I wanted to remove that
765 line. Rather than risk it, I made the coff-i386 relocs use a special
766 function; it's coff_i386_reloc in coff-i386.c. The function
767 specifically adds the addend field into the object file, knowing that
768 bfd_perform_relocation is not going to. If you remove that line, then
769 coff-i386.c will wind up adding the addend field in twice. It's
770 trivial to fix; it just needs to be done.
771
772 The problem with removing the line is just that it may break some
773 working code. With BFD it's hard to be sure of anything. The right
774 way to deal with this is simply to build and test at least all the
775 supported COFF targets. It should be straightforward if time and disk
776 space consuming. For each target:
777 1) build the linker
778 2) generate some executable, and link it using -r (I would
779 probably use paranoia.o and link against newlib/libc.a, which
780 for all the supported targets would be available in
781 /usr/cygnus/progressive/H-host/target/lib/libc.a).
782 3) make the change to reloc.c
783 4) rebuild the linker
784 5) repeat step 2
785 6) if the resulting object files are the same, you have at least
786 made it no worse
787 7) if they are different you have to figure out which version is
788 right
789 */
790 relocation -= reloc_entry->addend;
791 reloc_entry->addend = 0;
792 }
793 else
794 {
795 reloc_entry->addend = relocation;
796 }
797 }
798 }
799
800 /* FIXME: This overflow checking is incomplete, because the value
801 might have overflowed before we get here. For a correct check we
802 need to compute the value in a size larger than bitsize, but we
803 can't reasonably do that for a reloc the same size as a host
804 machine word.
805 FIXME: We should also do overflow checking on the result after
806 adding in the value contained in the object file. */
807 if (howto->complain_on_overflow != complain_overflow_dont
808 && flag == bfd_reloc_ok)
809 flag = bfd_check_overflow (howto->complain_on_overflow,
810 howto->bitsize,
811 howto->rightshift,
812 bfd_arch_bits_per_address (abfd),
813 relocation);
814
815 /* Either we are relocating all the way, or we don't want to apply
816 the relocation to the reloc entry (probably because there isn't
817 any room in the output format to describe addends to relocs). */
818
819 /* The cast to bfd_vma avoids a bug in the Alpha OSF/1 C compiler
820 (OSF version 1.3, compiler version 3.11). It miscompiles the
821 following program:
822
823 struct str
824 {
825 unsigned int i0;
826 } s = { 0 };
827
828 int
829 main ()
830 {
831 unsigned long x;
832
833 x = 0x100000000;
834 x <<= (unsigned long) s.i0;
835 if (x == 0)
836 printf ("failed\n");
837 else
838 printf ("succeeded (%lx)\n", x);
839 }
840 */
841
842 relocation >>= (bfd_vma) howto->rightshift;
843
844 /* Shift everything up to where it's going to be used. */
845 relocation <<= (bfd_vma) howto->bitpos;
846
847 /* Wait for the day when all have the mask in them. */
848
849 /* What we do:
850 i instruction to be left alone
851 o offset within instruction
852 r relocation offset to apply
853 S src mask
854 D dst mask
855 N ~dst mask
856 A part 1
857 B part 2
858 R result
859
860 Do this:
861 (( i i i i i o o o o o from bfd_get<size>
862 and S S S S S) to get the size offset we want
863 + r r r r r r r r r r) to get the final value to place
864 and D D D D D to chop to right size
865 -----------------------
866 = A A A A A
867 And this:
868 ( i i i i i o o o o o from bfd_get<size>
869 and N N N N N ) get instruction
870 -----------------------
871 = B B B B B
872
873 And then:
874 ( B B B B B
875 or A A A A A)
876 -----------------------
877 = R R R R R R R R R R put into bfd_put<size>
878 */
879
880 #define DOIT(x) \
881 x = ( (x & ~howto->dst_mask) | (((x & howto->src_mask) + relocation) & howto->dst_mask))
882
883 switch (howto->size)
884 {
885 case 0:
886 {
887 char x = bfd_get_8 (abfd, (char *) data + octets);
888 DOIT (x);
889 bfd_put_8 (abfd, x, (unsigned char *) data + octets);
890 }
891 break;
892
893 case 1:
894 {
895 short x = bfd_get_16 (abfd, (bfd_byte *) data + octets);
896 DOIT (x);
897 bfd_put_16 (abfd, (bfd_vma) x, (unsigned char *) data + octets);
898 }
899 break;
900 case 2:
901 {
902 long x = bfd_get_32 (abfd, (bfd_byte *) data + octets);
903 DOIT (x);
904 bfd_put_32 (abfd, (bfd_vma) x, (bfd_byte *) data + octets);
905 }
906 break;
907 case -2:
908 {
909 long x = bfd_get_32 (abfd, (bfd_byte *) data + octets);
910 relocation = -relocation;
911 DOIT (x);
912 bfd_put_32 (abfd, (bfd_vma) x, (bfd_byte *) data + octets);
913 }
914 break;
915
916 case -1:
917 {
918 long x = bfd_get_16 (abfd, (bfd_byte *) data + octets);
919 relocation = -relocation;
920 DOIT (x);
921 bfd_put_16 (abfd, (bfd_vma) x, (bfd_byte *) data + octets);
922 }
923 break;
924
925 case 3:
926 /* Do nothing */
927 break;
928
929 case 4:
930 #ifdef BFD64
931 {
932 bfd_vma x = bfd_get_64 (abfd, (bfd_byte *) data + octets);
933 DOIT (x);
934 bfd_put_64 (abfd, x, (bfd_byte *) data + octets);
935 }
936 #else
937 abort ();
938 #endif
939 break;
940 default:
941 return bfd_reloc_other;
942 }
943
944 return flag;
945 }
946
947 /*
948 FUNCTION
949 bfd_install_relocation
950
951 SYNOPSIS
952 bfd_reloc_status_type bfd_install_relocation
953 (bfd *abfd,
954 arelent *reloc_entry,
955 void *data, bfd_vma data_start,
956 asection *input_section,
957 char **error_message);
958
959 DESCRIPTION
960 This looks remarkably like <<bfd_perform_relocation>>, except it
961 does not expect that the section contents have been filled in.
962 I.e., it's suitable for use when creating, rather than applying
963 a relocation.
964
965 For now, this function should be considered reserved for the
966 assembler.
967 */
968
969 bfd_reloc_status_type
970 bfd_install_relocation (bfd *abfd,
971 arelent *reloc_entry,
972 void *data_start,
973 bfd_vma data_start_offset,
974 asection *input_section,
975 char **error_message)
976 {
977 bfd_vma relocation;
978 bfd_reloc_status_type flag = bfd_reloc_ok;
979 bfd_size_type octets = reloc_entry->address * bfd_octets_per_byte (abfd);
980 bfd_vma output_base = 0;
981 reloc_howto_type *howto = reloc_entry->howto;
982 asection *reloc_target_output_section;
983 asymbol *symbol;
984 bfd_byte *data;
985
986 symbol = *(reloc_entry->sym_ptr_ptr);
987 if (bfd_is_abs_section (symbol->section))
988 {
989 reloc_entry->address += input_section->output_offset;
990 return bfd_reloc_ok;
991 }
992
993 /* If there is a function supplied to handle this relocation type,
994 call it. It'll return `bfd_reloc_continue' if further processing
995 can be done. */
996 if (howto->special_function)
997 {
998 bfd_reloc_status_type cont;
999
1000 /* XXX - The special_function calls haven't been fixed up to deal
1001 with creating new relocations and section contents. */
1002 cont = howto->special_function (abfd, reloc_entry, symbol,
1003 /* XXX - Non-portable! */
1004 ((bfd_byte *) data_start
1005 - data_start_offset),
1006 input_section, abfd, error_message);
1007 if (cont != bfd_reloc_continue)
1008 return cont;
1009 }
1010
1011 /* Is the address of the relocation really within the section? */
1012 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
1013 return bfd_reloc_outofrange;
1014
1015 /* Work out which section the relocation is targeted at and the
1016 initial relocation command value. */
1017
1018 /* Get symbol value. (Common symbols are special.) */
1019 if (bfd_is_com_section (symbol->section))
1020 relocation = 0;
1021 else
1022 relocation = symbol->value;
1023
1024 reloc_target_output_section = symbol->section->output_section;
1025
1026 /* Convert input-section-relative symbol value to absolute. */
1027 if (! howto->partial_inplace)
1028 output_base = 0;
1029 else
1030 output_base = reloc_target_output_section->vma;
1031
1032 relocation += output_base + symbol->section->output_offset;
1033
1034 /* Add in supplied addend. */
1035 relocation += reloc_entry->addend;
1036
1037 /* Here the variable relocation holds the final address of the
1038 symbol we are relocating against, plus any addend. */
1039
1040 if (howto->pc_relative)
1041 {
1042 /* This is a PC relative relocation. We want to set RELOCATION
1043 to the distance between the address of the symbol and the
1044 location. RELOCATION is already the address of the symbol.
1045
1046 We start by subtracting the address of the section containing
1047 the location.
1048
1049 If pcrel_offset is set, we must further subtract the position
1050 of the location within the section. Some targets arrange for
1051 the addend to be the negative of the position of the location
1052 within the section; for example, i386-aout does this. For
1053 i386-aout, pcrel_offset is FALSE. Some other targets do not
1054 include the position of the location; for example, m88kbcs,
1055 or ELF. For those targets, pcrel_offset is TRUE.
1056
1057 If we are producing relocatable output, then we must ensure
1058 that this reloc will be correctly computed when the final
1059 relocation is done. If pcrel_offset is FALSE we want to wind
1060 up with the negative of the location within the section,
1061 which means we must adjust the existing addend by the change
1062 in the location within the section. If pcrel_offset is TRUE
1063 we do not want to adjust the existing addend at all.
1064
1065 FIXME: This seems logical to me, but for the case of
1066 producing relocatable output it is not what the code
1067 actually does. I don't want to change it, because it seems
1068 far too likely that something will break. */
1069
1070 relocation -=
1071 input_section->output_section->vma + input_section->output_offset;
1072
1073 if (howto->pcrel_offset && howto->partial_inplace)
1074 relocation -= reloc_entry->address;
1075 }
1076
1077 if (! howto->partial_inplace)
1078 {
1079 /* This is a partial relocation, and we want to apply the relocation
1080 to the reloc entry rather than the raw data. Modify the reloc
1081 inplace to reflect what we now know. */
1082 reloc_entry->addend = relocation;
1083 reloc_entry->address += input_section->output_offset;
1084 return flag;
1085 }
1086 else
1087 {
1088 /* This is a partial relocation, but inplace, so modify the
1089 reloc record a bit.
1090
1091 If we've relocated with a symbol with a section, change
1092 into a ref to the section belonging to the symbol. */
1093 reloc_entry->address += input_section->output_offset;
1094
1095 /* WTF?? */
1096 if (abfd->xvec->flavour == bfd_target_coff_flavour
1097 && strcmp (abfd->xvec->name, "coff-Intel-little") != 0
1098 && strcmp (abfd->xvec->name, "coff-Intel-big") != 0)
1099 {
1100
1101 /* For m68k-coff, the addend was being subtracted twice during
1102 relocation with -r. Removing the line below this comment
1103 fixes that problem; see PR 2953.
1104
1105 However, Ian wrote the following, regarding removing the line below,
1106 which explains why it is still enabled: --djm
1107
1108 If you put a patch like that into BFD you need to check all the COFF
1109 linkers. I am fairly certain that patch will break coff-i386 (e.g.,
1110 SCO); see coff_i386_reloc in coff-i386.c where I worked around the
1111 problem in a different way. There may very well be a reason that the
1112 code works as it does.
1113
1114 Hmmm. The first obvious point is that bfd_install_relocation should
1115 not have any tests that depend upon the flavour. It's seem like
1116 entirely the wrong place for such a thing. The second obvious point
1117 is that the current code ignores the reloc addend when producing
1118 relocatable output for COFF. That's peculiar. In fact, I really
1119 have no idea what the point of the line you want to remove is.
1120
1121 A typical COFF reloc subtracts the old value of the symbol and adds in
1122 the new value to the location in the object file (if it's a pc
1123 relative reloc it adds the difference between the symbol value and the
1124 location). When relocating we need to preserve that property.
1125
1126 BFD handles this by setting the addend to the negative of the old
1127 value of the symbol. Unfortunately it handles common symbols in a
1128 non-standard way (it doesn't subtract the old value) but that's a
1129 different story (we can't change it without losing backward
1130 compatibility with old object files) (coff-i386 does subtract the old
1131 value, to be compatible with existing coff-i386 targets, like SCO).
1132
1133 So everything works fine when not producing relocatable output. When
1134 we are producing relocatable output, logically we should do exactly
1135 what we do when not producing relocatable output. Therefore, your
1136 patch is correct. In fact, it should probably always just set
1137 reloc_entry->addend to 0 for all cases, since it is, in fact, going to
1138 add the value into the object file. This won't hurt the COFF code,
1139 which doesn't use the addend; I'm not sure what it will do to other
1140 formats (the thing to check for would be whether any formats both use
1141 the addend and set partial_inplace).
1142
1143 When I wanted to make coff-i386 produce relocatable output, I ran
1144 into the problem that you are running into: I wanted to remove that
1145 line. Rather than risk it, I made the coff-i386 relocs use a special
1146 function; it's coff_i386_reloc in coff-i386.c. The function
1147 specifically adds the addend field into the object file, knowing that
1148 bfd_install_relocation is not going to. If you remove that line, then
1149 coff-i386.c will wind up adding the addend field in twice. It's
1150 trivial to fix; it just needs to be done.
1151
1152 The problem with removing the line is just that it may break some
1153 working code. With BFD it's hard to be sure of anything. The right
1154 way to deal with this is simply to build and test at least all the
1155 supported COFF targets. It should be straightforward if time and disk
1156 space consuming. For each target:
1157 1) build the linker
1158 2) generate some executable, and link it using -r (I would
1159 probably use paranoia.o and link against newlib/libc.a, which
1160 for all the supported targets would be available in
1161 /usr/cygnus/progressive/H-host/target/lib/libc.a).
1162 3) make the change to reloc.c
1163 4) rebuild the linker
1164 5) repeat step 2
1165 6) if the resulting object files are the same, you have at least
1166 made it no worse
1167 7) if they are different you have to figure out which version is
1168 right. */
1169 relocation -= reloc_entry->addend;
1170 /* FIXME: There should be no target specific code here... */
1171 if (strcmp (abfd->xvec->name, "coff-z8k") != 0)
1172 reloc_entry->addend = 0;
1173 }
1174 else
1175 {
1176 reloc_entry->addend = relocation;
1177 }
1178 }
1179
1180 /* FIXME: This overflow checking is incomplete, because the value
1181 might have overflowed before we get here. For a correct check we
1182 need to compute the value in a size larger than bitsize, but we
1183 can't reasonably do that for a reloc the same size as a host
1184 machine word.
1185 FIXME: We should also do overflow checking on the result after
1186 adding in the value contained in the object file. */
1187 if (howto->complain_on_overflow != complain_overflow_dont)
1188 flag = bfd_check_overflow (howto->complain_on_overflow,
1189 howto->bitsize,
1190 howto->rightshift,
1191 bfd_arch_bits_per_address (abfd),
1192 relocation);
1193
1194 /* Either we are relocating all the way, or we don't want to apply
1195 the relocation to the reloc entry (probably because there isn't
1196 any room in the output format to describe addends to relocs). */
1197
1198 /* The cast to bfd_vma avoids a bug in the Alpha OSF/1 C compiler
1199 (OSF version 1.3, compiler version 3.11). It miscompiles the
1200 following program:
1201
1202 struct str
1203 {
1204 unsigned int i0;
1205 } s = { 0 };
1206
1207 int
1208 main ()
1209 {
1210 unsigned long x;
1211
1212 x = 0x100000000;
1213 x <<= (unsigned long) s.i0;
1214 if (x == 0)
1215 printf ("failed\n");
1216 else
1217 printf ("succeeded (%lx)\n", x);
1218 }
1219 */
1220
1221 relocation >>= (bfd_vma) howto->rightshift;
1222
1223 /* Shift everything up to where it's going to be used. */
1224 relocation <<= (bfd_vma) howto->bitpos;
1225
1226 /* Wait for the day when all have the mask in them. */
1227
1228 /* What we do:
1229 i instruction to be left alone
1230 o offset within instruction
1231 r relocation offset to apply
1232 S src mask
1233 D dst mask
1234 N ~dst mask
1235 A part 1
1236 B part 2
1237 R result
1238
1239 Do this:
1240 (( i i i i i o o o o o from bfd_get<size>
1241 and S S S S S) to get the size offset we want
1242 + r r r r r r r r r r) to get the final value to place
1243 and D D D D D to chop to right size
1244 -----------------------
1245 = A A A A A
1246 And this:
1247 ( i i i i i o o o o o from bfd_get<size>
1248 and N N N N N ) get instruction
1249 -----------------------
1250 = B B B B B
1251
1252 And then:
1253 ( B B B B B
1254 or A A A A A)
1255 -----------------------
1256 = R R R R R R R R R R put into bfd_put<size>
1257 */
1258
1259 #define DOIT(x) \
1260 x = ( (x & ~howto->dst_mask) | (((x & howto->src_mask) + relocation) & howto->dst_mask))
1261
1262 data = (bfd_byte *) data_start + (octets - data_start_offset);
1263
1264 switch (howto->size)
1265 {
1266 case 0:
1267 {
1268 char x = bfd_get_8 (abfd, data);
1269 DOIT (x);
1270 bfd_put_8 (abfd, x, data);
1271 }
1272 break;
1273
1274 case 1:
1275 {
1276 short x = bfd_get_16 (abfd, data);
1277 DOIT (x);
1278 bfd_put_16 (abfd, (bfd_vma) x, data);
1279 }
1280 break;
1281 case 2:
1282 {
1283 long x = bfd_get_32 (abfd, data);
1284 DOIT (x);
1285 bfd_put_32 (abfd, (bfd_vma) x, data);
1286 }
1287 break;
1288 case -2:
1289 {
1290 long x = bfd_get_32 (abfd, data);
1291 relocation = -relocation;
1292 DOIT (x);
1293 bfd_put_32 (abfd, (bfd_vma) x, data);
1294 }
1295 break;
1296
1297 case 3:
1298 /* Do nothing */
1299 break;
1300
1301 case 4:
1302 {
1303 bfd_vma x = bfd_get_64 (abfd, data);
1304 DOIT (x);
1305 bfd_put_64 (abfd, x, data);
1306 }
1307 break;
1308 default:
1309 return bfd_reloc_other;
1310 }
1311
1312 return flag;
1313 }
1314
1315 /* This relocation routine is used by some of the backend linkers.
1316 They do not construct asymbol or arelent structures, so there is no
1317 reason for them to use bfd_perform_relocation. Also,
1318 bfd_perform_relocation is so hacked up it is easier to write a new
1319 function than to try to deal with it.
1320
1321 This routine does a final relocation. Whether it is useful for a
1322 relocatable link depends upon how the object format defines
1323 relocations.
1324
1325 FIXME: This routine ignores any special_function in the HOWTO,
1326 since the existing special_function values have been written for
1327 bfd_perform_relocation.
1328
1329 HOWTO is the reloc howto information.
1330 INPUT_BFD is the BFD which the reloc applies to.
1331 INPUT_SECTION is the section which the reloc applies to.
1332 CONTENTS is the contents of the section.
1333 ADDRESS is the address of the reloc within INPUT_SECTION.
1334 VALUE is the value of the symbol the reloc refers to.
1335 ADDEND is the addend of the reloc. */
1336
1337 bfd_reloc_status_type
1338 _bfd_final_link_relocate (reloc_howto_type *howto,
1339 bfd *input_bfd,
1340 asection *input_section,
1341 bfd_byte *contents,
1342 bfd_vma address,
1343 bfd_vma value,
1344 bfd_vma addend)
1345 {
1346 bfd_vma relocation;
1347
1348 /* Sanity check the address. */
1349 if (address > bfd_get_section_limit (input_bfd, input_section))
1350 return bfd_reloc_outofrange;
1351
1352 /* This function assumes that we are dealing with a basic relocation
1353 against a symbol. We want to compute the value of the symbol to
1354 relocate to. This is just VALUE, the value of the symbol, plus
1355 ADDEND, any addend associated with the reloc. */
1356 relocation = value + addend;
1357
1358 /* If the relocation is PC relative, we want to set RELOCATION to
1359 the distance between the symbol (currently in RELOCATION) and the
1360 location we are relocating. Some targets (e.g., i386-aout)
1361 arrange for the contents of the section to be the negative of the
1362 offset of the location within the section; for such targets
1363 pcrel_offset is FALSE. Other targets (e.g., m88kbcs or ELF)
1364 simply leave the contents of the section as zero; for such
1365 targets pcrel_offset is TRUE. If pcrel_offset is FALSE we do not
1366 need to subtract out the offset of the location within the
1367 section (which is just ADDRESS). */
1368 if (howto->pc_relative)
1369 {
1370 relocation -= (input_section->output_section->vma
1371 + input_section->output_offset);
1372 if (howto->pcrel_offset)
1373 relocation -= address;
1374 }
1375
1376 return _bfd_relocate_contents (howto, input_bfd, relocation,
1377 contents + address);
1378 }
1379
1380 /* Relocate a given location using a given value and howto. */
1381
1382 bfd_reloc_status_type
1383 _bfd_relocate_contents (reloc_howto_type *howto,
1384 bfd *input_bfd,
1385 bfd_vma relocation,
1386 bfd_byte *location)
1387 {
1388 int size;
1389 bfd_vma x = 0;
1390 bfd_reloc_status_type flag;
1391 unsigned int rightshift = howto->rightshift;
1392 unsigned int bitpos = howto->bitpos;
1393
1394 /* If the size is negative, negate RELOCATION. This isn't very
1395 general. */
1396 if (howto->size < 0)
1397 relocation = -relocation;
1398
1399 /* Get the value we are going to relocate. */
1400 size = bfd_get_reloc_size (howto);
1401 switch (size)
1402 {
1403 default:
1404 case 0:
1405 abort ();
1406 case 1:
1407 x = bfd_get_8 (input_bfd, location);
1408 break;
1409 case 2:
1410 x = bfd_get_16 (input_bfd, location);
1411 break;
1412 case 4:
1413 x = bfd_get_32 (input_bfd, location);
1414 break;
1415 case 8:
1416 #ifdef BFD64
1417 x = bfd_get_64 (input_bfd, location);
1418 #else
1419 abort ();
1420 #endif
1421 break;
1422 }
1423
1424 /* Check for overflow. FIXME: We may drop bits during the addition
1425 which we don't check for. We must either check at every single
1426 operation, which would be tedious, or we must do the computations
1427 in a type larger than bfd_vma, which would be inefficient. */
1428 flag = bfd_reloc_ok;
1429 if (howto->complain_on_overflow != complain_overflow_dont)
1430 {
1431 bfd_vma addrmask, fieldmask, signmask, ss;
1432 bfd_vma a, b, sum;
1433
1434 /* Get the values to be added together. For signed and unsigned
1435 relocations, we assume that all values should be truncated to
1436 the size of an address. For bitfields, all the bits matter.
1437 See also bfd_check_overflow. */
1438 fieldmask = N_ONES (howto->bitsize);
1439 signmask = ~fieldmask;
1440 addrmask = (N_ONES (bfd_arch_bits_per_address (input_bfd))
1441 | (fieldmask << rightshift));
1442 a = (relocation & addrmask) >> rightshift;
1443 b = (x & howto->src_mask & addrmask) >> bitpos;
1444 addrmask >>= rightshift;
1445
1446 switch (howto->complain_on_overflow)
1447 {
1448 case complain_overflow_signed:
1449 /* If any sign bits are set, all sign bits must be set.
1450 That is, A must be a valid negative address after
1451 shifting. */
1452 signmask = ~(fieldmask >> 1);
1453 /* Fall thru */
1454
1455 case complain_overflow_bitfield:
1456 /* Much like the signed check, but for a field one bit
1457 wider. We allow a bitfield to represent numbers in the
1458 range -2**n to 2**n-1, where n is the number of bits in the
1459 field. Note that when bfd_vma is 32 bits, a 32-bit reloc
1460 can't overflow, which is exactly what we want. */
1461 ss = a & signmask;
1462 if (ss != 0 && ss != (addrmask & signmask))
1463 flag = bfd_reloc_overflow;
1464
1465 /* We only need this next bit of code if the sign bit of B
1466 is below the sign bit of A. This would only happen if
1467 SRC_MASK had fewer bits than BITSIZE. Note that if
1468 SRC_MASK has more bits than BITSIZE, we can get into
1469 trouble; we would need to verify that B is in range, as
1470 we do for A above. */
1471 ss = ((~howto->src_mask) >> 1) & howto->src_mask;
1472 ss >>= bitpos;
1473
1474 /* Set all the bits above the sign bit. */
1475 b = (b ^ ss) - ss;
1476
1477 /* Now we can do the addition. */
1478 sum = a + b;
1479
1480 /* See if the result has the correct sign. Bits above the
1481 sign bit are junk now; ignore them. If the sum is
1482 positive, make sure we did not have all negative inputs;
1483 if the sum is negative, make sure we did not have all
1484 positive inputs. The test below looks only at the sign
1485 bits, and it really just
1486 SIGN (A) == SIGN (B) && SIGN (A) != SIGN (SUM)
1487
1488 We mask with addrmask here to explicitly allow an address
1489 wrap-around. The Linux kernel relies on it, and it is
1490 the only way to write assembler code which can run when
1491 loaded at a location 0x80000000 away from the location at
1492 which it is linked. */
1493 if (((~(a ^ b)) & (a ^ sum)) & signmask & addrmask)
1494 flag = bfd_reloc_overflow;
1495 break;
1496
1497 case complain_overflow_unsigned:
1498 /* Checking for an unsigned overflow is relatively easy:
1499 trim the addresses and add, and trim the result as well.
1500 Overflow is normally indicated when the result does not
1501 fit in the field. However, we also need to consider the
1502 case when, e.g., fieldmask is 0x7fffffff or smaller, an
1503 input is 0x80000000, and bfd_vma is only 32 bits; then we
1504 will get sum == 0, but there is an overflow, since the
1505 inputs did not fit in the field. Instead of doing a
1506 separate test, we can check for this by or-ing in the
1507 operands when testing for the sum overflowing its final
1508 field. */
1509 sum = (a + b) & addrmask;
1510 if ((a | b | sum) & signmask)
1511 flag = bfd_reloc_overflow;
1512 break;
1513
1514 default:
1515 abort ();
1516 }
1517 }
1518
1519 /* Put RELOCATION in the right bits. */
1520 relocation >>= (bfd_vma) rightshift;
1521 relocation <<= (bfd_vma) bitpos;
1522
1523 /* Add RELOCATION to the right bits of X. */
1524 x = ((x & ~howto->dst_mask)
1525 | (((x & howto->src_mask) + relocation) & howto->dst_mask));
1526
1527 /* Put the relocated value back in the object file. */
1528 switch (size)
1529 {
1530 default:
1531 abort ();
1532 case 1:
1533 bfd_put_8 (input_bfd, x, location);
1534 break;
1535 case 2:
1536 bfd_put_16 (input_bfd, x, location);
1537 break;
1538 case 4:
1539 bfd_put_32 (input_bfd, x, location);
1540 break;
1541 case 8:
1542 #ifdef BFD64
1543 bfd_put_64 (input_bfd, x, location);
1544 #else
1545 abort ();
1546 #endif
1547 break;
1548 }
1549
1550 return flag;
1551 }
1552
1553 /* Clear a given location using a given howto, by applying a fixed relocation
1554 value and discarding any in-place addend. This is used for fixed-up
1555 relocations against discarded symbols, to make ignorable debug or unwind
1556 information more obvious. */
1557
1558 void
1559 _bfd_clear_contents (reloc_howto_type *howto,
1560 bfd *input_bfd,
1561 asection *input_section,
1562 bfd_byte *location)
1563 {
1564 int size;
1565 bfd_vma x = 0;
1566
1567 /* Get the value we are going to relocate. */
1568 size = bfd_get_reloc_size (howto);
1569 switch (size)
1570 {
1571 default:
1572 case 0:
1573 abort ();
1574 case 1:
1575 x = bfd_get_8 (input_bfd, location);
1576 break;
1577 case 2:
1578 x = bfd_get_16 (input_bfd, location);
1579 break;
1580 case 4:
1581 x = bfd_get_32 (input_bfd, location);
1582 break;
1583 case 8:
1584 #ifdef BFD64
1585 x = bfd_get_64 (input_bfd, location);
1586 #else
1587 abort ();
1588 #endif
1589 break;
1590 }
1591
1592 /* Zero out the unwanted bits of X. */
1593 x &= ~howto->dst_mask;
1594
1595 /* For a range list, use 1 instead of 0 as placeholder. 0
1596 would terminate the list, hiding any later entries. */
1597 if (strcmp (bfd_get_section_name (input_bfd, input_section),
1598 ".debug_ranges") == 0
1599 && (howto->dst_mask & 1) != 0)
1600 x |= 1;
1601
1602 /* Put the relocated value back in the object file. */
1603 switch (size)
1604 {
1605 default:
1606 case 0:
1607 abort ();
1608 case 1:
1609 bfd_put_8 (input_bfd, x, location);
1610 break;
1611 case 2:
1612 bfd_put_16 (input_bfd, x, location);
1613 break;
1614 case 4:
1615 bfd_put_32 (input_bfd, x, location);
1616 break;
1617 case 8:
1618 #ifdef BFD64
1619 bfd_put_64 (input_bfd, x, location);
1620 #else
1621 abort ();
1622 #endif
1623 break;
1624 }
1625 }
1626
1627 /*
1628 DOCDD
1629 INODE
1630 howto manager, , typedef arelent, Relocations
1631
1632 SUBSECTION
1633 The howto manager
1634
1635 When an application wants to create a relocation, but doesn't
1636 know what the target machine might call it, it can find out by
1637 using this bit of code.
1638
1639 */
1640
1641 /*
1642 TYPEDEF
1643 bfd_reloc_code_type
1644
1645 DESCRIPTION
1646 The insides of a reloc code. The idea is that, eventually, there
1647 will be one enumerator for every type of relocation we ever do.
1648 Pass one of these values to <<bfd_reloc_type_lookup>>, and it'll
1649 return a howto pointer.
1650
1651 This does mean that the application must determine the correct
1652 enumerator value; you can't get a howto pointer from a random set
1653 of attributes.
1654
1655 SENUM
1656 bfd_reloc_code_real
1657
1658 ENUM
1659 BFD_RELOC_64
1660 ENUMX
1661 BFD_RELOC_32
1662 ENUMX
1663 BFD_RELOC_26
1664 ENUMX
1665 BFD_RELOC_24
1666 ENUMX
1667 BFD_RELOC_16
1668 ENUMX
1669 BFD_RELOC_14
1670 ENUMX
1671 BFD_RELOC_8
1672 ENUMDOC
1673 Basic absolute relocations of N bits.
1674
1675 ENUM
1676 BFD_RELOC_64_PCREL
1677 ENUMX
1678 BFD_RELOC_32_PCREL
1679 ENUMX
1680 BFD_RELOC_24_PCREL
1681 ENUMX
1682 BFD_RELOC_16_PCREL
1683 ENUMX
1684 BFD_RELOC_12_PCREL
1685 ENUMX
1686 BFD_RELOC_8_PCREL
1687 ENUMDOC
1688 PC-relative relocations. Sometimes these are relative to the address
1689 of the relocation itself; sometimes they are relative to the start of
1690 the section containing the relocation. It depends on the specific target.
1691
1692 The 24-bit relocation is used in some Intel 960 configurations.
1693
1694 ENUM
1695 BFD_RELOC_32_SECREL
1696 ENUMDOC
1697 Section relative relocations. Some targets need this for DWARF2.
1698
1699 ENUM
1700 BFD_RELOC_32_GOT_PCREL
1701 ENUMX
1702 BFD_RELOC_16_GOT_PCREL
1703 ENUMX
1704 BFD_RELOC_8_GOT_PCREL
1705 ENUMX
1706 BFD_RELOC_32_GOTOFF
1707 ENUMX
1708 BFD_RELOC_16_GOTOFF
1709 ENUMX
1710 BFD_RELOC_LO16_GOTOFF
1711 ENUMX
1712 BFD_RELOC_HI16_GOTOFF
1713 ENUMX
1714 BFD_RELOC_HI16_S_GOTOFF
1715 ENUMX
1716 BFD_RELOC_8_GOTOFF
1717 ENUMX
1718 BFD_RELOC_64_PLT_PCREL
1719 ENUMX
1720 BFD_RELOC_32_PLT_PCREL
1721 ENUMX
1722 BFD_RELOC_24_PLT_PCREL
1723 ENUMX
1724 BFD_RELOC_16_PLT_PCREL
1725 ENUMX
1726 BFD_RELOC_8_PLT_PCREL
1727 ENUMX
1728 BFD_RELOC_64_PLTOFF
1729 ENUMX
1730 BFD_RELOC_32_PLTOFF
1731 ENUMX
1732 BFD_RELOC_16_PLTOFF
1733 ENUMX
1734 BFD_RELOC_LO16_PLTOFF
1735 ENUMX
1736 BFD_RELOC_HI16_PLTOFF
1737 ENUMX
1738 BFD_RELOC_HI16_S_PLTOFF
1739 ENUMX
1740 BFD_RELOC_8_PLTOFF
1741 ENUMDOC
1742 For ELF.
1743
1744 ENUM
1745 BFD_RELOC_SIZE32
1746 ENUMX
1747 BFD_RELOC_SIZE64
1748 ENUMDOC
1749 Size relocations.
1750
1751 ENUM
1752 BFD_RELOC_68K_GLOB_DAT
1753 ENUMX
1754 BFD_RELOC_68K_JMP_SLOT
1755 ENUMX
1756 BFD_RELOC_68K_RELATIVE
1757 ENUMX
1758 BFD_RELOC_68K_TLS_GD32
1759 ENUMX
1760 BFD_RELOC_68K_TLS_GD16
1761 ENUMX
1762 BFD_RELOC_68K_TLS_GD8
1763 ENUMX
1764 BFD_RELOC_68K_TLS_LDM32
1765 ENUMX
1766 BFD_RELOC_68K_TLS_LDM16
1767 ENUMX
1768 BFD_RELOC_68K_TLS_LDM8
1769 ENUMX
1770 BFD_RELOC_68K_TLS_LDO32
1771 ENUMX
1772 BFD_RELOC_68K_TLS_LDO16
1773 ENUMX
1774 BFD_RELOC_68K_TLS_LDO8
1775 ENUMX
1776 BFD_RELOC_68K_TLS_IE32
1777 ENUMX
1778 BFD_RELOC_68K_TLS_IE16
1779 ENUMX
1780 BFD_RELOC_68K_TLS_IE8
1781 ENUMX
1782 BFD_RELOC_68K_TLS_LE32
1783 ENUMX
1784 BFD_RELOC_68K_TLS_LE16
1785 ENUMX
1786 BFD_RELOC_68K_TLS_LE8
1787 ENUMDOC
1788 Relocations used by 68K ELF.
1789
1790 ENUM
1791 BFD_RELOC_32_BASEREL
1792 ENUMX
1793 BFD_RELOC_16_BASEREL
1794 ENUMX
1795 BFD_RELOC_LO16_BASEREL
1796 ENUMX
1797 BFD_RELOC_HI16_BASEREL
1798 ENUMX
1799 BFD_RELOC_HI16_S_BASEREL
1800 ENUMX
1801 BFD_RELOC_8_BASEREL
1802 ENUMX
1803 BFD_RELOC_RVA
1804 ENUMDOC
1805 Linkage-table relative.
1806
1807 ENUM
1808 BFD_RELOC_8_FFnn
1809 ENUMDOC
1810 Absolute 8-bit relocation, but used to form an address like 0xFFnn.
1811
1812 ENUM
1813 BFD_RELOC_32_PCREL_S2
1814 ENUMX
1815 BFD_RELOC_16_PCREL_S2
1816 ENUMX
1817 BFD_RELOC_23_PCREL_S2
1818 ENUMDOC
1819 These PC-relative relocations are stored as word displacements --
1820 i.e., byte displacements shifted right two bits. The 30-bit word
1821 displacement (<<32_PCREL_S2>> -- 32 bits, shifted 2) is used on the
1822 SPARC. (SPARC tools generally refer to this as <<WDISP30>>.) The
1823 signed 16-bit displacement is used on the MIPS, and the 23-bit
1824 displacement is used on the Alpha.
1825
1826 ENUM
1827 BFD_RELOC_HI22
1828 ENUMX
1829 BFD_RELOC_LO10
1830 ENUMDOC
1831 High 22 bits and low 10 bits of 32-bit value, placed into lower bits of
1832 the target word. These are used on the SPARC.
1833
1834 ENUM
1835 BFD_RELOC_GPREL16
1836 ENUMX
1837 BFD_RELOC_GPREL32
1838 ENUMDOC
1839 For systems that allocate a Global Pointer register, these are
1840 displacements off that register. These relocation types are
1841 handled specially, because the value the register will have is
1842 decided relatively late.
1843
1844 ENUM
1845 BFD_RELOC_I960_CALLJ
1846 ENUMDOC
1847 Reloc types used for i960/b.out.
1848
1849 ENUM
1850 BFD_RELOC_NONE
1851 ENUMX
1852 BFD_RELOC_SPARC_WDISP22
1853 ENUMX
1854 BFD_RELOC_SPARC22
1855 ENUMX
1856 BFD_RELOC_SPARC13
1857 ENUMX
1858 BFD_RELOC_SPARC_GOT10
1859 ENUMX
1860 BFD_RELOC_SPARC_GOT13
1861 ENUMX
1862 BFD_RELOC_SPARC_GOT22
1863 ENUMX
1864 BFD_RELOC_SPARC_PC10
1865 ENUMX
1866 BFD_RELOC_SPARC_PC22
1867 ENUMX
1868 BFD_RELOC_SPARC_WPLT30
1869 ENUMX
1870 BFD_RELOC_SPARC_COPY
1871 ENUMX
1872 BFD_RELOC_SPARC_GLOB_DAT
1873 ENUMX
1874 BFD_RELOC_SPARC_JMP_SLOT
1875 ENUMX
1876 BFD_RELOC_SPARC_RELATIVE
1877 ENUMX
1878 BFD_RELOC_SPARC_UA16
1879 ENUMX
1880 BFD_RELOC_SPARC_UA32
1881 ENUMX
1882 BFD_RELOC_SPARC_UA64
1883 ENUMX
1884 BFD_RELOC_SPARC_GOTDATA_HIX22
1885 ENUMX
1886 BFD_RELOC_SPARC_GOTDATA_LOX10
1887 ENUMX
1888 BFD_RELOC_SPARC_GOTDATA_OP_HIX22
1889 ENUMX
1890 BFD_RELOC_SPARC_GOTDATA_OP_LOX10
1891 ENUMX
1892 BFD_RELOC_SPARC_GOTDATA_OP
1893 ENUMX
1894 BFD_RELOC_SPARC_JMP_IREL
1895 ENUMX
1896 BFD_RELOC_SPARC_IRELATIVE
1897 ENUMDOC
1898 SPARC ELF relocations. There is probably some overlap with other
1899 relocation types already defined.
1900
1901 ENUM
1902 BFD_RELOC_SPARC_BASE13
1903 ENUMX
1904 BFD_RELOC_SPARC_BASE22
1905 ENUMDOC
1906 I think these are specific to SPARC a.out (e.g., Sun 4).
1907
1908 ENUMEQ
1909 BFD_RELOC_SPARC_64
1910 BFD_RELOC_64
1911 ENUMX
1912 BFD_RELOC_SPARC_10
1913 ENUMX
1914 BFD_RELOC_SPARC_11
1915 ENUMX
1916 BFD_RELOC_SPARC_OLO10
1917 ENUMX
1918 BFD_RELOC_SPARC_HH22
1919 ENUMX
1920 BFD_RELOC_SPARC_HM10
1921 ENUMX
1922 BFD_RELOC_SPARC_LM22
1923 ENUMX
1924 BFD_RELOC_SPARC_PC_HH22
1925 ENUMX
1926 BFD_RELOC_SPARC_PC_HM10
1927 ENUMX
1928 BFD_RELOC_SPARC_PC_LM22
1929 ENUMX
1930 BFD_RELOC_SPARC_WDISP16
1931 ENUMX
1932 BFD_RELOC_SPARC_WDISP19
1933 ENUMX
1934 BFD_RELOC_SPARC_7
1935 ENUMX
1936 BFD_RELOC_SPARC_6
1937 ENUMX
1938 BFD_RELOC_SPARC_5
1939 ENUMEQX
1940 BFD_RELOC_SPARC_DISP64
1941 BFD_RELOC_64_PCREL
1942 ENUMX
1943 BFD_RELOC_SPARC_PLT32
1944 ENUMX
1945 BFD_RELOC_SPARC_PLT64
1946 ENUMX
1947 BFD_RELOC_SPARC_HIX22
1948 ENUMX
1949 BFD_RELOC_SPARC_LOX10
1950 ENUMX
1951 BFD_RELOC_SPARC_H44
1952 ENUMX
1953 BFD_RELOC_SPARC_M44
1954 ENUMX
1955 BFD_RELOC_SPARC_L44
1956 ENUMX
1957 BFD_RELOC_SPARC_REGISTER
1958 ENUMX
1959 BFD_RELOC_SPARC_H34
1960 ENUMX
1961 BFD_RELOC_SPARC_SIZE32
1962 ENUMX
1963 BFD_RELOC_SPARC_SIZE64
1964 ENUMX
1965 BFD_RELOC_SPARC_WDISP10
1966 ENUMDOC
1967 SPARC64 relocations
1968
1969 ENUM
1970 BFD_RELOC_SPARC_REV32
1971 ENUMDOC
1972 SPARC little endian relocation
1973 ENUM
1974 BFD_RELOC_SPARC_TLS_GD_HI22
1975 ENUMX
1976 BFD_RELOC_SPARC_TLS_GD_LO10
1977 ENUMX
1978 BFD_RELOC_SPARC_TLS_GD_ADD
1979 ENUMX
1980 BFD_RELOC_SPARC_TLS_GD_CALL
1981 ENUMX
1982 BFD_RELOC_SPARC_TLS_LDM_HI22
1983 ENUMX
1984 BFD_RELOC_SPARC_TLS_LDM_LO10
1985 ENUMX
1986 BFD_RELOC_SPARC_TLS_LDM_ADD
1987 ENUMX
1988 BFD_RELOC_SPARC_TLS_LDM_CALL
1989 ENUMX
1990 BFD_RELOC_SPARC_TLS_LDO_HIX22
1991 ENUMX
1992 BFD_RELOC_SPARC_TLS_LDO_LOX10
1993 ENUMX
1994 BFD_RELOC_SPARC_TLS_LDO_ADD
1995 ENUMX
1996 BFD_RELOC_SPARC_TLS_IE_HI22
1997 ENUMX
1998 BFD_RELOC_SPARC_TLS_IE_LO10
1999 ENUMX
2000 BFD_RELOC_SPARC_TLS_IE_LD
2001 ENUMX
2002 BFD_RELOC_SPARC_TLS_IE_LDX
2003 ENUMX
2004 BFD_RELOC_SPARC_TLS_IE_ADD
2005 ENUMX
2006 BFD_RELOC_SPARC_TLS_LE_HIX22
2007 ENUMX
2008 BFD_RELOC_SPARC_TLS_LE_LOX10
2009 ENUMX
2010 BFD_RELOC_SPARC_TLS_DTPMOD32
2011 ENUMX
2012 BFD_RELOC_SPARC_TLS_DTPMOD64
2013 ENUMX
2014 BFD_RELOC_SPARC_TLS_DTPOFF32
2015 ENUMX
2016 BFD_RELOC_SPARC_TLS_DTPOFF64
2017 ENUMX
2018 BFD_RELOC_SPARC_TLS_TPOFF32
2019 ENUMX
2020 BFD_RELOC_SPARC_TLS_TPOFF64
2021 ENUMDOC
2022 SPARC TLS relocations
2023
2024 ENUM
2025 BFD_RELOC_SPU_IMM7
2026 ENUMX
2027 BFD_RELOC_SPU_IMM8
2028 ENUMX
2029 BFD_RELOC_SPU_IMM10
2030 ENUMX
2031 BFD_RELOC_SPU_IMM10W
2032 ENUMX
2033 BFD_RELOC_SPU_IMM16
2034 ENUMX
2035 BFD_RELOC_SPU_IMM16W
2036 ENUMX
2037 BFD_RELOC_SPU_IMM18
2038 ENUMX
2039 BFD_RELOC_SPU_PCREL9a
2040 ENUMX
2041 BFD_RELOC_SPU_PCREL9b
2042 ENUMX
2043 BFD_RELOC_SPU_PCREL16
2044 ENUMX
2045 BFD_RELOC_SPU_LO16
2046 ENUMX
2047 BFD_RELOC_SPU_HI16
2048 ENUMX
2049 BFD_RELOC_SPU_PPU32
2050 ENUMX
2051 BFD_RELOC_SPU_PPU64
2052 ENUMX
2053 BFD_RELOC_SPU_ADD_PIC
2054 ENUMDOC
2055 SPU Relocations.
2056
2057 ENUM
2058 BFD_RELOC_ALPHA_GPDISP_HI16
2059 ENUMDOC
2060 Alpha ECOFF and ELF relocations. Some of these treat the symbol or
2061 "addend" in some special way.
2062 For GPDISP_HI16 ("gpdisp") relocations, the symbol is ignored when
2063 writing; when reading, it will be the absolute section symbol. The
2064 addend is the displacement in bytes of the "lda" instruction from
2065 the "ldah" instruction (which is at the address of this reloc).
2066 ENUM
2067 BFD_RELOC_ALPHA_GPDISP_LO16
2068 ENUMDOC
2069 For GPDISP_LO16 ("ignore") relocations, the symbol is handled as
2070 with GPDISP_HI16 relocs. The addend is ignored when writing the
2071 relocations out, and is filled in with the file's GP value on
2072 reading, for convenience.
2073
2074 ENUM
2075 BFD_RELOC_ALPHA_GPDISP
2076 ENUMDOC
2077 The ELF GPDISP relocation is exactly the same as the GPDISP_HI16
2078 relocation except that there is no accompanying GPDISP_LO16
2079 relocation.
2080
2081 ENUM
2082 BFD_RELOC_ALPHA_LITERAL
2083 ENUMX
2084 BFD_RELOC_ALPHA_ELF_LITERAL
2085 ENUMX
2086 BFD_RELOC_ALPHA_LITUSE
2087 ENUMDOC
2088 The Alpha LITERAL/LITUSE relocs are produced by a symbol reference;
2089 the assembler turns it into a LDQ instruction to load the address of
2090 the symbol, and then fills in a register in the real instruction.
2091
2092 The LITERAL reloc, at the LDQ instruction, refers to the .lita
2093 section symbol. The addend is ignored when writing, but is filled
2094 in with the file's GP value on reading, for convenience, as with the
2095 GPDISP_LO16 reloc.
2096
2097 The ELF_LITERAL reloc is somewhere between 16_GOTOFF and GPDISP_LO16.
2098 It should refer to the symbol to be referenced, as with 16_GOTOFF,
2099 but it generates output not based on the position within the .got
2100 section, but relative to the GP value chosen for the file during the
2101 final link stage.
2102
2103 The LITUSE reloc, on the instruction using the loaded address, gives
2104 information to the linker that it might be able to use to optimize
2105 away some literal section references. The symbol is ignored (read
2106 as the absolute section symbol), and the "addend" indicates the type
2107 of instruction using the register:
2108 1 - "memory" fmt insn
2109 2 - byte-manipulation (byte offset reg)
2110 3 - jsr (target of branch)
2111
2112 ENUM
2113 BFD_RELOC_ALPHA_HINT
2114 ENUMDOC
2115 The HINT relocation indicates a value that should be filled into the
2116 "hint" field of a jmp/jsr/ret instruction, for possible branch-
2117 prediction logic which may be provided on some processors.
2118
2119 ENUM
2120 BFD_RELOC_ALPHA_LINKAGE
2121 ENUMDOC
2122 The LINKAGE relocation outputs a linkage pair in the object file,
2123 which is filled by the linker.
2124
2125 ENUM
2126 BFD_RELOC_ALPHA_CODEADDR
2127 ENUMDOC
2128 The CODEADDR relocation outputs a STO_CA in the object file,
2129 which is filled by the linker.
2130
2131 ENUM
2132 BFD_RELOC_ALPHA_GPREL_HI16
2133 ENUMX
2134 BFD_RELOC_ALPHA_GPREL_LO16
2135 ENUMDOC
2136 The GPREL_HI/LO relocations together form a 32-bit offset from the
2137 GP register.
2138
2139 ENUM
2140 BFD_RELOC_ALPHA_BRSGP
2141 ENUMDOC
2142 Like BFD_RELOC_23_PCREL_S2, except that the source and target must
2143 share a common GP, and the target address is adjusted for
2144 STO_ALPHA_STD_GPLOAD.
2145
2146 ENUM
2147 BFD_RELOC_ALPHA_NOP
2148 ENUMDOC
2149 The NOP relocation outputs a NOP if the longword displacement
2150 between two procedure entry points is < 2^21.
2151
2152 ENUM
2153 BFD_RELOC_ALPHA_BSR
2154 ENUMDOC
2155 The BSR relocation outputs a BSR if the longword displacement
2156 between two procedure entry points is < 2^21.
2157
2158 ENUM
2159 BFD_RELOC_ALPHA_LDA
2160 ENUMDOC
2161 The LDA relocation outputs a LDA if the longword displacement
2162 between two procedure entry points is < 2^16.
2163
2164 ENUM
2165 BFD_RELOC_ALPHA_BOH
2166 ENUMDOC
2167 The BOH relocation outputs a BSR if the longword displacement
2168 between two procedure entry points is < 2^21, or else a hint.
2169
2170 ENUM
2171 BFD_RELOC_ALPHA_TLSGD
2172 ENUMX
2173 BFD_RELOC_ALPHA_TLSLDM
2174 ENUMX
2175 BFD_RELOC_ALPHA_DTPMOD64
2176 ENUMX
2177 BFD_RELOC_ALPHA_GOTDTPREL16
2178 ENUMX
2179 BFD_RELOC_ALPHA_DTPREL64
2180 ENUMX
2181 BFD_RELOC_ALPHA_DTPREL_HI16
2182 ENUMX
2183 BFD_RELOC_ALPHA_DTPREL_LO16
2184 ENUMX
2185 BFD_RELOC_ALPHA_DTPREL16
2186 ENUMX
2187 BFD_RELOC_ALPHA_GOTTPREL16
2188 ENUMX
2189 BFD_RELOC_ALPHA_TPREL64
2190 ENUMX
2191 BFD_RELOC_ALPHA_TPREL_HI16
2192 ENUMX
2193 BFD_RELOC_ALPHA_TPREL_LO16
2194 ENUMX
2195 BFD_RELOC_ALPHA_TPREL16
2196 ENUMDOC
2197 Alpha thread-local storage relocations.
2198
2199 ENUM
2200 BFD_RELOC_MIPS_JMP
2201 ENUMX
2202 BFD_RELOC_MICROMIPS_JMP
2203 ENUMDOC
2204 The MIPS jump instruction.
2205
2206 ENUM
2207 BFD_RELOC_MIPS16_JMP
2208 ENUMDOC
2209 The MIPS16 jump instruction.
2210
2211 ENUM
2212 BFD_RELOC_MIPS16_GPREL
2213 ENUMDOC
2214 MIPS16 GP relative reloc.
2215
2216 ENUM
2217 BFD_RELOC_HI16
2218 ENUMDOC
2219 High 16 bits of 32-bit value; simple reloc.
2220
2221 ENUM
2222 BFD_RELOC_HI16_S
2223 ENUMDOC
2224 High 16 bits of 32-bit value but the low 16 bits will be sign
2225 extended and added to form the final result. If the low 16
2226 bits form a negative number, we need to add one to the high value
2227 to compensate for the borrow when the low bits are added.
2228
2229 ENUM
2230 BFD_RELOC_LO16
2231 ENUMDOC
2232 Low 16 bits.
2233
2234 ENUM
2235 BFD_RELOC_HI16_PCREL
2236 ENUMDOC
2237 High 16 bits of 32-bit pc-relative value
2238 ENUM
2239 BFD_RELOC_HI16_S_PCREL
2240 ENUMDOC
2241 High 16 bits of 32-bit pc-relative value, adjusted
2242 ENUM
2243 BFD_RELOC_LO16_PCREL
2244 ENUMDOC
2245 Low 16 bits of pc-relative value
2246
2247 ENUM
2248 BFD_RELOC_MIPS16_GOT16
2249 ENUMX
2250 BFD_RELOC_MIPS16_CALL16
2251 ENUMDOC
2252 Equivalent of BFD_RELOC_MIPS_*, but with the MIPS16 layout of
2253 16-bit immediate fields
2254 ENUM
2255 BFD_RELOC_MIPS16_HI16
2256 ENUMDOC
2257 MIPS16 high 16 bits of 32-bit value.
2258 ENUM
2259 BFD_RELOC_MIPS16_HI16_S
2260 ENUMDOC
2261 MIPS16 high 16 bits of 32-bit value but the low 16 bits will be sign
2262 extended and added to form the final result. If the low 16
2263 bits form a negative number, we need to add one to the high value
2264 to compensate for the borrow when the low bits are added.
2265 ENUM
2266 BFD_RELOC_MIPS16_LO16
2267 ENUMDOC
2268 MIPS16 low 16 bits.
2269
2270 ENUM
2271 BFD_RELOC_MIPS16_TLS_GD
2272 ENUMX
2273 BFD_RELOC_MIPS16_TLS_LDM
2274 ENUMX
2275 BFD_RELOC_MIPS16_TLS_DTPREL_HI16
2276 ENUMX
2277 BFD_RELOC_MIPS16_TLS_DTPREL_LO16
2278 ENUMX
2279 BFD_RELOC_MIPS16_TLS_GOTTPREL
2280 ENUMX
2281 BFD_RELOC_MIPS16_TLS_TPREL_HI16
2282 ENUMX
2283 BFD_RELOC_MIPS16_TLS_TPREL_LO16
2284 ENUMDOC
2285 MIPS16 TLS relocations
2286
2287 ENUM
2288 BFD_RELOC_MIPS_LITERAL
2289 ENUMX
2290 BFD_RELOC_MICROMIPS_LITERAL
2291 ENUMDOC
2292 Relocation against a MIPS literal section.
2293
2294 ENUM
2295 BFD_RELOC_MICROMIPS_7_PCREL_S1
2296 ENUMX
2297 BFD_RELOC_MICROMIPS_10_PCREL_S1
2298 ENUMX
2299 BFD_RELOC_MICROMIPS_16_PCREL_S1
2300 ENUMDOC
2301 microMIPS PC-relative relocations.
2302
2303 ENUM
2304 BFD_RELOC_MIPS_21_PCREL_S2
2305 ENUMX
2306 BFD_RELOC_MIPS_26_PCREL_S2
2307 ENUMX
2308 BFD_RELOC_MIPS_18_PCREL_S3
2309 ENUMX
2310 BFD_RELOC_MIPS_19_PCREL_S2
2311 ENUMDOC
2312 MIPS PC-relative relocations.
2313
2314 ENUM
2315 BFD_RELOC_MICROMIPS_GPREL16
2316 ENUMX
2317 BFD_RELOC_MICROMIPS_HI16
2318 ENUMX
2319 BFD_RELOC_MICROMIPS_HI16_S
2320 ENUMX
2321 BFD_RELOC_MICROMIPS_LO16
2322 ENUMDOC
2323 microMIPS versions of generic BFD relocs.
2324
2325 ENUM
2326 BFD_RELOC_MIPS_GOT16
2327 ENUMX
2328 BFD_RELOC_MICROMIPS_GOT16
2329 ENUMX
2330 BFD_RELOC_MIPS_CALL16
2331 ENUMX
2332 BFD_RELOC_MICROMIPS_CALL16
2333 ENUMX
2334 BFD_RELOC_MIPS_GOT_HI16
2335 ENUMX
2336 BFD_RELOC_MICROMIPS_GOT_HI16
2337 ENUMX
2338 BFD_RELOC_MIPS_GOT_LO16
2339 ENUMX
2340 BFD_RELOC_MICROMIPS_GOT_LO16
2341 ENUMX
2342 BFD_RELOC_MIPS_CALL_HI16
2343 ENUMX
2344 BFD_RELOC_MICROMIPS_CALL_HI16
2345 ENUMX
2346 BFD_RELOC_MIPS_CALL_LO16
2347 ENUMX
2348 BFD_RELOC_MICROMIPS_CALL_LO16
2349 ENUMX
2350 BFD_RELOC_MIPS_SUB
2351 ENUMX
2352 BFD_RELOC_MICROMIPS_SUB
2353 ENUMX
2354 BFD_RELOC_MIPS_GOT_PAGE
2355 ENUMX
2356 BFD_RELOC_MICROMIPS_GOT_PAGE
2357 ENUMX
2358 BFD_RELOC_MIPS_GOT_OFST
2359 ENUMX
2360 BFD_RELOC_MICROMIPS_GOT_OFST
2361 ENUMX
2362 BFD_RELOC_MIPS_GOT_DISP
2363 ENUMX
2364 BFD_RELOC_MICROMIPS_GOT_DISP
2365 ENUMX
2366 BFD_RELOC_MIPS_SHIFT5
2367 ENUMX
2368 BFD_RELOC_MIPS_SHIFT6
2369 ENUMX
2370 BFD_RELOC_MIPS_INSERT_A
2371 ENUMX
2372 BFD_RELOC_MIPS_INSERT_B
2373 ENUMX
2374 BFD_RELOC_MIPS_DELETE
2375 ENUMX
2376 BFD_RELOC_MIPS_HIGHEST
2377 ENUMX
2378 BFD_RELOC_MICROMIPS_HIGHEST
2379 ENUMX
2380 BFD_RELOC_MIPS_HIGHER
2381 ENUMX
2382 BFD_RELOC_MICROMIPS_HIGHER
2383 ENUMX
2384 BFD_RELOC_MIPS_SCN_DISP
2385 ENUMX
2386 BFD_RELOC_MICROMIPS_SCN_DISP
2387 ENUMX
2388 BFD_RELOC_MIPS_REL16
2389 ENUMX
2390 BFD_RELOC_MIPS_RELGOT
2391 ENUMX
2392 BFD_RELOC_MIPS_JALR
2393 ENUMX
2394 BFD_RELOC_MICROMIPS_JALR
2395 ENUMX
2396 BFD_RELOC_MIPS_TLS_DTPMOD32
2397 ENUMX
2398 BFD_RELOC_MIPS_TLS_DTPREL32
2399 ENUMX
2400 BFD_RELOC_MIPS_TLS_DTPMOD64
2401 ENUMX
2402 BFD_RELOC_MIPS_TLS_DTPREL64
2403 ENUMX
2404 BFD_RELOC_MIPS_TLS_GD
2405 ENUMX
2406 BFD_RELOC_MICROMIPS_TLS_GD
2407 ENUMX
2408 BFD_RELOC_MIPS_TLS_LDM
2409 ENUMX
2410 BFD_RELOC_MICROMIPS_TLS_LDM
2411 ENUMX
2412 BFD_RELOC_MIPS_TLS_DTPREL_HI16
2413 ENUMX
2414 BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16
2415 ENUMX
2416 BFD_RELOC_MIPS_TLS_DTPREL_LO16
2417 ENUMX
2418 BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16
2419 ENUMX
2420 BFD_RELOC_MIPS_TLS_GOTTPREL
2421 ENUMX
2422 BFD_RELOC_MICROMIPS_TLS_GOTTPREL
2423 ENUMX
2424 BFD_RELOC_MIPS_TLS_TPREL32
2425 ENUMX
2426 BFD_RELOC_MIPS_TLS_TPREL64
2427 ENUMX
2428 BFD_RELOC_MIPS_TLS_TPREL_HI16
2429 ENUMX
2430 BFD_RELOC_MICROMIPS_TLS_TPREL_HI16
2431 ENUMX
2432 BFD_RELOC_MIPS_TLS_TPREL_LO16
2433 ENUMX
2434 BFD_RELOC_MICROMIPS_TLS_TPREL_LO16
2435 ENUMX
2436 BFD_RELOC_MIPS_EH
2437 ENUMDOC
2438 MIPS ELF relocations.
2439 COMMENT
2440
2441 ENUM
2442 BFD_RELOC_MIPS_COPY
2443 ENUMX
2444 BFD_RELOC_MIPS_JUMP_SLOT
2445 ENUMDOC
2446 MIPS ELF relocations (VxWorks and PLT extensions).
2447 COMMENT
2448
2449 ENUM
2450 BFD_RELOC_MOXIE_10_PCREL
2451 ENUMDOC
2452 Moxie ELF relocations.
2453 COMMENT
2454
2455 ENUM
2456 BFD_RELOC_FRV_LABEL16
2457 ENUMX
2458 BFD_RELOC_FRV_LABEL24
2459 ENUMX
2460 BFD_RELOC_FRV_LO16
2461 ENUMX
2462 BFD_RELOC_FRV_HI16
2463 ENUMX
2464 BFD_RELOC_FRV_GPREL12
2465 ENUMX
2466 BFD_RELOC_FRV_GPRELU12
2467 ENUMX
2468 BFD_RELOC_FRV_GPREL32
2469 ENUMX
2470 BFD_RELOC_FRV_GPRELHI
2471 ENUMX
2472 BFD_RELOC_FRV_GPRELLO
2473 ENUMX
2474 BFD_RELOC_FRV_GOT12
2475 ENUMX
2476 BFD_RELOC_FRV_GOTHI
2477 ENUMX
2478 BFD_RELOC_FRV_GOTLO
2479 ENUMX
2480 BFD_RELOC_FRV_FUNCDESC
2481 ENUMX
2482 BFD_RELOC_FRV_FUNCDESC_GOT12
2483 ENUMX
2484 BFD_RELOC_FRV_FUNCDESC_GOTHI
2485 ENUMX
2486 BFD_RELOC_FRV_FUNCDESC_GOTLO
2487 ENUMX
2488 BFD_RELOC_FRV_FUNCDESC_VALUE
2489 ENUMX
2490 BFD_RELOC_FRV_FUNCDESC_GOTOFF12
2491 ENUMX
2492 BFD_RELOC_FRV_FUNCDESC_GOTOFFHI
2493 ENUMX
2494 BFD_RELOC_FRV_FUNCDESC_GOTOFFLO
2495 ENUMX
2496 BFD_RELOC_FRV_GOTOFF12
2497 ENUMX
2498 BFD_RELOC_FRV_GOTOFFHI
2499 ENUMX
2500 BFD_RELOC_FRV_GOTOFFLO
2501 ENUMX
2502 BFD_RELOC_FRV_GETTLSOFF
2503 ENUMX
2504 BFD_RELOC_FRV_TLSDESC_VALUE
2505 ENUMX
2506 BFD_RELOC_FRV_GOTTLSDESC12
2507 ENUMX
2508 BFD_RELOC_FRV_GOTTLSDESCHI
2509 ENUMX
2510 BFD_RELOC_FRV_GOTTLSDESCLO
2511 ENUMX
2512 BFD_RELOC_FRV_TLSMOFF12
2513 ENUMX
2514 BFD_RELOC_FRV_TLSMOFFHI
2515 ENUMX
2516 BFD_RELOC_FRV_TLSMOFFLO
2517 ENUMX
2518 BFD_RELOC_FRV_GOTTLSOFF12
2519 ENUMX
2520 BFD_RELOC_FRV_GOTTLSOFFHI
2521 ENUMX
2522 BFD_RELOC_FRV_GOTTLSOFFLO
2523 ENUMX
2524 BFD_RELOC_FRV_TLSOFF
2525 ENUMX
2526 BFD_RELOC_FRV_TLSDESC_RELAX
2527 ENUMX
2528 BFD_RELOC_FRV_GETTLSOFF_RELAX
2529 ENUMX
2530 BFD_RELOC_FRV_TLSOFF_RELAX
2531 ENUMX
2532 BFD_RELOC_FRV_TLSMOFF
2533 ENUMDOC
2534 Fujitsu Frv Relocations.
2535 COMMENT
2536
2537 ENUM
2538 BFD_RELOC_MN10300_GOTOFF24
2539 ENUMDOC
2540 This is a 24bit GOT-relative reloc for the mn10300.
2541 ENUM
2542 BFD_RELOC_MN10300_GOT32
2543 ENUMDOC
2544 This is a 32bit GOT-relative reloc for the mn10300, offset by two bytes
2545 in the instruction.
2546 ENUM
2547 BFD_RELOC_MN10300_GOT24
2548 ENUMDOC
2549 This is a 24bit GOT-relative reloc for the mn10300, offset by two bytes
2550 in the instruction.
2551 ENUM
2552 BFD_RELOC_MN10300_GOT16
2553 ENUMDOC
2554 This is a 16bit GOT-relative reloc for the mn10300, offset by two bytes
2555 in the instruction.
2556 ENUM
2557 BFD_RELOC_MN10300_COPY
2558 ENUMDOC
2559 Copy symbol at runtime.
2560 ENUM
2561 BFD_RELOC_MN10300_GLOB_DAT
2562 ENUMDOC
2563 Create GOT entry.
2564 ENUM
2565 BFD_RELOC_MN10300_JMP_SLOT
2566 ENUMDOC
2567 Create PLT entry.
2568 ENUM
2569 BFD_RELOC_MN10300_RELATIVE
2570 ENUMDOC
2571 Adjust by program base.
2572 ENUM
2573 BFD_RELOC_MN10300_SYM_DIFF
2574 ENUMDOC
2575 Together with another reloc targeted at the same location,
2576 allows for a value that is the difference of two symbols
2577 in the same section.
2578 ENUM
2579 BFD_RELOC_MN10300_ALIGN
2580 ENUMDOC
2581 The addend of this reloc is an alignment power that must
2582 be honoured at the offset's location, regardless of linker
2583 relaxation.
2584 ENUM
2585 BFD_RELOC_MN10300_TLS_GD
2586 ENUMX
2587 BFD_RELOC_MN10300_TLS_LD
2588 ENUMX
2589 BFD_RELOC_MN10300_TLS_LDO
2590 ENUMX
2591 BFD_RELOC_MN10300_TLS_GOTIE
2592 ENUMX
2593 BFD_RELOC_MN10300_TLS_IE
2594 ENUMX
2595 BFD_RELOC_MN10300_TLS_LE
2596 ENUMX
2597 BFD_RELOC_MN10300_TLS_DTPMOD
2598 ENUMX
2599 BFD_RELOC_MN10300_TLS_DTPOFF
2600 ENUMX
2601 BFD_RELOC_MN10300_TLS_TPOFF
2602 ENUMDOC
2603 Various TLS-related relocations.
2604 ENUM
2605 BFD_RELOC_MN10300_32_PCREL
2606 ENUMDOC
2607 This is a 32bit pcrel reloc for the mn10300, offset by two bytes in the
2608 instruction.
2609 ENUM
2610 BFD_RELOC_MN10300_16_PCREL
2611 ENUMDOC
2612 This is a 16bit pcrel reloc for the mn10300, offset by two bytes in the
2613 instruction.
2614 COMMENT
2615
2616 ENUM
2617 BFD_RELOC_386_GOT32
2618 ENUMX
2619 BFD_RELOC_386_PLT32
2620 ENUMX
2621 BFD_RELOC_386_COPY
2622 ENUMX
2623 BFD_RELOC_386_GLOB_DAT
2624 ENUMX
2625 BFD_RELOC_386_JUMP_SLOT
2626 ENUMX
2627 BFD_RELOC_386_RELATIVE
2628 ENUMX
2629 BFD_RELOC_386_GOTOFF
2630 ENUMX
2631 BFD_RELOC_386_GOTPC
2632 ENUMX
2633 BFD_RELOC_386_TLS_TPOFF
2634 ENUMX
2635 BFD_RELOC_386_TLS_IE
2636 ENUMX
2637 BFD_RELOC_386_TLS_GOTIE
2638 ENUMX
2639 BFD_RELOC_386_TLS_LE
2640 ENUMX
2641 BFD_RELOC_386_TLS_GD
2642 ENUMX
2643 BFD_RELOC_386_TLS_LDM
2644 ENUMX
2645 BFD_RELOC_386_TLS_LDO_32
2646 ENUMX
2647 BFD_RELOC_386_TLS_IE_32
2648 ENUMX
2649 BFD_RELOC_386_TLS_LE_32
2650 ENUMX
2651 BFD_RELOC_386_TLS_DTPMOD32
2652 ENUMX
2653 BFD_RELOC_386_TLS_DTPOFF32
2654 ENUMX
2655 BFD_RELOC_386_TLS_TPOFF32
2656 ENUMX
2657 BFD_RELOC_386_TLS_GOTDESC
2658 ENUMX
2659 BFD_RELOC_386_TLS_DESC_CALL
2660 ENUMX
2661 BFD_RELOC_386_TLS_DESC
2662 ENUMX
2663 BFD_RELOC_386_IRELATIVE
2664 ENUMDOC
2665 i386/elf relocations
2666
2667 ENUM
2668 BFD_RELOC_X86_64_GOT32
2669 ENUMX
2670 BFD_RELOC_X86_64_PLT32
2671 ENUMX
2672 BFD_RELOC_X86_64_COPY
2673 ENUMX
2674 BFD_RELOC_X86_64_GLOB_DAT
2675 ENUMX
2676 BFD_RELOC_X86_64_JUMP_SLOT
2677 ENUMX
2678 BFD_RELOC_X86_64_RELATIVE
2679 ENUMX
2680 BFD_RELOC_X86_64_GOTPCREL
2681 ENUMX
2682 BFD_RELOC_X86_64_32S
2683 ENUMX
2684 BFD_RELOC_X86_64_DTPMOD64
2685 ENUMX
2686 BFD_RELOC_X86_64_DTPOFF64
2687 ENUMX
2688 BFD_RELOC_X86_64_TPOFF64
2689 ENUMX
2690 BFD_RELOC_X86_64_TLSGD
2691 ENUMX
2692 BFD_RELOC_X86_64_TLSLD
2693 ENUMX
2694 BFD_RELOC_X86_64_DTPOFF32
2695 ENUMX
2696 BFD_RELOC_X86_64_GOTTPOFF
2697 ENUMX
2698 BFD_RELOC_X86_64_TPOFF32
2699 ENUMX
2700 BFD_RELOC_X86_64_GOTOFF64
2701 ENUMX
2702 BFD_RELOC_X86_64_GOTPC32
2703 ENUMX
2704 BFD_RELOC_X86_64_GOT64
2705 ENUMX
2706 BFD_RELOC_X86_64_GOTPCREL64
2707 ENUMX
2708 BFD_RELOC_X86_64_GOTPC64
2709 ENUMX
2710 BFD_RELOC_X86_64_GOTPLT64
2711 ENUMX
2712 BFD_RELOC_X86_64_PLTOFF64
2713 ENUMX
2714 BFD_RELOC_X86_64_GOTPC32_TLSDESC
2715 ENUMX
2716 BFD_RELOC_X86_64_TLSDESC_CALL
2717 ENUMX
2718 BFD_RELOC_X86_64_TLSDESC
2719 ENUMX
2720 BFD_RELOC_X86_64_IRELATIVE
2721 ENUMX
2722 BFD_RELOC_X86_64_PC32_BND
2723 ENUMX
2724 BFD_RELOC_X86_64_PLT32_BND
2725 ENUMDOC
2726 x86-64/elf relocations
2727
2728 ENUM
2729 BFD_RELOC_NS32K_IMM_8
2730 ENUMX
2731 BFD_RELOC_NS32K_IMM_16
2732 ENUMX
2733 BFD_RELOC_NS32K_IMM_32
2734 ENUMX
2735 BFD_RELOC_NS32K_IMM_8_PCREL
2736 ENUMX
2737 BFD_RELOC_NS32K_IMM_16_PCREL
2738 ENUMX
2739 BFD_RELOC_NS32K_IMM_32_PCREL
2740 ENUMX
2741 BFD_RELOC_NS32K_DISP_8
2742 ENUMX
2743 BFD_RELOC_NS32K_DISP_16
2744 ENUMX
2745 BFD_RELOC_NS32K_DISP_32
2746 ENUMX
2747 BFD_RELOC_NS32K_DISP_8_PCREL
2748 ENUMX
2749 BFD_RELOC_NS32K_DISP_16_PCREL
2750 ENUMX
2751 BFD_RELOC_NS32K_DISP_32_PCREL
2752 ENUMDOC
2753 ns32k relocations
2754
2755 ENUM
2756 BFD_RELOC_PDP11_DISP_8_PCREL
2757 ENUMX
2758 BFD_RELOC_PDP11_DISP_6_PCREL
2759 ENUMDOC
2760 PDP11 relocations
2761
2762 ENUM
2763 BFD_RELOC_PJ_CODE_HI16
2764 ENUMX
2765 BFD_RELOC_PJ_CODE_LO16
2766 ENUMX
2767 BFD_RELOC_PJ_CODE_DIR16
2768 ENUMX
2769 BFD_RELOC_PJ_CODE_DIR32
2770 ENUMX
2771 BFD_RELOC_PJ_CODE_REL16
2772 ENUMX
2773 BFD_RELOC_PJ_CODE_REL32
2774 ENUMDOC
2775 Picojava relocs. Not all of these appear in object files.
2776
2777 ENUM
2778 BFD_RELOC_PPC_B26
2779 ENUMX
2780 BFD_RELOC_PPC_BA26
2781 ENUMX
2782 BFD_RELOC_PPC_TOC16
2783 ENUMX
2784 BFD_RELOC_PPC_B16
2785 ENUMX
2786 BFD_RELOC_PPC_B16_BRTAKEN
2787 ENUMX
2788 BFD_RELOC_PPC_B16_BRNTAKEN
2789 ENUMX
2790 BFD_RELOC_PPC_BA16
2791 ENUMX
2792 BFD_RELOC_PPC_BA16_BRTAKEN
2793 ENUMX
2794 BFD_RELOC_PPC_BA16_BRNTAKEN
2795 ENUMX
2796 BFD_RELOC_PPC_COPY
2797 ENUMX
2798 BFD_RELOC_PPC_GLOB_DAT
2799 ENUMX
2800 BFD_RELOC_PPC_JMP_SLOT
2801 ENUMX
2802 BFD_RELOC_PPC_RELATIVE
2803 ENUMX
2804 BFD_RELOC_PPC_LOCAL24PC
2805 ENUMX
2806 BFD_RELOC_PPC_EMB_NADDR32
2807 ENUMX
2808 BFD_RELOC_PPC_EMB_NADDR16
2809 ENUMX
2810 BFD_RELOC_PPC_EMB_NADDR16_LO
2811 ENUMX
2812 BFD_RELOC_PPC_EMB_NADDR16_HI
2813 ENUMX
2814 BFD_RELOC_PPC_EMB_NADDR16_HA
2815 ENUMX
2816 BFD_RELOC_PPC_EMB_SDAI16
2817 ENUMX
2818 BFD_RELOC_PPC_EMB_SDA2I16
2819 ENUMX
2820 BFD_RELOC_PPC_EMB_SDA2REL
2821 ENUMX
2822 BFD_RELOC_PPC_EMB_SDA21
2823 ENUMX
2824 BFD_RELOC_PPC_EMB_MRKREF
2825 ENUMX
2826 BFD_RELOC_PPC_EMB_RELSEC16
2827 ENUMX
2828 BFD_RELOC_PPC_EMB_RELST_LO
2829 ENUMX
2830 BFD_RELOC_PPC_EMB_RELST_HI
2831 ENUMX
2832 BFD_RELOC_PPC_EMB_RELST_HA
2833 ENUMX
2834 BFD_RELOC_PPC_EMB_BIT_FLD
2835 ENUMX
2836 BFD_RELOC_PPC_EMB_RELSDA
2837 ENUMX
2838 BFD_RELOC_PPC_VLE_REL8
2839 ENUMX
2840 BFD_RELOC_PPC_VLE_REL15
2841 ENUMX
2842 BFD_RELOC_PPC_VLE_REL24
2843 ENUMX
2844 BFD_RELOC_PPC_VLE_LO16A
2845 ENUMX
2846 BFD_RELOC_PPC_VLE_LO16D
2847 ENUMX
2848 BFD_RELOC_PPC_VLE_HI16A
2849 ENUMX
2850 BFD_RELOC_PPC_VLE_HI16D
2851 ENUMX
2852 BFD_RELOC_PPC_VLE_HA16A
2853 ENUMX
2854 BFD_RELOC_PPC_VLE_HA16D
2855 ENUMX
2856 BFD_RELOC_PPC_VLE_SDA21
2857 ENUMX
2858 BFD_RELOC_PPC_VLE_SDA21_LO
2859 ENUMX
2860 BFD_RELOC_PPC_VLE_SDAREL_LO16A
2861 ENUMX
2862 BFD_RELOC_PPC_VLE_SDAREL_LO16D
2863 ENUMX
2864 BFD_RELOC_PPC_VLE_SDAREL_HI16A
2865 ENUMX
2866 BFD_RELOC_PPC_VLE_SDAREL_HI16D
2867 ENUMX
2868 BFD_RELOC_PPC_VLE_SDAREL_HA16A
2869 ENUMX
2870 BFD_RELOC_PPC_VLE_SDAREL_HA16D
2871 ENUMX
2872 BFD_RELOC_PPC64_HIGHER
2873 ENUMX
2874 BFD_RELOC_PPC64_HIGHER_S
2875 ENUMX
2876 BFD_RELOC_PPC64_HIGHEST
2877 ENUMX
2878 BFD_RELOC_PPC64_HIGHEST_S
2879 ENUMX
2880 BFD_RELOC_PPC64_TOC16_LO
2881 ENUMX
2882 BFD_RELOC_PPC64_TOC16_HI
2883 ENUMX
2884 BFD_RELOC_PPC64_TOC16_HA
2885 ENUMX
2886 BFD_RELOC_PPC64_TOC
2887 ENUMX
2888 BFD_RELOC_PPC64_PLTGOT16
2889 ENUMX
2890 BFD_RELOC_PPC64_PLTGOT16_LO
2891 ENUMX
2892 BFD_RELOC_PPC64_PLTGOT16_HI
2893 ENUMX
2894 BFD_RELOC_PPC64_PLTGOT16_HA
2895 ENUMX
2896 BFD_RELOC_PPC64_ADDR16_DS
2897 ENUMX
2898 BFD_RELOC_PPC64_ADDR16_LO_DS
2899 ENUMX
2900 BFD_RELOC_PPC64_GOT16_DS
2901 ENUMX
2902 BFD_RELOC_PPC64_GOT16_LO_DS
2903 ENUMX
2904 BFD_RELOC_PPC64_PLT16_LO_DS
2905 ENUMX
2906 BFD_RELOC_PPC64_SECTOFF_DS
2907 ENUMX
2908 BFD_RELOC_PPC64_SECTOFF_LO_DS
2909 ENUMX
2910 BFD_RELOC_PPC64_TOC16_DS
2911 ENUMX
2912 BFD_RELOC_PPC64_TOC16_LO_DS
2913 ENUMX
2914 BFD_RELOC_PPC64_PLTGOT16_DS
2915 ENUMX
2916 BFD_RELOC_PPC64_PLTGOT16_LO_DS
2917 ENUMX
2918 BFD_RELOC_PPC64_ADDR16_HIGH
2919 ENUMX
2920 BFD_RELOC_PPC64_ADDR16_HIGHA
2921 ENUMX
2922 BFD_RELOC_PPC64_ADDR64_LOCAL
2923 ENUMDOC
2924 Power(rs6000) and PowerPC relocations.
2925
2926 ENUM
2927 BFD_RELOC_PPC_TLS
2928 ENUMX
2929 BFD_RELOC_PPC_TLSGD
2930 ENUMX
2931 BFD_RELOC_PPC_TLSLD
2932 ENUMX
2933 BFD_RELOC_PPC_DTPMOD
2934 ENUMX
2935 BFD_RELOC_PPC_TPREL16
2936 ENUMX
2937 BFD_RELOC_PPC_TPREL16_LO
2938 ENUMX
2939 BFD_RELOC_PPC_TPREL16_HI
2940 ENUMX
2941 BFD_RELOC_PPC_TPREL16_HA
2942 ENUMX
2943 BFD_RELOC_PPC_TPREL
2944 ENUMX
2945 BFD_RELOC_PPC_DTPREL16
2946 ENUMX
2947 BFD_RELOC_PPC_DTPREL16_LO
2948 ENUMX
2949 BFD_RELOC_PPC_DTPREL16_HI
2950 ENUMX
2951 BFD_RELOC_PPC_DTPREL16_HA
2952 ENUMX
2953 BFD_RELOC_PPC_DTPREL
2954 ENUMX
2955 BFD_RELOC_PPC_GOT_TLSGD16
2956 ENUMX
2957 BFD_RELOC_PPC_GOT_TLSGD16_LO
2958 ENUMX
2959 BFD_RELOC_PPC_GOT_TLSGD16_HI
2960 ENUMX
2961 BFD_RELOC_PPC_GOT_TLSGD16_HA
2962 ENUMX
2963 BFD_RELOC_PPC_GOT_TLSLD16
2964 ENUMX
2965 BFD_RELOC_PPC_GOT_TLSLD16_LO
2966 ENUMX
2967 BFD_RELOC_PPC_GOT_TLSLD16_HI
2968 ENUMX
2969 BFD_RELOC_PPC_GOT_TLSLD16_HA
2970 ENUMX
2971 BFD_RELOC_PPC_GOT_TPREL16
2972 ENUMX
2973 BFD_RELOC_PPC_GOT_TPREL16_LO
2974 ENUMX
2975 BFD_RELOC_PPC_GOT_TPREL16_HI
2976 ENUMX
2977 BFD_RELOC_PPC_GOT_TPREL16_HA
2978 ENUMX
2979 BFD_RELOC_PPC_GOT_DTPREL16
2980 ENUMX
2981 BFD_RELOC_PPC_GOT_DTPREL16_LO
2982 ENUMX
2983 BFD_RELOC_PPC_GOT_DTPREL16_HI
2984 ENUMX
2985 BFD_RELOC_PPC_GOT_DTPREL16_HA
2986 ENUMX
2987 BFD_RELOC_PPC64_TPREL16_DS
2988 ENUMX
2989 BFD_RELOC_PPC64_TPREL16_LO_DS
2990 ENUMX
2991 BFD_RELOC_PPC64_TPREL16_HIGHER
2992 ENUMX
2993 BFD_RELOC_PPC64_TPREL16_HIGHERA
2994 ENUMX
2995 BFD_RELOC_PPC64_TPREL16_HIGHEST
2996 ENUMX
2997 BFD_RELOC_PPC64_TPREL16_HIGHESTA
2998 ENUMX
2999 BFD_RELOC_PPC64_DTPREL16_DS
3000 ENUMX
3001 BFD_RELOC_PPC64_DTPREL16_LO_DS
3002 ENUMX
3003 BFD_RELOC_PPC64_DTPREL16_HIGHER
3004 ENUMX
3005 BFD_RELOC_PPC64_DTPREL16_HIGHERA
3006 ENUMX
3007 BFD_RELOC_PPC64_DTPREL16_HIGHEST
3008 ENUMX
3009 BFD_RELOC_PPC64_DTPREL16_HIGHESTA
3010 ENUMX
3011 BFD_RELOC_PPC64_TPREL16_HIGH
3012 ENUMX
3013 BFD_RELOC_PPC64_TPREL16_HIGHA
3014 ENUMX
3015 BFD_RELOC_PPC64_DTPREL16_HIGH
3016 ENUMX
3017 BFD_RELOC_PPC64_DTPREL16_HIGHA
3018 ENUMDOC
3019 PowerPC and PowerPC64 thread-local storage relocations.
3020
3021 ENUM
3022 BFD_RELOC_I370_D12
3023 ENUMDOC
3024 IBM 370/390 relocations
3025
3026 ENUM
3027 BFD_RELOC_CTOR
3028 ENUMDOC
3029 The type of reloc used to build a constructor table - at the moment
3030 probably a 32 bit wide absolute relocation, but the target can choose.
3031 It generally does map to one of the other relocation types.
3032
3033 ENUM
3034 BFD_RELOC_ARM_PCREL_BRANCH
3035 ENUMDOC
3036 ARM 26 bit pc-relative branch. The lowest two bits must be zero and are
3037 not stored in the instruction.
3038 ENUM
3039 BFD_RELOC_ARM_PCREL_BLX
3040 ENUMDOC
3041 ARM 26 bit pc-relative branch. The lowest bit must be zero and is
3042 not stored in the instruction. The 2nd lowest bit comes from a 1 bit
3043 field in the instruction.
3044 ENUM
3045 BFD_RELOC_THUMB_PCREL_BLX
3046 ENUMDOC
3047 Thumb 22 bit pc-relative branch. The lowest bit must be zero and is
3048 not stored in the instruction. The 2nd lowest bit comes from a 1 bit
3049 field in the instruction.
3050 ENUM
3051 BFD_RELOC_ARM_PCREL_CALL
3052 ENUMDOC
3053 ARM 26-bit pc-relative branch for an unconditional BL or BLX instruction.
3054 ENUM
3055 BFD_RELOC_ARM_PCREL_JUMP
3056 ENUMDOC
3057 ARM 26-bit pc-relative branch for B or conditional BL instruction.
3058
3059 ENUM
3060 BFD_RELOC_THUMB_PCREL_BRANCH7
3061 ENUMX
3062 BFD_RELOC_THUMB_PCREL_BRANCH9
3063 ENUMX
3064 BFD_RELOC_THUMB_PCREL_BRANCH12
3065 ENUMX
3066 BFD_RELOC_THUMB_PCREL_BRANCH20
3067 ENUMX
3068 BFD_RELOC_THUMB_PCREL_BRANCH23
3069 ENUMX
3070 BFD_RELOC_THUMB_PCREL_BRANCH25
3071 ENUMDOC
3072 Thumb 7-, 9-, 12-, 20-, 23-, and 25-bit pc-relative branches.
3073 The lowest bit must be zero and is not stored in the instruction.
3074 Note that the corresponding ELF R_ARM_THM_JUMPnn constant has an
3075 "nn" one smaller in all cases. Note further that BRANCH23
3076 corresponds to R_ARM_THM_CALL.
3077
3078 ENUM
3079 BFD_RELOC_ARM_OFFSET_IMM
3080 ENUMDOC
3081 12-bit immediate offset, used in ARM-format ldr and str instructions.
3082
3083 ENUM
3084 BFD_RELOC_ARM_THUMB_OFFSET
3085 ENUMDOC
3086 5-bit immediate offset, used in Thumb-format ldr and str instructions.
3087
3088 ENUM
3089 BFD_RELOC_ARM_TARGET1
3090 ENUMDOC
3091 Pc-relative or absolute relocation depending on target. Used for
3092 entries in .init_array sections.
3093 ENUM
3094 BFD_RELOC_ARM_ROSEGREL32
3095 ENUMDOC
3096 Read-only segment base relative address.
3097 ENUM
3098 BFD_RELOC_ARM_SBREL32
3099 ENUMDOC
3100 Data segment base relative address.
3101 ENUM
3102 BFD_RELOC_ARM_TARGET2
3103 ENUMDOC
3104 This reloc is used for references to RTTI data from exception handling
3105 tables. The actual definition depends on the target. It may be a
3106 pc-relative or some form of GOT-indirect relocation.
3107 ENUM
3108 BFD_RELOC_ARM_PREL31
3109 ENUMDOC
3110 31-bit PC relative address.
3111 ENUM
3112 BFD_RELOC_ARM_MOVW
3113 ENUMX
3114 BFD_RELOC_ARM_MOVT
3115 ENUMX
3116 BFD_RELOC_ARM_MOVW_PCREL
3117 ENUMX
3118 BFD_RELOC_ARM_MOVT_PCREL
3119 ENUMX
3120 BFD_RELOC_ARM_THUMB_MOVW
3121 ENUMX
3122 BFD_RELOC_ARM_THUMB_MOVT
3123 ENUMX
3124 BFD_RELOC_ARM_THUMB_MOVW_PCREL
3125 ENUMX
3126 BFD_RELOC_ARM_THUMB_MOVT_PCREL
3127 ENUMDOC
3128 Low and High halfword relocations for MOVW and MOVT instructions.
3129
3130 ENUM
3131 BFD_RELOC_ARM_JUMP_SLOT
3132 ENUMX
3133 BFD_RELOC_ARM_GLOB_DAT
3134 ENUMX
3135 BFD_RELOC_ARM_GOT32
3136 ENUMX
3137 BFD_RELOC_ARM_PLT32
3138 ENUMX
3139 BFD_RELOC_ARM_RELATIVE
3140 ENUMX
3141 BFD_RELOC_ARM_GOTOFF
3142 ENUMX
3143 BFD_RELOC_ARM_GOTPC
3144 ENUMX
3145 BFD_RELOC_ARM_GOT_PREL
3146 ENUMDOC
3147 Relocations for setting up GOTs and PLTs for shared libraries.
3148
3149 ENUM
3150 BFD_RELOC_ARM_TLS_GD32
3151 ENUMX
3152 BFD_RELOC_ARM_TLS_LDO32
3153 ENUMX
3154 BFD_RELOC_ARM_TLS_LDM32
3155 ENUMX
3156 BFD_RELOC_ARM_TLS_DTPOFF32
3157 ENUMX
3158 BFD_RELOC_ARM_TLS_DTPMOD32
3159 ENUMX
3160 BFD_RELOC_ARM_TLS_TPOFF32
3161 ENUMX
3162 BFD_RELOC_ARM_TLS_IE32
3163 ENUMX
3164 BFD_RELOC_ARM_TLS_LE32
3165 ENUMX
3166 BFD_RELOC_ARM_TLS_GOTDESC
3167 ENUMX
3168 BFD_RELOC_ARM_TLS_CALL
3169 ENUMX
3170 BFD_RELOC_ARM_THM_TLS_CALL
3171 ENUMX
3172 BFD_RELOC_ARM_TLS_DESCSEQ
3173 ENUMX
3174 BFD_RELOC_ARM_THM_TLS_DESCSEQ
3175 ENUMX
3176 BFD_RELOC_ARM_TLS_DESC
3177 ENUMDOC
3178 ARM thread-local storage relocations.
3179
3180 ENUM
3181 BFD_RELOC_ARM_ALU_PC_G0_NC
3182 ENUMX
3183 BFD_RELOC_ARM_ALU_PC_G0
3184 ENUMX
3185 BFD_RELOC_ARM_ALU_PC_G1_NC
3186 ENUMX
3187 BFD_RELOC_ARM_ALU_PC_G1
3188 ENUMX
3189 BFD_RELOC_ARM_ALU_PC_G2
3190 ENUMX
3191 BFD_RELOC_ARM_LDR_PC_G0
3192 ENUMX
3193 BFD_RELOC_ARM_LDR_PC_G1
3194 ENUMX
3195 BFD_RELOC_ARM_LDR_PC_G2
3196 ENUMX
3197 BFD_RELOC_ARM_LDRS_PC_G0
3198 ENUMX
3199 BFD_RELOC_ARM_LDRS_PC_G1
3200 ENUMX
3201 BFD_RELOC_ARM_LDRS_PC_G2
3202 ENUMX
3203 BFD_RELOC_ARM_LDC_PC_G0
3204 ENUMX
3205 BFD_RELOC_ARM_LDC_PC_G1
3206 ENUMX
3207 BFD_RELOC_ARM_LDC_PC_G2
3208 ENUMX
3209 BFD_RELOC_ARM_ALU_SB_G0_NC
3210 ENUMX
3211 BFD_RELOC_ARM_ALU_SB_G0
3212 ENUMX
3213 BFD_RELOC_ARM_ALU_SB_G1_NC
3214 ENUMX
3215 BFD_RELOC_ARM_ALU_SB_G1
3216 ENUMX
3217 BFD_RELOC_ARM_ALU_SB_G2
3218 ENUMX
3219 BFD_RELOC_ARM_LDR_SB_G0
3220 ENUMX
3221 BFD_RELOC_ARM_LDR_SB_G1
3222 ENUMX
3223 BFD_RELOC_ARM_LDR_SB_G2
3224 ENUMX
3225 BFD_RELOC_ARM_LDRS_SB_G0
3226 ENUMX
3227 BFD_RELOC_ARM_LDRS_SB_G1
3228 ENUMX
3229 BFD_RELOC_ARM_LDRS_SB_G2
3230 ENUMX
3231 BFD_RELOC_ARM_LDC_SB_G0
3232 ENUMX
3233 BFD_RELOC_ARM_LDC_SB_G1
3234 ENUMX
3235 BFD_RELOC_ARM_LDC_SB_G2
3236 ENUMDOC
3237 ARM group relocations.
3238
3239 ENUM
3240 BFD_RELOC_ARM_V4BX
3241 ENUMDOC
3242 Annotation of BX instructions.
3243
3244 ENUM
3245 BFD_RELOC_ARM_IRELATIVE
3246 ENUMDOC
3247 ARM support for STT_GNU_IFUNC.
3248
3249 ENUM
3250 BFD_RELOC_ARM_IMMEDIATE
3251 ENUMX
3252 BFD_RELOC_ARM_ADRL_IMMEDIATE
3253 ENUMX
3254 BFD_RELOC_ARM_T32_IMMEDIATE
3255 ENUMX
3256 BFD_RELOC_ARM_T32_ADD_IMM
3257 ENUMX
3258 BFD_RELOC_ARM_T32_IMM12
3259 ENUMX
3260 BFD_RELOC_ARM_T32_ADD_PC12
3261 ENUMX
3262 BFD_RELOC_ARM_SHIFT_IMM
3263 ENUMX
3264 BFD_RELOC_ARM_SMC
3265 ENUMX
3266 BFD_RELOC_ARM_HVC
3267 ENUMX
3268 BFD_RELOC_ARM_SWI
3269 ENUMX
3270 BFD_RELOC_ARM_MULTI
3271 ENUMX
3272 BFD_RELOC_ARM_CP_OFF_IMM
3273 ENUMX
3274 BFD_RELOC_ARM_CP_OFF_IMM_S2
3275 ENUMX
3276 BFD_RELOC_ARM_T32_CP_OFF_IMM
3277 ENUMX
3278 BFD_RELOC_ARM_T32_CP_OFF_IMM_S2
3279 ENUMX
3280 BFD_RELOC_ARM_ADR_IMM
3281 ENUMX
3282 BFD_RELOC_ARM_LDR_IMM
3283 ENUMX
3284 BFD_RELOC_ARM_LITERAL
3285 ENUMX
3286 BFD_RELOC_ARM_IN_POOL
3287 ENUMX
3288 BFD_RELOC_ARM_OFFSET_IMM8
3289 ENUMX
3290 BFD_RELOC_ARM_T32_OFFSET_U8
3291 ENUMX
3292 BFD_RELOC_ARM_T32_OFFSET_IMM
3293 ENUMX
3294 BFD_RELOC_ARM_HWLITERAL
3295 ENUMX
3296 BFD_RELOC_ARM_THUMB_ADD
3297 ENUMX
3298 BFD_RELOC_ARM_THUMB_IMM
3299 ENUMX
3300 BFD_RELOC_ARM_THUMB_SHIFT
3301 ENUMDOC
3302 These relocs are only used within the ARM assembler. They are not
3303 (at present) written to any object files.
3304
3305 ENUM
3306 BFD_RELOC_SH_PCDISP8BY2
3307 ENUMX
3308 BFD_RELOC_SH_PCDISP12BY2
3309 ENUMX
3310 BFD_RELOC_SH_IMM3
3311 ENUMX
3312 BFD_RELOC_SH_IMM3U
3313 ENUMX
3314 BFD_RELOC_SH_DISP12
3315 ENUMX
3316 BFD_RELOC_SH_DISP12BY2
3317 ENUMX
3318 BFD_RELOC_SH_DISP12BY4
3319 ENUMX
3320 BFD_RELOC_SH_DISP12BY8
3321 ENUMX
3322 BFD_RELOC_SH_DISP20
3323 ENUMX
3324 BFD_RELOC_SH_DISP20BY8
3325 ENUMX
3326 BFD_RELOC_SH_IMM4
3327 ENUMX
3328 BFD_RELOC_SH_IMM4BY2
3329 ENUMX
3330 BFD_RELOC_SH_IMM4BY4
3331 ENUMX
3332 BFD_RELOC_SH_IMM8
3333 ENUMX
3334 BFD_RELOC_SH_IMM8BY2
3335 ENUMX
3336 BFD_RELOC_SH_IMM8BY4
3337 ENUMX
3338 BFD_RELOC_SH_PCRELIMM8BY2
3339 ENUMX
3340 BFD_RELOC_SH_PCRELIMM8BY4
3341 ENUMX
3342 BFD_RELOC_SH_SWITCH16
3343 ENUMX
3344 BFD_RELOC_SH_SWITCH32
3345 ENUMX
3346 BFD_RELOC_SH_USES
3347 ENUMX
3348 BFD_RELOC_SH_COUNT
3349 ENUMX
3350 BFD_RELOC_SH_ALIGN
3351 ENUMX
3352 BFD_RELOC_SH_CODE
3353 ENUMX
3354 BFD_RELOC_SH_DATA
3355 ENUMX
3356 BFD_RELOC_SH_LABEL
3357 ENUMX
3358 BFD_RELOC_SH_LOOP_START
3359 ENUMX
3360 BFD_RELOC_SH_LOOP_END
3361 ENUMX
3362 BFD_RELOC_SH_COPY
3363 ENUMX
3364 BFD_RELOC_SH_GLOB_DAT
3365 ENUMX
3366 BFD_RELOC_SH_JMP_SLOT
3367 ENUMX
3368 BFD_RELOC_SH_RELATIVE
3369 ENUMX
3370 BFD_RELOC_SH_GOTPC
3371 ENUMX
3372 BFD_RELOC_SH_GOT_LOW16
3373 ENUMX
3374 BFD_RELOC_SH_GOT_MEDLOW16
3375 ENUMX
3376 BFD_RELOC_SH_GOT_MEDHI16
3377 ENUMX
3378 BFD_RELOC_SH_GOT_HI16
3379 ENUMX
3380 BFD_RELOC_SH_GOTPLT_LOW16
3381 ENUMX
3382 BFD_RELOC_SH_GOTPLT_MEDLOW16
3383 ENUMX
3384 BFD_RELOC_SH_GOTPLT_MEDHI16
3385 ENUMX
3386 BFD_RELOC_SH_GOTPLT_HI16
3387 ENUMX
3388 BFD_RELOC_SH_PLT_LOW16
3389 ENUMX
3390 BFD_RELOC_SH_PLT_MEDLOW16
3391 ENUMX
3392 BFD_RELOC_SH_PLT_MEDHI16
3393 ENUMX
3394 BFD_RELOC_SH_PLT_HI16
3395 ENUMX
3396 BFD_RELOC_SH_GOTOFF_LOW16
3397 ENUMX
3398 BFD_RELOC_SH_GOTOFF_MEDLOW16
3399 ENUMX
3400 BFD_RELOC_SH_GOTOFF_MEDHI16
3401 ENUMX
3402 BFD_RELOC_SH_GOTOFF_HI16
3403 ENUMX
3404 BFD_RELOC_SH_GOTPC_LOW16
3405 ENUMX
3406 BFD_RELOC_SH_GOTPC_MEDLOW16
3407 ENUMX
3408 BFD_RELOC_SH_GOTPC_MEDHI16
3409 ENUMX
3410 BFD_RELOC_SH_GOTPC_HI16
3411 ENUMX
3412 BFD_RELOC_SH_COPY64
3413 ENUMX
3414 BFD_RELOC_SH_GLOB_DAT64
3415 ENUMX
3416 BFD_RELOC_SH_JMP_SLOT64
3417 ENUMX
3418 BFD_RELOC_SH_RELATIVE64
3419 ENUMX
3420 BFD_RELOC_SH_GOT10BY4
3421 ENUMX
3422 BFD_RELOC_SH_GOT10BY8
3423 ENUMX
3424 BFD_RELOC_SH_GOTPLT10BY4
3425 ENUMX
3426 BFD_RELOC_SH_GOTPLT10BY8
3427 ENUMX
3428 BFD_RELOC_SH_GOTPLT32
3429 ENUMX
3430 BFD_RELOC_SH_SHMEDIA_CODE
3431 ENUMX
3432 BFD_RELOC_SH_IMMU5
3433 ENUMX
3434 BFD_RELOC_SH_IMMS6
3435 ENUMX
3436 BFD_RELOC_SH_IMMS6BY32
3437 ENUMX
3438 BFD_RELOC_SH_IMMU6
3439 ENUMX
3440 BFD_RELOC_SH_IMMS10
3441 ENUMX
3442 BFD_RELOC_SH_IMMS10BY2
3443 ENUMX
3444 BFD_RELOC_SH_IMMS10BY4
3445 ENUMX
3446 BFD_RELOC_SH_IMMS10BY8
3447 ENUMX
3448 BFD_RELOC_SH_IMMS16
3449 ENUMX
3450 BFD_RELOC_SH_IMMU16
3451 ENUMX
3452 BFD_RELOC_SH_IMM_LOW16
3453 ENUMX
3454 BFD_RELOC_SH_IMM_LOW16_PCREL
3455 ENUMX
3456 BFD_RELOC_SH_IMM_MEDLOW16
3457 ENUMX
3458 BFD_RELOC_SH_IMM_MEDLOW16_PCREL
3459 ENUMX
3460 BFD_RELOC_SH_IMM_MEDHI16
3461 ENUMX
3462 BFD_RELOC_SH_IMM_MEDHI16_PCREL
3463 ENUMX
3464 BFD_RELOC_SH_IMM_HI16
3465 ENUMX
3466 BFD_RELOC_SH_IMM_HI16_PCREL
3467 ENUMX
3468 BFD_RELOC_SH_PT_16
3469 ENUMX
3470 BFD_RELOC_SH_TLS_GD_32
3471 ENUMX
3472 BFD_RELOC_SH_TLS_LD_32
3473 ENUMX
3474 BFD_RELOC_SH_TLS_LDO_32
3475 ENUMX
3476 BFD_RELOC_SH_TLS_IE_32
3477 ENUMX
3478 BFD_RELOC_SH_TLS_LE_32
3479 ENUMX
3480 BFD_RELOC_SH_TLS_DTPMOD32
3481 ENUMX
3482 BFD_RELOC_SH_TLS_DTPOFF32
3483 ENUMX
3484 BFD_RELOC_SH_TLS_TPOFF32
3485 ENUMX
3486 BFD_RELOC_SH_GOT20
3487 ENUMX
3488 BFD_RELOC_SH_GOTOFF20
3489 ENUMX
3490 BFD_RELOC_SH_GOTFUNCDESC
3491 ENUMX
3492 BFD_RELOC_SH_GOTFUNCDESC20
3493 ENUMX
3494 BFD_RELOC_SH_GOTOFFFUNCDESC
3495 ENUMX
3496 BFD_RELOC_SH_GOTOFFFUNCDESC20
3497 ENUMX
3498 BFD_RELOC_SH_FUNCDESC
3499 ENUMDOC
3500 Renesas / SuperH SH relocs. Not all of these appear in object files.
3501
3502 ENUM
3503 BFD_RELOC_ARC_B22_PCREL
3504 ENUMDOC
3505 ARC Cores relocs.
3506 ARC 22 bit pc-relative branch. The lowest two bits must be zero and are
3507 not stored in the instruction. The high 20 bits are installed in bits 26
3508 through 7 of the instruction.
3509 ENUM
3510 BFD_RELOC_ARC_B26
3511 ENUMDOC
3512 ARC 26 bit absolute branch. The lowest two bits must be zero and are not
3513 stored in the instruction. The high 24 bits are installed in bits 23
3514 through 0.
3515
3516 ENUM
3517 BFD_RELOC_BFIN_16_IMM
3518 ENUMDOC
3519 ADI Blackfin 16 bit immediate absolute reloc.
3520 ENUM
3521 BFD_RELOC_BFIN_16_HIGH
3522 ENUMDOC
3523 ADI Blackfin 16 bit immediate absolute reloc higher 16 bits.
3524 ENUM
3525 BFD_RELOC_BFIN_4_PCREL
3526 ENUMDOC
3527 ADI Blackfin 'a' part of LSETUP.
3528 ENUM
3529 BFD_RELOC_BFIN_5_PCREL
3530 ENUMDOC
3531 ADI Blackfin.
3532 ENUM
3533 BFD_RELOC_BFIN_16_LOW
3534 ENUMDOC
3535 ADI Blackfin 16 bit immediate absolute reloc lower 16 bits.
3536 ENUM
3537 BFD_RELOC_BFIN_10_PCREL
3538 ENUMDOC
3539 ADI Blackfin.
3540 ENUM
3541 BFD_RELOC_BFIN_11_PCREL
3542 ENUMDOC
3543 ADI Blackfin 'b' part of LSETUP.
3544 ENUM
3545 BFD_RELOC_BFIN_12_PCREL_JUMP
3546 ENUMDOC
3547 ADI Blackfin.
3548 ENUM
3549 BFD_RELOC_BFIN_12_PCREL_JUMP_S
3550 ENUMDOC
3551 ADI Blackfin Short jump, pcrel.
3552 ENUM
3553 BFD_RELOC_BFIN_24_PCREL_CALL_X
3554 ENUMDOC
3555 ADI Blackfin Call.x not implemented.
3556 ENUM
3557 BFD_RELOC_BFIN_24_PCREL_JUMP_L
3558 ENUMDOC
3559 ADI Blackfin Long Jump pcrel.
3560 ENUM
3561 BFD_RELOC_BFIN_GOT17M4
3562 ENUMX
3563 BFD_RELOC_BFIN_GOTHI
3564 ENUMX
3565 BFD_RELOC_BFIN_GOTLO
3566 ENUMX
3567 BFD_RELOC_BFIN_FUNCDESC
3568 ENUMX
3569 BFD_RELOC_BFIN_FUNCDESC_GOT17M4
3570 ENUMX
3571 BFD_RELOC_BFIN_FUNCDESC_GOTHI
3572 ENUMX
3573 BFD_RELOC_BFIN_FUNCDESC_GOTLO
3574 ENUMX
3575 BFD_RELOC_BFIN_FUNCDESC_VALUE
3576 ENUMX
3577 BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4
3578 ENUMX
3579 BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI
3580 ENUMX
3581 BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO
3582 ENUMX
3583 BFD_RELOC_BFIN_GOTOFF17M4
3584 ENUMX
3585 BFD_RELOC_BFIN_GOTOFFHI
3586 ENUMX
3587 BFD_RELOC_BFIN_GOTOFFLO
3588 ENUMDOC
3589 ADI Blackfin FD-PIC relocations.
3590 ENUM
3591 BFD_RELOC_BFIN_GOT
3592 ENUMDOC
3593 ADI Blackfin GOT relocation.
3594 ENUM
3595 BFD_RELOC_BFIN_PLTPC
3596 ENUMDOC
3597 ADI Blackfin PLTPC relocation.
3598 ENUM
3599 BFD_ARELOC_BFIN_PUSH
3600 ENUMDOC
3601 ADI Blackfin arithmetic relocation.
3602 ENUM
3603 BFD_ARELOC_BFIN_CONST
3604 ENUMDOC
3605 ADI Blackfin arithmetic relocation.
3606 ENUM
3607 BFD_ARELOC_BFIN_ADD
3608 ENUMDOC
3609 ADI Blackfin arithmetic relocation.
3610 ENUM
3611 BFD_ARELOC_BFIN_SUB
3612 ENUMDOC
3613 ADI Blackfin arithmetic relocation.
3614 ENUM
3615 BFD_ARELOC_BFIN_MULT
3616 ENUMDOC
3617 ADI Blackfin arithmetic relocation.
3618 ENUM
3619 BFD_ARELOC_BFIN_DIV
3620 ENUMDOC
3621 ADI Blackfin arithmetic relocation.
3622 ENUM
3623 BFD_ARELOC_BFIN_MOD
3624 ENUMDOC
3625 ADI Blackfin arithmetic relocation.
3626 ENUM
3627 BFD_ARELOC_BFIN_LSHIFT
3628 ENUMDOC
3629 ADI Blackfin arithmetic relocation.
3630 ENUM
3631 BFD_ARELOC_BFIN_RSHIFT
3632 ENUMDOC
3633 ADI Blackfin arithmetic relocation.
3634 ENUM
3635 BFD_ARELOC_BFIN_AND
3636 ENUMDOC
3637 ADI Blackfin arithmetic relocation.
3638 ENUM
3639 BFD_ARELOC_BFIN_OR
3640 ENUMDOC
3641 ADI Blackfin arithmetic relocation.
3642 ENUM
3643 BFD_ARELOC_BFIN_XOR
3644 ENUMDOC
3645 ADI Blackfin arithmetic relocation.
3646 ENUM
3647 BFD_ARELOC_BFIN_LAND
3648 ENUMDOC
3649 ADI Blackfin arithmetic relocation.
3650 ENUM
3651 BFD_ARELOC_BFIN_LOR
3652 ENUMDOC
3653 ADI Blackfin arithmetic relocation.
3654 ENUM
3655 BFD_ARELOC_BFIN_LEN
3656 ENUMDOC
3657 ADI Blackfin arithmetic relocation.
3658 ENUM
3659 BFD_ARELOC_BFIN_NEG
3660 ENUMDOC
3661 ADI Blackfin arithmetic relocation.
3662 ENUM
3663 BFD_ARELOC_BFIN_COMP
3664 ENUMDOC
3665 ADI Blackfin arithmetic relocation.
3666 ENUM
3667 BFD_ARELOC_BFIN_PAGE
3668 ENUMDOC
3669 ADI Blackfin arithmetic relocation.
3670 ENUM
3671 BFD_ARELOC_BFIN_HWPAGE
3672 ENUMDOC
3673 ADI Blackfin arithmetic relocation.
3674 ENUM
3675 BFD_ARELOC_BFIN_ADDR
3676 ENUMDOC
3677 ADI Blackfin arithmetic relocation.
3678
3679 ENUM
3680 BFD_RELOC_D10V_10_PCREL_R
3681 ENUMDOC
3682 Mitsubishi D10V relocs.
3683 This is a 10-bit reloc with the right 2 bits
3684 assumed to be 0.
3685 ENUM
3686 BFD_RELOC_D10V_10_PCREL_L
3687 ENUMDOC
3688 Mitsubishi D10V relocs.
3689 This is a 10-bit reloc with the right 2 bits
3690 assumed to be 0. This is the same as the previous reloc
3691 except it is in the left container, i.e.,
3692 shifted left 15 bits.
3693 ENUM
3694 BFD_RELOC_D10V_18
3695 ENUMDOC
3696 This is an 18-bit reloc with the right 2 bits
3697 assumed to be 0.
3698 ENUM
3699 BFD_RELOC_D10V_18_PCREL
3700 ENUMDOC
3701 This is an 18-bit reloc with the right 2 bits
3702 assumed to be 0.
3703
3704 ENUM
3705 BFD_RELOC_D30V_6
3706 ENUMDOC
3707 Mitsubishi D30V relocs.
3708 This is a 6-bit absolute reloc.
3709 ENUM
3710 BFD_RELOC_D30V_9_PCREL
3711 ENUMDOC
3712 This is a 6-bit pc-relative reloc with
3713 the right 3 bits assumed to be 0.
3714 ENUM
3715 BFD_RELOC_D30V_9_PCREL_R
3716 ENUMDOC
3717 This is a 6-bit pc-relative reloc with
3718 the right 3 bits assumed to be 0. Same
3719 as the previous reloc but on the right side
3720 of the container.
3721 ENUM
3722 BFD_RELOC_D30V_15
3723 ENUMDOC
3724 This is a 12-bit absolute reloc with the
3725 right 3 bitsassumed to be 0.
3726 ENUM
3727 BFD_RELOC_D30V_15_PCREL
3728 ENUMDOC
3729 This is a 12-bit pc-relative reloc with
3730 the right 3 bits assumed to be 0.
3731 ENUM
3732 BFD_RELOC_D30V_15_PCREL_R
3733 ENUMDOC
3734 This is a 12-bit pc-relative reloc with
3735 the right 3 bits assumed to be 0. Same
3736 as the previous reloc but on the right side
3737 of the container.
3738 ENUM
3739 BFD_RELOC_D30V_21
3740 ENUMDOC
3741 This is an 18-bit absolute reloc with
3742 the right 3 bits assumed to be 0.
3743 ENUM
3744 BFD_RELOC_D30V_21_PCREL
3745 ENUMDOC
3746 This is an 18-bit pc-relative reloc with
3747 the right 3 bits assumed to be 0.
3748 ENUM
3749 BFD_RELOC_D30V_21_PCREL_R
3750 ENUMDOC
3751 This is an 18-bit pc-relative reloc with
3752 the right 3 bits assumed to be 0. Same
3753 as the previous reloc but on the right side
3754 of the container.
3755 ENUM
3756 BFD_RELOC_D30V_32
3757 ENUMDOC
3758 This is a 32-bit absolute reloc.
3759 ENUM
3760 BFD_RELOC_D30V_32_PCREL
3761 ENUMDOC
3762 This is a 32-bit pc-relative reloc.
3763
3764 ENUM
3765 BFD_RELOC_DLX_HI16_S
3766 ENUMDOC
3767 DLX relocs
3768 ENUM
3769 BFD_RELOC_DLX_LO16
3770 ENUMDOC
3771 DLX relocs
3772 ENUM
3773 BFD_RELOC_DLX_JMP26
3774 ENUMDOC
3775 DLX relocs
3776
3777 ENUM
3778 BFD_RELOC_M32C_HI8
3779 ENUMX
3780 BFD_RELOC_M32C_RL_JUMP
3781 ENUMX
3782 BFD_RELOC_M32C_RL_1ADDR
3783 ENUMX
3784 BFD_RELOC_M32C_RL_2ADDR
3785 ENUMDOC
3786 Renesas M16C/M32C Relocations.
3787
3788 ENUM
3789 BFD_RELOC_M32R_24
3790 ENUMDOC
3791 Renesas M32R (formerly Mitsubishi M32R) relocs.
3792 This is a 24 bit absolute address.
3793 ENUM
3794 BFD_RELOC_M32R_10_PCREL
3795 ENUMDOC
3796 This is a 10-bit pc-relative reloc with the right 2 bits assumed to be 0.
3797 ENUM
3798 BFD_RELOC_M32R_18_PCREL
3799 ENUMDOC
3800 This is an 18-bit reloc with the right 2 bits assumed to be 0.
3801 ENUM
3802 BFD_RELOC_M32R_26_PCREL
3803 ENUMDOC
3804 This is a 26-bit reloc with the right 2 bits assumed to be 0.
3805 ENUM
3806 BFD_RELOC_M32R_HI16_ULO
3807 ENUMDOC
3808 This is a 16-bit reloc containing the high 16 bits of an address
3809 used when the lower 16 bits are treated as unsigned.
3810 ENUM
3811 BFD_RELOC_M32R_HI16_SLO
3812 ENUMDOC
3813 This is a 16-bit reloc containing the high 16 bits of an address
3814 used when the lower 16 bits are treated as signed.
3815 ENUM
3816 BFD_RELOC_M32R_LO16
3817 ENUMDOC
3818 This is a 16-bit reloc containing the lower 16 bits of an address.
3819 ENUM
3820 BFD_RELOC_M32R_SDA16
3821 ENUMDOC
3822 This is a 16-bit reloc containing the small data area offset for use in
3823 add3, load, and store instructions.
3824 ENUM
3825 BFD_RELOC_M32R_GOT24
3826 ENUMX
3827 BFD_RELOC_M32R_26_PLTREL
3828 ENUMX
3829 BFD_RELOC_M32R_COPY
3830 ENUMX
3831 BFD_RELOC_M32R_GLOB_DAT
3832 ENUMX
3833 BFD_RELOC_M32R_JMP_SLOT
3834 ENUMX
3835 BFD_RELOC_M32R_RELATIVE
3836 ENUMX
3837 BFD_RELOC_M32R_GOTOFF
3838 ENUMX
3839 BFD_RELOC_M32R_GOTOFF_HI_ULO
3840 ENUMX
3841 BFD_RELOC_M32R_GOTOFF_HI_SLO
3842 ENUMX
3843 BFD_RELOC_M32R_GOTOFF_LO
3844 ENUMX
3845 BFD_RELOC_M32R_GOTPC24
3846 ENUMX
3847 BFD_RELOC_M32R_GOT16_HI_ULO
3848 ENUMX
3849 BFD_RELOC_M32R_GOT16_HI_SLO
3850 ENUMX
3851 BFD_RELOC_M32R_GOT16_LO
3852 ENUMX
3853 BFD_RELOC_M32R_GOTPC_HI_ULO
3854 ENUMX
3855 BFD_RELOC_M32R_GOTPC_HI_SLO
3856 ENUMX
3857 BFD_RELOC_M32R_GOTPC_LO
3858 ENUMDOC
3859 For PIC.
3860
3861
3862 ENUM
3863 BFD_RELOC_NDS32_20
3864 ENUMDOC
3865 NDS32 relocs.
3866 This is a 20 bit absolute address.
3867 ENUM
3868 BFD_RELOC_NDS32_9_PCREL
3869 ENUMDOC
3870 This is a 9-bit pc-relative reloc with the right 1 bit assumed to be 0.
3871 ENUM
3872 BFD_RELOC_NDS32_WORD_9_PCREL
3873 ENUMDOC
3874 This is a 9-bit pc-relative reloc with the right 1 bit assumed to be 0.
3875 ENUM
3876 BFD_RELOC_NDS32_15_PCREL
3877 ENUMDOC
3878 This is an 15-bit reloc with the right 1 bit assumed to be 0.
3879 ENUM
3880 BFD_RELOC_NDS32_17_PCREL
3881 ENUMDOC
3882 This is an 17-bit reloc with the right 1 bit assumed to be 0.
3883 ENUM
3884 BFD_RELOC_NDS32_25_PCREL
3885 ENUMDOC
3886 This is a 25-bit reloc with the right 1 bit assumed to be 0.
3887 ENUM
3888 BFD_RELOC_NDS32_HI20
3889 ENUMDOC
3890 This is a 20-bit reloc containing the high 20 bits of an address
3891 used with the lower 12 bits
3892 ENUM
3893 BFD_RELOC_NDS32_LO12S3
3894 ENUMDOC
3895 This is a 12-bit reloc containing the lower 12 bits of an address
3896 then shift right by 3. This is used with ldi,sdi...
3897 ENUM
3898 BFD_RELOC_NDS32_LO12S2
3899 ENUMDOC
3900 This is a 12-bit reloc containing the lower 12 bits of an address
3901 then shift left by 2. This is used with lwi,swi...
3902 ENUM
3903 BFD_RELOC_NDS32_LO12S1
3904 ENUMDOC
3905 This is a 12-bit reloc containing the lower 12 bits of an address
3906 then shift left by 1. This is used with lhi,shi...
3907 ENUM
3908 BFD_RELOC_NDS32_LO12S0
3909 ENUMDOC
3910 This is a 12-bit reloc containing the lower 12 bits of an address
3911 then shift left by 0. This is used with lbisbi...
3912 ENUM
3913 BFD_RELOC_NDS32_LO12S0_ORI
3914 ENUMDOC
3915 This is a 12-bit reloc containing the lower 12 bits of an address
3916 then shift left by 0. This is only used with branch relaxations
3917 ENUM
3918 BFD_RELOC_NDS32_SDA15S3
3919 ENUMDOC
3920 This is a 15-bit reloc containing the small data area 18-bit signed offset
3921 and shift left by 3 for use in ldi, sdi...
3922 ENUM
3923 BFD_RELOC_NDS32_SDA15S2
3924 ENUMDOC
3925 This is a 15-bit reloc containing the small data area 17-bit signed offset
3926 and shift left by 2 for use in lwi, swi...
3927 ENUM
3928 BFD_RELOC_NDS32_SDA15S1
3929 ENUMDOC
3930 This is a 15-bit reloc containing the small data area 16-bit signed offset
3931 and shift left by 1 for use in lhi, shi...
3932 ENUM
3933 BFD_RELOC_NDS32_SDA15S0
3934 ENUMDOC
3935 This is a 15-bit reloc containing the small data area 15-bit signed offset
3936 and shift left by 0 for use in lbi, sbi...
3937 ENUM
3938 BFD_RELOC_NDS32_SDA16S3
3939 ENUMDOC
3940 This is a 16-bit reloc containing the small data area 16-bit signed offset
3941 and shift left by 3
3942 ENUM
3943 BFD_RELOC_NDS32_SDA17S2
3944 ENUMDOC
3945 This is a 17-bit reloc containing the small data area 17-bit signed offset
3946 and shift left by 2 for use in lwi.gp, swi.gp...
3947 ENUM
3948 BFD_RELOC_NDS32_SDA18S1
3949 ENUMDOC
3950 This is a 18-bit reloc containing the small data area 18-bit signed offset
3951 and shift left by 1 for use in lhi.gp, shi.gp...
3952 ENUM
3953 BFD_RELOC_NDS32_SDA19S0
3954 ENUMDOC
3955 This is a 19-bit reloc containing the small data area 19-bit signed offset
3956 and shift left by 0 for use in lbi.gp, sbi.gp...
3957 ENUM
3958 BFD_RELOC_NDS32_GOT20
3959 ENUMX
3960 BFD_RELOC_NDS32_9_PLTREL
3961 ENUMX
3962 BFD_RELOC_NDS32_25_PLTREL
3963 ENUMX
3964 BFD_RELOC_NDS32_COPY
3965 ENUMX
3966 BFD_RELOC_NDS32_GLOB_DAT
3967 ENUMX
3968 BFD_RELOC_NDS32_JMP_SLOT
3969 ENUMX
3970 BFD_RELOC_NDS32_RELATIVE
3971 ENUMX
3972 BFD_RELOC_NDS32_GOTOFF
3973 ENUMX
3974 BFD_RELOC_NDS32_GOTOFF_HI20
3975 ENUMX
3976 BFD_RELOC_NDS32_GOTOFF_LO12
3977 ENUMX
3978 BFD_RELOC_NDS32_GOTPC20
3979 ENUMX
3980 BFD_RELOC_NDS32_GOT_HI20
3981 ENUMX
3982 BFD_RELOC_NDS32_GOT_LO12
3983 ENUMX
3984 BFD_RELOC_NDS32_GOTPC_HI20
3985 ENUMX
3986 BFD_RELOC_NDS32_GOTPC_LO12
3987 ENUMDOC
3988 for PIC
3989 ENUM
3990 BFD_RELOC_NDS32_INSN16
3991 ENUMX
3992 BFD_RELOC_NDS32_LABEL
3993 ENUMX
3994 BFD_RELOC_NDS32_LONGCALL1
3995 ENUMX
3996 BFD_RELOC_NDS32_LONGCALL2
3997 ENUMX
3998 BFD_RELOC_NDS32_LONGCALL3
3999 ENUMX
4000 BFD_RELOC_NDS32_LONGJUMP1
4001 ENUMX
4002 BFD_RELOC_NDS32_LONGJUMP2
4003 ENUMX
4004 BFD_RELOC_NDS32_LONGJUMP3
4005 ENUMX
4006 BFD_RELOC_NDS32_LOADSTORE
4007 ENUMX
4008 BFD_RELOC_NDS32_9_FIXED
4009 ENUMX
4010 BFD_RELOC_NDS32_15_FIXED
4011 ENUMX
4012 BFD_RELOC_NDS32_17_FIXED
4013 ENUMX
4014 BFD_RELOC_NDS32_25_FIXED
4015 ENUMX
4016 BFD_RELOC_NDS32_LONGCALL4
4017 ENUMX
4018 BFD_RELOC_NDS32_LONGCALL5
4019 ENUMX
4020 BFD_RELOC_NDS32_LONGCALL6
4021 ENUMX
4022 BFD_RELOC_NDS32_LONGJUMP4
4023 ENUMX
4024 BFD_RELOC_NDS32_LONGJUMP5
4025 ENUMX
4026 BFD_RELOC_NDS32_LONGJUMP6
4027 ENUMX
4028 BFD_RELOC_NDS32_LONGJUMP7
4029 ENUMDOC
4030 for relax
4031 ENUM
4032 BFD_RELOC_NDS32_PLTREL_HI20
4033 ENUMX
4034 BFD_RELOC_NDS32_PLTREL_LO12
4035 ENUMX
4036 BFD_RELOC_NDS32_PLT_GOTREL_HI20
4037 ENUMX
4038 BFD_RELOC_NDS32_PLT_GOTREL_LO12
4039 ENUMDOC
4040 for PIC
4041 ENUM
4042 BFD_RELOC_NDS32_SDA12S2_DP
4043 ENUMX
4044 BFD_RELOC_NDS32_SDA12S2_SP
4045 ENUMX
4046 BFD_RELOC_NDS32_LO12S2_DP
4047 ENUMX
4048 BFD_RELOC_NDS32_LO12S2_SP
4049 ENUMDOC
4050 for floating point
4051 ENUM
4052 BFD_RELOC_NDS32_DWARF2_OP1
4053 ENUMX
4054 BFD_RELOC_NDS32_DWARF2_OP2
4055 ENUMX
4056 BFD_RELOC_NDS32_DWARF2_LEB
4057 ENUMDOC
4058 for dwarf2 debug_line.
4059 ENUM
4060 BFD_RELOC_NDS32_UPDATE_TA
4061 ENUMDOC
4062 for eliminate 16-bit instructions
4063 ENUM
4064 BFD_RELOC_NDS32_PLT_GOTREL_LO20
4065 ENUMX
4066 BFD_RELOC_NDS32_PLT_GOTREL_LO15
4067 ENUMX
4068 BFD_RELOC_NDS32_PLT_GOTREL_LO19
4069 ENUMX
4070 BFD_RELOC_NDS32_GOT_LO15
4071 ENUMX
4072 BFD_RELOC_NDS32_GOT_LO19
4073 ENUMX
4074 BFD_RELOC_NDS32_GOTOFF_LO15
4075 ENUMX
4076 BFD_RELOC_NDS32_GOTOFF_LO19
4077 ENUMX
4078 BFD_RELOC_NDS32_GOT15S2
4079 ENUMX
4080 BFD_RELOC_NDS32_GOT17S2
4081 ENUMDOC
4082 for PIC object relaxation
4083 ENUM
4084 BFD_RELOC_NDS32_5
4085 ENUMDOC
4086 NDS32 relocs.
4087 This is a 5 bit absolute address.
4088 ENUM
4089 BFD_RELOC_NDS32_10_UPCREL
4090 ENUMDOC
4091 This is a 10-bit unsigned pc-relative reloc with the right 1 bit assumed to be 0.
4092 ENUM
4093 BFD_RELOC_NDS32_SDA_FP7U2_RELA
4094 ENUMDOC
4095 If fp were omitted, fp can used as another gp.
4096 ENUM
4097 BFD_RELOC_NDS32_RELAX_ENTRY
4098 ENUMX
4099 BFD_RELOC_NDS32_GOT_SUFF
4100 ENUMX
4101 BFD_RELOC_NDS32_GOTOFF_SUFF
4102 ENUMX
4103 BFD_RELOC_NDS32_PLT_GOT_SUFF
4104 ENUMX
4105 BFD_RELOC_NDS32_MULCALL_SUFF
4106 ENUMX
4107 BFD_RELOC_NDS32_PTR
4108 ENUMX
4109 BFD_RELOC_NDS32_PTR_COUNT
4110 ENUMX
4111 BFD_RELOC_NDS32_PTR_RESOLVED
4112 ENUMX
4113 BFD_RELOC_NDS32_PLTBLOCK
4114 ENUMX
4115 BFD_RELOC_NDS32_RELAX_REGION_BEGIN
4116 ENUMX
4117 BFD_RELOC_NDS32_RELAX_REGION_END
4118 ENUMX
4119 BFD_RELOC_NDS32_MINUEND
4120 ENUMX
4121 BFD_RELOC_NDS32_SUBTRAHEND
4122 ENUMX
4123 BFD_RELOC_NDS32_DIFF8
4124 ENUMX
4125 BFD_RELOC_NDS32_DIFF16
4126 ENUMX
4127 BFD_RELOC_NDS32_DIFF32
4128 ENUMX
4129 BFD_RELOC_NDS32_DIFF_ULEB128
4130 ENUMX
4131 BFD_RELOC_NDS32_EMPTY
4132 ENUMDOC
4133 relaxation relative relocation types
4134 ENUM
4135 BFD_RELOC_NDS32_25_ABS
4136 ENUMDOC
4137 This is a 25 bit absolute address.
4138 ENUM
4139 BFD_RELOC_NDS32_DATA
4140 ENUMX
4141 BFD_RELOC_NDS32_TRAN
4142 ENUMX
4143 BFD_RELOC_NDS32_17IFC_PCREL
4144 ENUMX
4145 BFD_RELOC_NDS32_10IFCU_PCREL
4146 ENUMDOC
4147 For ex9 and ifc using.
4148 ENUM
4149 BFD_RELOC_NDS32_TPOFF
4150 ENUMX
4151 BFD_RELOC_NDS32_TLS_LE_HI20
4152 ENUMX
4153 BFD_RELOC_NDS32_TLS_LE_LO12
4154 ENUMX
4155 BFD_RELOC_NDS32_TLS_LE_ADD
4156 ENUMX
4157 BFD_RELOC_NDS32_TLS_LE_LS
4158 ENUMX
4159 BFD_RELOC_NDS32_GOTTPOFF
4160 ENUMX
4161 BFD_RELOC_NDS32_TLS_IE_HI20
4162 ENUMX
4163 BFD_RELOC_NDS32_TLS_IE_LO12S2
4164 ENUMX
4165 BFD_RELOC_NDS32_TLS_TPOFF
4166 ENUMX
4167 BFD_RELOC_NDS32_TLS_LE_20
4168 ENUMX
4169 BFD_RELOC_NDS32_TLS_LE_15S0
4170 ENUMX
4171 BFD_RELOC_NDS32_TLS_LE_15S1
4172 ENUMX
4173 BFD_RELOC_NDS32_TLS_LE_15S2
4174 ENUMDOC
4175 For TLS.
4176
4177
4178 ENUM
4179 BFD_RELOC_V850_9_PCREL
4180 ENUMDOC
4181 This is a 9-bit reloc
4182 ENUM
4183 BFD_RELOC_V850_22_PCREL
4184 ENUMDOC
4185 This is a 22-bit reloc
4186
4187 ENUM
4188 BFD_RELOC_V850_SDA_16_16_OFFSET
4189 ENUMDOC
4190 This is a 16 bit offset from the short data area pointer.
4191 ENUM
4192 BFD_RELOC_V850_SDA_15_16_OFFSET
4193 ENUMDOC
4194 This is a 16 bit offset (of which only 15 bits are used) from the
4195 short data area pointer.
4196 ENUM
4197 BFD_RELOC_V850_ZDA_16_16_OFFSET
4198 ENUMDOC
4199 This is a 16 bit offset from the zero data area pointer.
4200 ENUM
4201 BFD_RELOC_V850_ZDA_15_16_OFFSET
4202 ENUMDOC
4203 This is a 16 bit offset (of which only 15 bits are used) from the
4204 zero data area pointer.
4205 ENUM
4206 BFD_RELOC_V850_TDA_6_8_OFFSET
4207 ENUMDOC
4208 This is an 8 bit offset (of which only 6 bits are used) from the
4209 tiny data area pointer.
4210 ENUM
4211 BFD_RELOC_V850_TDA_7_8_OFFSET
4212 ENUMDOC
4213 This is an 8bit offset (of which only 7 bits are used) from the tiny
4214 data area pointer.
4215 ENUM
4216 BFD_RELOC_V850_TDA_7_7_OFFSET
4217 ENUMDOC
4218 This is a 7 bit offset from the tiny data area pointer.
4219 ENUM
4220 BFD_RELOC_V850_TDA_16_16_OFFSET
4221 ENUMDOC
4222 This is a 16 bit offset from the tiny data area pointer.
4223 COMMENT
4224 ENUM
4225 BFD_RELOC_V850_TDA_4_5_OFFSET
4226 ENUMDOC
4227 This is a 5 bit offset (of which only 4 bits are used) from the tiny
4228 data area pointer.
4229 ENUM
4230 BFD_RELOC_V850_TDA_4_4_OFFSET
4231 ENUMDOC
4232 This is a 4 bit offset from the tiny data area pointer.
4233 ENUM
4234 BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET
4235 ENUMDOC
4236 This is a 16 bit offset from the short data area pointer, with the
4237 bits placed non-contiguously in the instruction.
4238 ENUM
4239 BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET
4240 ENUMDOC
4241 This is a 16 bit offset from the zero data area pointer, with the
4242 bits placed non-contiguously in the instruction.
4243 ENUM
4244 BFD_RELOC_V850_CALLT_6_7_OFFSET
4245 ENUMDOC
4246 This is a 6 bit offset from the call table base pointer.
4247 ENUM
4248 BFD_RELOC_V850_CALLT_16_16_OFFSET
4249 ENUMDOC
4250 This is a 16 bit offset from the call table base pointer.
4251 ENUM
4252 BFD_RELOC_V850_LONGCALL
4253 ENUMDOC
4254 Used for relaxing indirect function calls.
4255 ENUM
4256 BFD_RELOC_V850_LONGJUMP
4257 ENUMDOC
4258 Used for relaxing indirect jumps.
4259 ENUM
4260 BFD_RELOC_V850_ALIGN
4261 ENUMDOC
4262 Used to maintain alignment whilst relaxing.
4263 ENUM
4264 BFD_RELOC_V850_LO16_SPLIT_OFFSET
4265 ENUMDOC
4266 This is a variation of BFD_RELOC_LO16 that can be used in v850e ld.bu
4267 instructions.
4268 ENUM
4269 BFD_RELOC_V850_16_PCREL
4270 ENUMDOC
4271 This is a 16-bit reloc.
4272 ENUM
4273 BFD_RELOC_V850_17_PCREL
4274 ENUMDOC
4275 This is a 17-bit reloc.
4276 ENUM
4277 BFD_RELOC_V850_23
4278 ENUMDOC
4279 This is a 23-bit reloc.
4280 ENUM
4281 BFD_RELOC_V850_32_PCREL
4282 ENUMDOC
4283 This is a 32-bit reloc.
4284 ENUM
4285 BFD_RELOC_V850_32_ABS
4286 ENUMDOC
4287 This is a 32-bit reloc.
4288 ENUM
4289 BFD_RELOC_V850_16_SPLIT_OFFSET
4290 ENUMDOC
4291 This is a 16-bit reloc.
4292 ENUM
4293 BFD_RELOC_V850_16_S1
4294 ENUMDOC
4295 This is a 16-bit reloc.
4296 ENUM
4297 BFD_RELOC_V850_LO16_S1
4298 ENUMDOC
4299 Low 16 bits. 16 bit shifted by 1.
4300 ENUM
4301 BFD_RELOC_V850_CALLT_15_16_OFFSET
4302 ENUMDOC
4303 This is a 16 bit offset from the call table base pointer.
4304 ENUM
4305 BFD_RELOC_V850_32_GOTPCREL
4306 ENUMDOC
4307 DSO relocations.
4308 ENUM
4309 BFD_RELOC_V850_16_GOT
4310 ENUMDOC
4311 DSO relocations.
4312 ENUM
4313 BFD_RELOC_V850_32_GOT
4314 ENUMDOC
4315 DSO relocations.
4316 ENUM
4317 BFD_RELOC_V850_22_PLT_PCREL
4318 ENUMDOC
4319 DSO relocations.
4320 ENUM
4321 BFD_RELOC_V850_32_PLT_PCREL
4322 ENUMDOC
4323 DSO relocations.
4324 ENUM
4325 BFD_RELOC_V850_COPY
4326 ENUMDOC
4327 DSO relocations.
4328 ENUM
4329 BFD_RELOC_V850_GLOB_DAT
4330 ENUMDOC
4331 DSO relocations.
4332 ENUM
4333 BFD_RELOC_V850_JMP_SLOT
4334 ENUMDOC
4335 DSO relocations.
4336 ENUM
4337 BFD_RELOC_V850_RELATIVE
4338 ENUMDOC
4339 DSO relocations.
4340 ENUM
4341 BFD_RELOC_V850_16_GOTOFF
4342 ENUMDOC
4343 DSO relocations.
4344 ENUM
4345 BFD_RELOC_V850_32_GOTOFF
4346 ENUMDOC
4347 DSO relocations.
4348 ENUM
4349 BFD_RELOC_V850_CODE
4350 ENUMDOC
4351 start code.
4352 ENUM
4353 BFD_RELOC_V850_DATA
4354 ENUMDOC
4355 start data in text.
4356
4357 ENUM
4358 BFD_RELOC_TIC30_LDP
4359 ENUMDOC
4360 This is a 8bit DP reloc for the tms320c30, where the most
4361 significant 8 bits of a 24 bit word are placed into the least
4362 significant 8 bits of the opcode.
4363
4364 ENUM
4365 BFD_RELOC_TIC54X_PARTLS7
4366 ENUMDOC
4367 This is a 7bit reloc for the tms320c54x, where the least
4368 significant 7 bits of a 16 bit word are placed into the least
4369 significant 7 bits of the opcode.
4370
4371 ENUM
4372 BFD_RELOC_TIC54X_PARTMS9
4373 ENUMDOC
4374 This is a 9bit DP reloc for the tms320c54x, where the most
4375 significant 9 bits of a 16 bit word are placed into the least
4376 significant 9 bits of the opcode.
4377
4378 ENUM
4379 BFD_RELOC_TIC54X_23
4380 ENUMDOC
4381 This is an extended address 23-bit reloc for the tms320c54x.
4382
4383 ENUM
4384 BFD_RELOC_TIC54X_16_OF_23
4385 ENUMDOC
4386 This is a 16-bit reloc for the tms320c54x, where the least
4387 significant 16 bits of a 23-bit extended address are placed into
4388 the opcode.
4389
4390 ENUM
4391 BFD_RELOC_TIC54X_MS7_OF_23
4392 ENUMDOC
4393 This is a reloc for the tms320c54x, where the most
4394 significant 7 bits of a 23-bit extended address are placed into
4395 the opcode.
4396
4397 ENUM
4398 BFD_RELOC_C6000_PCR_S21
4399 ENUMX
4400 BFD_RELOC_C6000_PCR_S12
4401 ENUMX
4402 BFD_RELOC_C6000_PCR_S10
4403 ENUMX
4404 BFD_RELOC_C6000_PCR_S7
4405 ENUMX
4406 BFD_RELOC_C6000_ABS_S16
4407 ENUMX
4408 BFD_RELOC_C6000_ABS_L16
4409 ENUMX
4410 BFD_RELOC_C6000_ABS_H16
4411 ENUMX
4412 BFD_RELOC_C6000_SBR_U15_B
4413 ENUMX
4414 BFD_RELOC_C6000_SBR_U15_H
4415 ENUMX
4416 BFD_RELOC_C6000_SBR_U15_W
4417 ENUMX
4418 BFD_RELOC_C6000_SBR_S16
4419 ENUMX
4420 BFD_RELOC_C6000_SBR_L16_B
4421 ENUMX
4422 BFD_RELOC_C6000_SBR_L16_H
4423 ENUMX
4424 BFD_RELOC_C6000_SBR_L16_W
4425 ENUMX
4426 BFD_RELOC_C6000_SBR_H16_B
4427 ENUMX
4428 BFD_RELOC_C6000_SBR_H16_H
4429 ENUMX
4430 BFD_RELOC_C6000_SBR_H16_W
4431 ENUMX
4432 BFD_RELOC_C6000_SBR_GOT_U15_W
4433 ENUMX
4434 BFD_RELOC_C6000_SBR_GOT_L16_W
4435 ENUMX
4436 BFD_RELOC_C6000_SBR_GOT_H16_W
4437 ENUMX
4438 BFD_RELOC_C6000_DSBT_INDEX
4439 ENUMX
4440 BFD_RELOC_C6000_PREL31
4441 ENUMX
4442 BFD_RELOC_C6000_COPY
4443 ENUMX
4444 BFD_RELOC_C6000_JUMP_SLOT
4445 ENUMX
4446 BFD_RELOC_C6000_EHTYPE
4447 ENUMX
4448 BFD_RELOC_C6000_PCR_H16
4449 ENUMX
4450 BFD_RELOC_C6000_PCR_L16
4451 ENUMX
4452 BFD_RELOC_C6000_ALIGN
4453 ENUMX
4454 BFD_RELOC_C6000_FPHEAD
4455 ENUMX
4456 BFD_RELOC_C6000_NOCMP
4457 ENUMDOC
4458 TMS320C6000 relocations.
4459
4460 ENUM
4461 BFD_RELOC_FR30_48
4462 ENUMDOC
4463 This is a 48 bit reloc for the FR30 that stores 32 bits.
4464 ENUM
4465 BFD_RELOC_FR30_20
4466 ENUMDOC
4467 This is a 32 bit reloc for the FR30 that stores 20 bits split up into
4468 two sections.
4469 ENUM
4470 BFD_RELOC_FR30_6_IN_4
4471 ENUMDOC
4472 This is a 16 bit reloc for the FR30 that stores a 6 bit word offset in
4473 4 bits.
4474 ENUM
4475 BFD_RELOC_FR30_8_IN_8
4476 ENUMDOC
4477 This is a 16 bit reloc for the FR30 that stores an 8 bit byte offset
4478 into 8 bits.
4479 ENUM
4480 BFD_RELOC_FR30_9_IN_8
4481 ENUMDOC
4482 This is a 16 bit reloc for the FR30 that stores a 9 bit short offset
4483 into 8 bits.
4484 ENUM
4485 BFD_RELOC_FR30_10_IN_8
4486 ENUMDOC
4487 This is a 16 bit reloc for the FR30 that stores a 10 bit word offset
4488 into 8 bits.
4489 ENUM
4490 BFD_RELOC_FR30_9_PCREL
4491 ENUMDOC
4492 This is a 16 bit reloc for the FR30 that stores a 9 bit pc relative
4493 short offset into 8 bits.
4494 ENUM
4495 BFD_RELOC_FR30_12_PCREL
4496 ENUMDOC
4497 This is a 16 bit reloc for the FR30 that stores a 12 bit pc relative
4498 short offset into 11 bits.
4499
4500 ENUM
4501 BFD_RELOC_MCORE_PCREL_IMM8BY4
4502 ENUMX
4503 BFD_RELOC_MCORE_PCREL_IMM11BY2
4504 ENUMX
4505 BFD_RELOC_MCORE_PCREL_IMM4BY2
4506 ENUMX
4507 BFD_RELOC_MCORE_PCREL_32
4508 ENUMX
4509 BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2
4510 ENUMX
4511 BFD_RELOC_MCORE_RVA
4512 ENUMDOC
4513 Motorola Mcore relocations.
4514
4515 ENUM
4516 BFD_RELOC_MEP_8
4517 ENUMX
4518 BFD_RELOC_MEP_16
4519 ENUMX
4520 BFD_RELOC_MEP_32
4521 ENUMX
4522 BFD_RELOC_MEP_PCREL8A2
4523 ENUMX
4524 BFD_RELOC_MEP_PCREL12A2
4525 ENUMX
4526 BFD_RELOC_MEP_PCREL17A2
4527 ENUMX
4528 BFD_RELOC_MEP_PCREL24A2
4529 ENUMX
4530 BFD_RELOC_MEP_PCABS24A2
4531 ENUMX
4532 BFD_RELOC_MEP_LOW16
4533 ENUMX
4534 BFD_RELOC_MEP_HI16U
4535 ENUMX
4536 BFD_RELOC_MEP_HI16S
4537 ENUMX
4538 BFD_RELOC_MEP_GPREL
4539 ENUMX
4540 BFD_RELOC_MEP_TPREL
4541 ENUMX
4542 BFD_RELOC_MEP_TPREL7
4543 ENUMX
4544 BFD_RELOC_MEP_TPREL7A2
4545 ENUMX
4546 BFD_RELOC_MEP_TPREL7A4
4547 ENUMX
4548 BFD_RELOC_MEP_UIMM24
4549 ENUMX
4550 BFD_RELOC_MEP_ADDR24A4
4551 ENUMX
4552 BFD_RELOC_MEP_GNU_VTINHERIT
4553 ENUMX
4554 BFD_RELOC_MEP_GNU_VTENTRY
4555 ENUMDOC
4556 Toshiba Media Processor Relocations.
4557 COMMENT
4558
4559 ENUM
4560 BFD_RELOC_METAG_HIADDR16
4561 ENUMX
4562 BFD_RELOC_METAG_LOADDR16
4563 ENUMX
4564 BFD_RELOC_METAG_RELBRANCH
4565 ENUMX
4566 BFD_RELOC_METAG_GETSETOFF
4567 ENUMX
4568 BFD_RELOC_METAG_HIOG
4569 ENUMX
4570 BFD_RELOC_METAG_LOOG
4571 ENUMX
4572 BFD_RELOC_METAG_REL8
4573 ENUMX
4574 BFD_RELOC_METAG_REL16
4575 ENUMX
4576 BFD_RELOC_METAG_HI16_GOTOFF
4577 ENUMX
4578 BFD_RELOC_METAG_LO16_GOTOFF
4579 ENUMX
4580 BFD_RELOC_METAG_GETSET_GOTOFF
4581 ENUMX
4582 BFD_RELOC_METAG_GETSET_GOT
4583 ENUMX
4584 BFD_RELOC_METAG_HI16_GOTPC
4585 ENUMX
4586 BFD_RELOC_METAG_LO16_GOTPC
4587 ENUMX
4588 BFD_RELOC_METAG_HI16_PLT
4589 ENUMX
4590 BFD_RELOC_METAG_LO16_PLT
4591 ENUMX
4592 BFD_RELOC_METAG_RELBRANCH_PLT
4593 ENUMX
4594 BFD_RELOC_METAG_GOTOFF
4595 ENUMX
4596 BFD_RELOC_METAG_PLT
4597 ENUMX
4598 BFD_RELOC_METAG_COPY
4599 ENUMX
4600 BFD_RELOC_METAG_JMP_SLOT
4601 ENUMX
4602 BFD_RELOC_METAG_RELATIVE
4603 ENUMX
4604 BFD_RELOC_METAG_GLOB_DAT
4605 ENUMX
4606 BFD_RELOC_METAG_TLS_GD
4607 ENUMX
4608 BFD_RELOC_METAG_TLS_LDM
4609 ENUMX
4610 BFD_RELOC_METAG_TLS_LDO_HI16
4611 ENUMX
4612 BFD_RELOC_METAG_TLS_LDO_LO16
4613 ENUMX
4614 BFD_RELOC_METAG_TLS_LDO
4615 ENUMX
4616 BFD_RELOC_METAG_TLS_IE
4617 ENUMX
4618 BFD_RELOC_METAG_TLS_IENONPIC
4619 ENUMX
4620 BFD_RELOC_METAG_TLS_IENONPIC_HI16
4621 ENUMX
4622 BFD_RELOC_METAG_TLS_IENONPIC_LO16
4623 ENUMX
4624 BFD_RELOC_METAG_TLS_TPOFF
4625 ENUMX
4626 BFD_RELOC_METAG_TLS_DTPMOD
4627 ENUMX
4628 BFD_RELOC_METAG_TLS_DTPOFF
4629 ENUMX
4630 BFD_RELOC_METAG_TLS_LE
4631 ENUMX
4632 BFD_RELOC_METAG_TLS_LE_HI16
4633 ENUMX
4634 BFD_RELOC_METAG_TLS_LE_LO16
4635 ENUMDOC
4636 Imagination Technologies Meta relocations.
4637
4638 ENUM
4639 BFD_RELOC_MMIX_GETA
4640 ENUMX
4641 BFD_RELOC_MMIX_GETA_1
4642 ENUMX
4643 BFD_RELOC_MMIX_GETA_2
4644 ENUMX
4645 BFD_RELOC_MMIX_GETA_3
4646 ENUMDOC
4647 These are relocations for the GETA instruction.
4648 ENUM
4649 BFD_RELOC_MMIX_CBRANCH
4650 ENUMX
4651 BFD_RELOC_MMIX_CBRANCH_J
4652 ENUMX
4653 BFD_RELOC_MMIX_CBRANCH_1
4654 ENUMX
4655 BFD_RELOC_MMIX_CBRANCH_2
4656 ENUMX
4657 BFD_RELOC_MMIX_CBRANCH_3
4658 ENUMDOC
4659 These are relocations for a conditional branch instruction.
4660 ENUM
4661 BFD_RELOC_MMIX_PUSHJ
4662 ENUMX
4663 BFD_RELOC_MMIX_PUSHJ_1
4664 ENUMX
4665 BFD_RELOC_MMIX_PUSHJ_2
4666 ENUMX
4667 BFD_RELOC_MMIX_PUSHJ_3
4668 ENUMX
4669 BFD_RELOC_MMIX_PUSHJ_STUBBABLE
4670 ENUMDOC
4671 These are relocations for the PUSHJ instruction.
4672 ENUM
4673 BFD_RELOC_MMIX_JMP
4674 ENUMX
4675 BFD_RELOC_MMIX_JMP_1
4676 ENUMX
4677 BFD_RELOC_MMIX_JMP_2
4678 ENUMX
4679 BFD_RELOC_MMIX_JMP_3
4680 ENUMDOC
4681 These are relocations for the JMP instruction.
4682 ENUM
4683 BFD_RELOC_MMIX_ADDR19
4684 ENUMDOC
4685 This is a relocation for a relative address as in a GETA instruction or
4686 a branch.
4687 ENUM
4688 BFD_RELOC_MMIX_ADDR27
4689 ENUMDOC
4690 This is a relocation for a relative address as in a JMP instruction.
4691 ENUM
4692 BFD_RELOC_MMIX_REG_OR_BYTE
4693 ENUMDOC
4694 This is a relocation for an instruction field that may be a general
4695 register or a value 0..255.
4696 ENUM
4697 BFD_RELOC_MMIX_REG
4698 ENUMDOC
4699 This is a relocation for an instruction field that may be a general
4700 register.
4701 ENUM
4702 BFD_RELOC_MMIX_BASE_PLUS_OFFSET
4703 ENUMDOC
4704 This is a relocation for two instruction fields holding a register and
4705 an offset, the equivalent of the relocation.
4706 ENUM
4707 BFD_RELOC_MMIX_LOCAL
4708 ENUMDOC
4709 This relocation is an assertion that the expression is not allocated as
4710 a global register. It does not modify contents.
4711
4712 ENUM
4713 BFD_RELOC_AVR_7_PCREL
4714 ENUMDOC
4715 This is a 16 bit reloc for the AVR that stores 8 bit pc relative
4716 short offset into 7 bits.
4717 ENUM
4718 BFD_RELOC_AVR_13_PCREL
4719 ENUMDOC
4720 This is a 16 bit reloc for the AVR that stores 13 bit pc relative
4721 short offset into 12 bits.
4722 ENUM
4723 BFD_RELOC_AVR_16_PM
4724 ENUMDOC
4725 This is a 16 bit reloc for the AVR that stores 17 bit value (usually
4726 program memory address) into 16 bits.
4727 ENUM
4728 BFD_RELOC_AVR_LO8_LDI
4729 ENUMDOC
4730 This is a 16 bit reloc for the AVR that stores 8 bit value (usually
4731 data memory address) into 8 bit immediate value of LDI insn.
4732 ENUM
4733 BFD_RELOC_AVR_HI8_LDI
4734 ENUMDOC
4735 This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
4736 of data memory address) into 8 bit immediate value of LDI insn.
4737 ENUM
4738 BFD_RELOC_AVR_HH8_LDI
4739 ENUMDOC
4740 This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
4741 of program memory address) into 8 bit immediate value of LDI insn.
4742 ENUM
4743 BFD_RELOC_AVR_MS8_LDI
4744 ENUMDOC
4745 This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
4746 of 32 bit value) into 8 bit immediate value of LDI insn.
4747 ENUM
4748 BFD_RELOC_AVR_LO8_LDI_NEG
4749 ENUMDOC
4750 This is a 16 bit reloc for the AVR that stores negated 8 bit value
4751 (usually data memory address) into 8 bit immediate value of SUBI insn.
4752 ENUM
4753 BFD_RELOC_AVR_HI8_LDI_NEG
4754 ENUMDOC
4755 This is a 16 bit reloc for the AVR that stores negated 8 bit value
4756 (high 8 bit of data memory address) into 8 bit immediate value of
4757 SUBI insn.
4758 ENUM
4759 BFD_RELOC_AVR_HH8_LDI_NEG
4760 ENUMDOC
4761 This is a 16 bit reloc for the AVR that stores negated 8 bit value
4762 (most high 8 bit of program memory address) into 8 bit immediate value
4763 of LDI or SUBI insn.
4764 ENUM
4765 BFD_RELOC_AVR_MS8_LDI_NEG
4766 ENUMDOC
4767 This is a 16 bit reloc for the AVR that stores negated 8 bit value (msb
4768 of 32 bit value) into 8 bit immediate value of LDI insn.
4769 ENUM
4770 BFD_RELOC_AVR_LO8_LDI_PM
4771 ENUMDOC
4772 This is a 16 bit reloc for the AVR that stores 8 bit value (usually
4773 command address) into 8 bit immediate value of LDI insn.
4774 ENUM
4775 BFD_RELOC_AVR_LO8_LDI_GS
4776 ENUMDOC
4777 This is a 16 bit reloc for the AVR that stores 8 bit value
4778 (command address) into 8 bit immediate value of LDI insn. If the address
4779 is beyond the 128k boundary, the linker inserts a jump stub for this reloc
4780 in the lower 128k.
4781 ENUM
4782 BFD_RELOC_AVR_HI8_LDI_PM
4783 ENUMDOC
4784 This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
4785 of command address) into 8 bit immediate value of LDI insn.
4786 ENUM
4787 BFD_RELOC_AVR_HI8_LDI_GS
4788 ENUMDOC
4789 This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
4790 of command address) into 8 bit immediate value of LDI insn. If the address
4791 is beyond the 128k boundary, the linker inserts a jump stub for this reloc
4792 below 128k.
4793 ENUM
4794 BFD_RELOC_AVR_HH8_LDI_PM
4795 ENUMDOC
4796 This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
4797 of command address) into 8 bit immediate value of LDI insn.
4798 ENUM
4799 BFD_RELOC_AVR_LO8_LDI_PM_NEG
4800 ENUMDOC
4801 This is a 16 bit reloc for the AVR that stores negated 8 bit value
4802 (usually command address) into 8 bit immediate value of SUBI insn.
4803 ENUM
4804 BFD_RELOC_AVR_HI8_LDI_PM_NEG
4805 ENUMDOC
4806 This is a 16 bit reloc for the AVR that stores negated 8 bit value
4807 (high 8 bit of 16 bit command address) into 8 bit immediate value
4808 of SUBI insn.
4809 ENUM
4810 BFD_RELOC_AVR_HH8_LDI_PM_NEG
4811 ENUMDOC
4812 This is a 16 bit reloc for the AVR that stores negated 8 bit value
4813 (high 6 bit of 22 bit command address) into 8 bit immediate
4814 value of SUBI insn.
4815 ENUM
4816 BFD_RELOC_AVR_CALL
4817 ENUMDOC
4818 This is a 32 bit reloc for the AVR that stores 23 bit value
4819 into 22 bits.
4820 ENUM
4821 BFD_RELOC_AVR_LDI
4822 ENUMDOC
4823 This is a 16 bit reloc for the AVR that stores all needed bits
4824 for absolute addressing with ldi with overflow check to linktime
4825 ENUM
4826 BFD_RELOC_AVR_6
4827 ENUMDOC
4828 This is a 6 bit reloc for the AVR that stores offset for ldd/std
4829 instructions
4830 ENUM
4831 BFD_RELOC_AVR_6_ADIW
4832 ENUMDOC
4833 This is a 6 bit reloc for the AVR that stores offset for adiw/sbiw
4834 instructions
4835 ENUM
4836 BFD_RELOC_AVR_8_LO
4837 ENUMDOC
4838 This is a 8 bit reloc for the AVR that stores bits 0..7 of a symbol
4839 in .byte lo8(symbol)
4840 ENUM
4841 BFD_RELOC_AVR_8_HI
4842 ENUMDOC
4843 This is a 8 bit reloc for the AVR that stores bits 8..15 of a symbol
4844 in .byte hi8(symbol)
4845 ENUM
4846 BFD_RELOC_AVR_8_HLO
4847 ENUMDOC
4848 This is a 8 bit reloc for the AVR that stores bits 16..23 of a symbol
4849 in .byte hlo8(symbol)
4850 ENUM
4851 BFD_RELOC_AVR_DIFF8
4852 ENUMX
4853 BFD_RELOC_AVR_DIFF16
4854 ENUMX
4855 BFD_RELOC_AVR_DIFF32
4856 ENUMDOC
4857 AVR relocations to mark the difference of two local symbols.
4858 These are only needed to support linker relaxation and can be ignored
4859 when not relaxing. The field is set to the value of the difference
4860 assuming no relaxation. The relocation encodes the position of the
4861 second symbol so the linker can determine whether to adjust the field
4862 value.
4863 ENUM
4864 BFD_RELOC_AVR_LDS_STS_16
4865 ENUMDOC
4866 This is a 7 bit reloc for the AVR that stores SRAM address for 16bit
4867 lds and sts instructions supported only tiny core.
4868 ENUM
4869 BFD_RELOC_AVR_PORT6
4870 ENUMDOC
4871 This is a 6 bit reloc for the AVR that stores an I/O register
4872 number for the IN and OUT instructions
4873 ENUM
4874 BFD_RELOC_AVR_PORT5
4875 ENUMDOC
4876 This is a 5 bit reloc for the AVR that stores an I/O register
4877 number for the SBIC, SBIS, SBI and CBI instructions
4878 ENUM
4879 BFD_RELOC_RL78_NEG8
4880 ENUMX
4881 BFD_RELOC_RL78_NEG16
4882 ENUMX
4883 BFD_RELOC_RL78_NEG24
4884 ENUMX
4885 BFD_RELOC_RL78_NEG32
4886 ENUMX
4887 BFD_RELOC_RL78_16_OP
4888 ENUMX
4889 BFD_RELOC_RL78_24_OP
4890 ENUMX
4891 BFD_RELOC_RL78_32_OP
4892 ENUMX
4893 BFD_RELOC_RL78_8U
4894 ENUMX
4895 BFD_RELOC_RL78_16U
4896 ENUMX
4897 BFD_RELOC_RL78_24U
4898 ENUMX
4899 BFD_RELOC_RL78_DIR3U_PCREL
4900 ENUMX
4901 BFD_RELOC_RL78_DIFF
4902 ENUMX
4903 BFD_RELOC_RL78_GPRELB
4904 ENUMX
4905 BFD_RELOC_RL78_GPRELW
4906 ENUMX
4907 BFD_RELOC_RL78_GPRELL
4908 ENUMX
4909 BFD_RELOC_RL78_SYM
4910 ENUMX
4911 BFD_RELOC_RL78_OP_SUBTRACT
4912 ENUMX
4913 BFD_RELOC_RL78_OP_NEG
4914 ENUMX
4915 BFD_RELOC_RL78_OP_AND
4916 ENUMX
4917 BFD_RELOC_RL78_OP_SHRA
4918 ENUMX
4919 BFD_RELOC_RL78_ABS8
4920 ENUMX
4921 BFD_RELOC_RL78_ABS16
4922 ENUMX
4923 BFD_RELOC_RL78_ABS16_REV
4924 ENUMX
4925 BFD_RELOC_RL78_ABS32
4926 ENUMX
4927 BFD_RELOC_RL78_ABS32_REV
4928 ENUMX
4929 BFD_RELOC_RL78_ABS16U
4930 ENUMX
4931 BFD_RELOC_RL78_ABS16UW
4932 ENUMX
4933 BFD_RELOC_RL78_ABS16UL
4934 ENUMX
4935 BFD_RELOC_RL78_RELAX
4936 ENUMX
4937 BFD_RELOC_RL78_HI16
4938 ENUMX
4939 BFD_RELOC_RL78_HI8
4940 ENUMX
4941 BFD_RELOC_RL78_LO16
4942 ENUMX
4943 BFD_RELOC_RL78_CODE
4944 ENUMDOC
4945 Renesas RL78 Relocations.
4946
4947 ENUM
4948 BFD_RELOC_RX_NEG8
4949 ENUMX
4950 BFD_RELOC_RX_NEG16
4951 ENUMX
4952 BFD_RELOC_RX_NEG24
4953 ENUMX
4954 BFD_RELOC_RX_NEG32
4955 ENUMX
4956 BFD_RELOC_RX_16_OP
4957 ENUMX
4958 BFD_RELOC_RX_24_OP
4959 ENUMX
4960 BFD_RELOC_RX_32_OP
4961 ENUMX
4962 BFD_RELOC_RX_8U
4963 ENUMX
4964 BFD_RELOC_RX_16U
4965 ENUMX
4966 BFD_RELOC_RX_24U
4967 ENUMX
4968 BFD_RELOC_RX_DIR3U_PCREL
4969 ENUMX
4970 BFD_RELOC_RX_DIFF
4971 ENUMX
4972 BFD_RELOC_RX_GPRELB
4973 ENUMX
4974 BFD_RELOC_RX_GPRELW
4975 ENUMX
4976 BFD_RELOC_RX_GPRELL
4977 ENUMX
4978 BFD_RELOC_RX_SYM
4979 ENUMX
4980 BFD_RELOC_RX_OP_SUBTRACT
4981 ENUMX
4982 BFD_RELOC_RX_OP_NEG
4983 ENUMX
4984 BFD_RELOC_RX_ABS8
4985 ENUMX
4986 BFD_RELOC_RX_ABS16
4987 ENUMX
4988 BFD_RELOC_RX_ABS16_REV
4989 ENUMX
4990 BFD_RELOC_RX_ABS32
4991 ENUMX
4992 BFD_RELOC_RX_ABS32_REV
4993 ENUMX
4994 BFD_RELOC_RX_ABS16U
4995 ENUMX
4996 BFD_RELOC_RX_ABS16UW
4997 ENUMX
4998 BFD_RELOC_RX_ABS16UL
4999 ENUMX
5000 BFD_RELOC_RX_RELAX
5001 ENUMDOC
5002 Renesas RX Relocations.
5003
5004 ENUM
5005 BFD_RELOC_390_12
5006 ENUMDOC
5007 Direct 12 bit.
5008 ENUM
5009 BFD_RELOC_390_GOT12
5010 ENUMDOC
5011 12 bit GOT offset.
5012 ENUM
5013 BFD_RELOC_390_PLT32
5014 ENUMDOC
5015 32 bit PC relative PLT address.
5016 ENUM
5017 BFD_RELOC_390_COPY
5018 ENUMDOC
5019 Copy symbol at runtime.
5020 ENUM
5021 BFD_RELOC_390_GLOB_DAT
5022 ENUMDOC
5023 Create GOT entry.
5024 ENUM
5025 BFD_RELOC_390_JMP_SLOT
5026 ENUMDOC
5027 Create PLT entry.
5028 ENUM
5029 BFD_RELOC_390_RELATIVE
5030 ENUMDOC
5031 Adjust by program base.
5032 ENUM
5033 BFD_RELOC_390_GOTPC
5034 ENUMDOC
5035 32 bit PC relative offset to GOT.
5036 ENUM
5037 BFD_RELOC_390_GOT16
5038 ENUMDOC
5039 16 bit GOT offset.
5040 ENUM
5041 BFD_RELOC_390_PC12DBL
5042 ENUMDOC
5043 PC relative 12 bit shifted by 1.
5044 ENUM
5045 BFD_RELOC_390_PLT12DBL
5046 ENUMDOC
5047 12 bit PC rel. PLT shifted by 1.
5048 ENUM
5049 BFD_RELOC_390_PC16DBL
5050 ENUMDOC
5051 PC relative 16 bit shifted by 1.
5052 ENUM
5053 BFD_RELOC_390_PLT16DBL
5054 ENUMDOC
5055 16 bit PC rel. PLT shifted by 1.
5056 ENUM
5057 BFD_RELOC_390_PC24DBL
5058 ENUMDOC
5059 PC relative 24 bit shifted by 1.
5060 ENUM
5061 BFD_RELOC_390_PLT24DBL
5062 ENUMDOC
5063 24 bit PC rel. PLT shifted by 1.
5064 ENUM
5065 BFD_RELOC_390_PC32DBL
5066 ENUMDOC
5067 PC relative 32 bit shifted by 1.
5068 ENUM
5069 BFD_RELOC_390_PLT32DBL
5070 ENUMDOC
5071 32 bit PC rel. PLT shifted by 1.
5072 ENUM
5073 BFD_RELOC_390_GOTPCDBL
5074 ENUMDOC
5075 32 bit PC rel. GOT shifted by 1.
5076 ENUM
5077 BFD_RELOC_390_GOT64
5078 ENUMDOC
5079 64 bit GOT offset.
5080 ENUM
5081 BFD_RELOC_390_PLT64
5082 ENUMDOC
5083 64 bit PC relative PLT address.
5084 ENUM
5085 BFD_RELOC_390_GOTENT
5086 ENUMDOC
5087 32 bit rel. offset to GOT entry.
5088 ENUM
5089 BFD_RELOC_390_GOTOFF64
5090 ENUMDOC
5091 64 bit offset to GOT.
5092 ENUM
5093 BFD_RELOC_390_GOTPLT12
5094 ENUMDOC
5095 12-bit offset to symbol-entry within GOT, with PLT handling.
5096 ENUM
5097 BFD_RELOC_390_GOTPLT16
5098 ENUMDOC
5099 16-bit offset to symbol-entry within GOT, with PLT handling.
5100 ENUM
5101 BFD_RELOC_390_GOTPLT32
5102 ENUMDOC
5103 32-bit offset to symbol-entry within GOT, with PLT handling.
5104 ENUM
5105 BFD_RELOC_390_GOTPLT64
5106 ENUMDOC
5107 64-bit offset to symbol-entry within GOT, with PLT handling.
5108 ENUM
5109 BFD_RELOC_390_GOTPLTENT
5110 ENUMDOC
5111 32-bit rel. offset to symbol-entry within GOT, with PLT handling.
5112 ENUM
5113 BFD_RELOC_390_PLTOFF16
5114 ENUMDOC
5115 16-bit rel. offset from the GOT to a PLT entry.
5116 ENUM
5117 BFD_RELOC_390_PLTOFF32
5118 ENUMDOC
5119 32-bit rel. offset from the GOT to a PLT entry.
5120 ENUM
5121 BFD_RELOC_390_PLTOFF64
5122 ENUMDOC
5123 64-bit rel. offset from the GOT to a PLT entry.
5124
5125 ENUM
5126 BFD_RELOC_390_TLS_LOAD
5127 ENUMX
5128 BFD_RELOC_390_TLS_GDCALL
5129 ENUMX
5130 BFD_RELOC_390_TLS_LDCALL
5131 ENUMX
5132 BFD_RELOC_390_TLS_GD32
5133 ENUMX
5134 BFD_RELOC_390_TLS_GD64
5135 ENUMX
5136 BFD_RELOC_390_TLS_GOTIE12
5137 ENUMX
5138 BFD_RELOC_390_TLS_GOTIE32
5139 ENUMX
5140 BFD_RELOC_390_TLS_GOTIE64
5141 ENUMX
5142 BFD_RELOC_390_TLS_LDM32
5143 ENUMX
5144 BFD_RELOC_390_TLS_LDM64
5145 ENUMX
5146 BFD_RELOC_390_TLS_IE32
5147 ENUMX
5148 BFD_RELOC_390_TLS_IE64
5149 ENUMX
5150 BFD_RELOC_390_TLS_IEENT
5151 ENUMX
5152 BFD_RELOC_390_TLS_LE32
5153 ENUMX
5154 BFD_RELOC_390_TLS_LE64
5155 ENUMX
5156 BFD_RELOC_390_TLS_LDO32
5157 ENUMX
5158 BFD_RELOC_390_TLS_LDO64
5159 ENUMX
5160 BFD_RELOC_390_TLS_DTPMOD
5161 ENUMX
5162 BFD_RELOC_390_TLS_DTPOFF
5163 ENUMX
5164 BFD_RELOC_390_TLS_TPOFF
5165 ENUMDOC
5166 s390 tls relocations.
5167
5168 ENUM
5169 BFD_RELOC_390_20
5170 ENUMX
5171 BFD_RELOC_390_GOT20
5172 ENUMX
5173 BFD_RELOC_390_GOTPLT20
5174 ENUMX
5175 BFD_RELOC_390_TLS_GOTIE20
5176 ENUMDOC
5177 Long displacement extension.
5178
5179 ENUM
5180 BFD_RELOC_390_IRELATIVE
5181 ENUMDOC
5182 STT_GNU_IFUNC relocation.
5183
5184 ENUM
5185 BFD_RELOC_SCORE_GPREL15
5186 ENUMDOC
5187 Score relocations
5188 Low 16 bit for load/store
5189 ENUM
5190 BFD_RELOC_SCORE_DUMMY2
5191 ENUMX
5192 BFD_RELOC_SCORE_JMP
5193 ENUMDOC
5194 This is a 24-bit reloc with the right 1 bit assumed to be 0
5195 ENUM
5196 BFD_RELOC_SCORE_BRANCH
5197 ENUMDOC
5198 This is a 19-bit reloc with the right 1 bit assumed to be 0
5199 ENUM
5200 BFD_RELOC_SCORE_IMM30
5201 ENUMDOC
5202 This is a 32-bit reloc for 48-bit instructions.
5203 ENUM
5204 BFD_RELOC_SCORE_IMM32
5205 ENUMDOC
5206 This is a 32-bit reloc for 48-bit instructions.
5207 ENUM
5208 BFD_RELOC_SCORE16_JMP
5209 ENUMDOC
5210 This is a 11-bit reloc with the right 1 bit assumed to be 0
5211 ENUM
5212 BFD_RELOC_SCORE16_BRANCH
5213 ENUMDOC
5214 This is a 8-bit reloc with the right 1 bit assumed to be 0
5215 ENUM
5216 BFD_RELOC_SCORE_BCMP
5217 ENUMDOC
5218 This is a 9-bit reloc with the right 1 bit assumed to be 0
5219 ENUM
5220 BFD_RELOC_SCORE_GOT15
5221 ENUMX
5222 BFD_RELOC_SCORE_GOT_LO16
5223 ENUMX
5224 BFD_RELOC_SCORE_CALL15
5225 ENUMX
5226 BFD_RELOC_SCORE_DUMMY_HI16
5227 ENUMDOC
5228 Undocumented Score relocs
5229
5230 ENUM
5231 BFD_RELOC_IP2K_FR9
5232 ENUMDOC
5233 Scenix IP2K - 9-bit register number / data address
5234 ENUM
5235 BFD_RELOC_IP2K_BANK
5236 ENUMDOC
5237 Scenix IP2K - 4-bit register/data bank number
5238 ENUM
5239 BFD_RELOC_IP2K_ADDR16CJP
5240 ENUMDOC
5241 Scenix IP2K - low 13 bits of instruction word address
5242 ENUM
5243 BFD_RELOC_IP2K_PAGE3
5244 ENUMDOC
5245 Scenix IP2K - high 3 bits of instruction word address
5246 ENUM
5247 BFD_RELOC_IP2K_LO8DATA
5248 ENUMX
5249 BFD_RELOC_IP2K_HI8DATA
5250 ENUMX
5251 BFD_RELOC_IP2K_EX8DATA
5252 ENUMDOC
5253 Scenix IP2K - ext/low/high 8 bits of data address
5254 ENUM
5255 BFD_RELOC_IP2K_LO8INSN
5256 ENUMX
5257 BFD_RELOC_IP2K_HI8INSN
5258 ENUMDOC
5259 Scenix IP2K - low/high 8 bits of instruction word address
5260 ENUM
5261 BFD_RELOC_IP2K_PC_SKIP
5262 ENUMDOC
5263 Scenix IP2K - even/odd PC modifier to modify snb pcl.0
5264 ENUM
5265 BFD_RELOC_IP2K_TEXT
5266 ENUMDOC
5267 Scenix IP2K - 16 bit word address in text section.
5268 ENUM
5269 BFD_RELOC_IP2K_FR_OFFSET
5270 ENUMDOC
5271 Scenix IP2K - 7-bit sp or dp offset
5272 ENUM
5273 BFD_RELOC_VPE4KMATH_DATA
5274 ENUMX
5275 BFD_RELOC_VPE4KMATH_INSN
5276 ENUMDOC
5277 Scenix VPE4K coprocessor - data/insn-space addressing
5278
5279 ENUM
5280 BFD_RELOC_VTABLE_INHERIT
5281 ENUMX
5282 BFD_RELOC_VTABLE_ENTRY
5283 ENUMDOC
5284 These two relocations are used by the linker to determine which of
5285 the entries in a C++ virtual function table are actually used. When
5286 the --gc-sections option is given, the linker will zero out the entries
5287 that are not used, so that the code for those functions need not be
5288 included in the output.
5289
5290 VTABLE_INHERIT is a zero-space relocation used to describe to the
5291 linker the inheritance tree of a C++ virtual function table. The
5292 relocation's symbol should be the parent class' vtable, and the
5293 relocation should be located at the child vtable.
5294
5295 VTABLE_ENTRY is a zero-space relocation that describes the use of a
5296 virtual function table entry. The reloc's symbol should refer to the
5297 table of the class mentioned in the code. Off of that base, an offset
5298 describes the entry that is being used. For Rela hosts, this offset
5299 is stored in the reloc's addend. For Rel hosts, we are forced to put
5300 this offset in the reloc's section offset.
5301
5302 ENUM
5303 BFD_RELOC_IA64_IMM14
5304 ENUMX
5305 BFD_RELOC_IA64_IMM22
5306 ENUMX
5307 BFD_RELOC_IA64_IMM64
5308 ENUMX
5309 BFD_RELOC_IA64_DIR32MSB
5310 ENUMX
5311 BFD_RELOC_IA64_DIR32LSB
5312 ENUMX
5313 BFD_RELOC_IA64_DIR64MSB
5314 ENUMX
5315 BFD_RELOC_IA64_DIR64LSB
5316 ENUMX
5317 BFD_RELOC_IA64_GPREL22
5318 ENUMX
5319 BFD_RELOC_IA64_GPREL64I
5320 ENUMX
5321 BFD_RELOC_IA64_GPREL32MSB
5322 ENUMX
5323 BFD_RELOC_IA64_GPREL32LSB
5324 ENUMX
5325 BFD_RELOC_IA64_GPREL64MSB
5326 ENUMX
5327 BFD_RELOC_IA64_GPREL64LSB
5328 ENUMX
5329 BFD_RELOC_IA64_LTOFF22
5330 ENUMX
5331 BFD_RELOC_IA64_LTOFF64I
5332 ENUMX
5333 BFD_RELOC_IA64_PLTOFF22
5334 ENUMX
5335 BFD_RELOC_IA64_PLTOFF64I
5336 ENUMX
5337 BFD_RELOC_IA64_PLTOFF64MSB
5338 ENUMX
5339 BFD_RELOC_IA64_PLTOFF64LSB
5340 ENUMX
5341 BFD_RELOC_IA64_FPTR64I
5342 ENUMX
5343 BFD_RELOC_IA64_FPTR32MSB
5344 ENUMX
5345 BFD_RELOC_IA64_FPTR32LSB
5346 ENUMX
5347 BFD_RELOC_IA64_FPTR64MSB
5348 ENUMX
5349 BFD_RELOC_IA64_FPTR64LSB
5350 ENUMX
5351 BFD_RELOC_IA64_PCREL21B
5352 ENUMX
5353 BFD_RELOC_IA64_PCREL21BI
5354 ENUMX
5355 BFD_RELOC_IA64_PCREL21M
5356 ENUMX
5357 BFD_RELOC_IA64_PCREL21F
5358 ENUMX
5359 BFD_RELOC_IA64_PCREL22
5360 ENUMX
5361 BFD_RELOC_IA64_PCREL60B
5362 ENUMX
5363 BFD_RELOC_IA64_PCREL64I
5364 ENUMX
5365 BFD_RELOC_IA64_PCREL32MSB
5366 ENUMX
5367 BFD_RELOC_IA64_PCREL32LSB
5368 ENUMX
5369 BFD_RELOC_IA64_PCREL64MSB
5370 ENUMX
5371 BFD_RELOC_IA64_PCREL64LSB
5372 ENUMX
5373 BFD_RELOC_IA64_LTOFF_FPTR22
5374 ENUMX
5375 BFD_RELOC_IA64_LTOFF_FPTR64I
5376 ENUMX
5377 BFD_RELOC_IA64_LTOFF_FPTR32MSB
5378 ENUMX
5379 BFD_RELOC_IA64_LTOFF_FPTR32LSB
5380 ENUMX
5381 BFD_RELOC_IA64_LTOFF_FPTR64MSB
5382 ENUMX
5383 BFD_RELOC_IA64_LTOFF_FPTR64LSB
5384 ENUMX
5385 BFD_RELOC_IA64_SEGREL32MSB
5386 ENUMX
5387 BFD_RELOC_IA64_SEGREL32LSB
5388 ENUMX
5389 BFD_RELOC_IA64_SEGREL64MSB
5390 ENUMX
5391 BFD_RELOC_IA64_SEGREL64LSB
5392 ENUMX
5393 BFD_RELOC_IA64_SECREL32MSB
5394 ENUMX
5395 BFD_RELOC_IA64_SECREL32LSB
5396 ENUMX
5397 BFD_RELOC_IA64_SECREL64MSB
5398 ENUMX
5399 BFD_RELOC_IA64_SECREL64LSB
5400 ENUMX
5401 BFD_RELOC_IA64_REL32MSB
5402 ENUMX
5403 BFD_RELOC_IA64_REL32LSB
5404 ENUMX
5405 BFD_RELOC_IA64_REL64MSB
5406 ENUMX
5407 BFD_RELOC_IA64_REL64LSB
5408 ENUMX
5409 BFD_RELOC_IA64_LTV32MSB
5410 ENUMX
5411 BFD_RELOC_IA64_LTV32LSB
5412 ENUMX
5413 BFD_RELOC_IA64_LTV64MSB
5414 ENUMX
5415 BFD_RELOC_IA64_LTV64LSB
5416 ENUMX
5417 BFD_RELOC_IA64_IPLTMSB
5418 ENUMX
5419 BFD_RELOC_IA64_IPLTLSB
5420 ENUMX
5421 BFD_RELOC_IA64_COPY
5422 ENUMX
5423 BFD_RELOC_IA64_LTOFF22X
5424 ENUMX
5425 BFD_RELOC_IA64_LDXMOV
5426 ENUMX
5427 BFD_RELOC_IA64_TPREL14
5428 ENUMX
5429 BFD_RELOC_IA64_TPREL22
5430 ENUMX
5431 BFD_RELOC_IA64_TPREL64I
5432 ENUMX
5433 BFD_RELOC_IA64_TPREL64MSB
5434 ENUMX
5435 BFD_RELOC_IA64_TPREL64LSB
5436 ENUMX
5437 BFD_RELOC_IA64_LTOFF_TPREL22
5438 ENUMX
5439 BFD_RELOC_IA64_DTPMOD64MSB
5440 ENUMX
5441 BFD_RELOC_IA64_DTPMOD64LSB
5442 ENUMX
5443 BFD_RELOC_IA64_LTOFF_DTPMOD22
5444 ENUMX
5445 BFD_RELOC_IA64_DTPREL14
5446 ENUMX
5447 BFD_RELOC_IA64_DTPREL22
5448 ENUMX
5449 BFD_RELOC_IA64_DTPREL64I
5450 ENUMX
5451 BFD_RELOC_IA64_DTPREL32MSB
5452 ENUMX
5453 BFD_RELOC_IA64_DTPREL32LSB
5454 ENUMX
5455 BFD_RELOC_IA64_DTPREL64MSB
5456 ENUMX
5457 BFD_RELOC_IA64_DTPREL64LSB
5458 ENUMX
5459 BFD_RELOC_IA64_LTOFF_DTPREL22
5460 ENUMDOC
5461 Intel IA64 Relocations.
5462
5463 ENUM
5464 BFD_RELOC_M68HC11_HI8
5465 ENUMDOC
5466 Motorola 68HC11 reloc.
5467 This is the 8 bit high part of an absolute address.
5468 ENUM
5469 BFD_RELOC_M68HC11_LO8
5470 ENUMDOC
5471 Motorola 68HC11 reloc.
5472 This is the 8 bit low part of an absolute address.
5473 ENUM
5474 BFD_RELOC_M68HC11_3B
5475 ENUMDOC
5476 Motorola 68HC11 reloc.
5477 This is the 3 bit of a value.
5478 ENUM
5479 BFD_RELOC_M68HC11_RL_JUMP
5480 ENUMDOC
5481 Motorola 68HC11 reloc.
5482 This reloc marks the beginning of a jump/call instruction.
5483 It is used for linker relaxation to correctly identify beginning
5484 of instruction and change some branches to use PC-relative
5485 addressing mode.
5486 ENUM
5487 BFD_RELOC_M68HC11_RL_GROUP
5488 ENUMDOC
5489 Motorola 68HC11 reloc.
5490 This reloc marks a group of several instructions that gcc generates
5491 and for which the linker relaxation pass can modify and/or remove
5492 some of them.
5493 ENUM
5494 BFD_RELOC_M68HC11_LO16
5495 ENUMDOC
5496 Motorola 68HC11 reloc.
5497 This is the 16-bit lower part of an address. It is used for 'call'
5498 instruction to specify the symbol address without any special
5499 transformation (due to memory bank window).
5500 ENUM
5501 BFD_RELOC_M68HC11_PAGE
5502 ENUMDOC
5503 Motorola 68HC11 reloc.
5504 This is a 8-bit reloc that specifies the page number of an address.
5505 It is used by 'call' instruction to specify the page number of
5506 the symbol.
5507 ENUM
5508 BFD_RELOC_M68HC11_24
5509 ENUMDOC
5510 Motorola 68HC11 reloc.
5511 This is a 24-bit reloc that represents the address with a 16-bit
5512 value and a 8-bit page number. The symbol address is transformed
5513 to follow the 16K memory bank of 68HC12 (seen as mapped in the window).
5514 ENUM
5515 BFD_RELOC_M68HC12_5B
5516 ENUMDOC
5517 Motorola 68HC12 reloc.
5518 This is the 5 bits of a value.
5519 ENUM
5520 BFD_RELOC_XGATE_RL_JUMP
5521 ENUMDOC
5522 Freescale XGATE reloc.
5523 This reloc marks the beginning of a bra/jal instruction.
5524 ENUM
5525 BFD_RELOC_XGATE_RL_GROUP
5526 ENUMDOC
5527 Freescale XGATE reloc.
5528 This reloc marks a group of several instructions that gcc generates
5529 and for which the linker relaxation pass can modify and/or remove
5530 some of them.
5531 ENUM
5532 BFD_RELOC_XGATE_LO16
5533 ENUMDOC
5534 Freescale XGATE reloc.
5535 This is the 16-bit lower part of an address. It is used for the '16-bit'
5536 instructions.
5537 ENUM
5538 BFD_RELOC_XGATE_GPAGE
5539 ENUMDOC
5540 Freescale XGATE reloc.
5541 ENUM
5542 BFD_RELOC_XGATE_24
5543 ENUMDOC
5544 Freescale XGATE reloc.
5545 ENUM
5546 BFD_RELOC_XGATE_PCREL_9
5547 ENUMDOC
5548 Freescale XGATE reloc.
5549 This is a 9-bit pc-relative reloc.
5550 ENUM
5551 BFD_RELOC_XGATE_PCREL_10
5552 ENUMDOC
5553 Freescale XGATE reloc.
5554 This is a 10-bit pc-relative reloc.
5555 ENUM
5556 BFD_RELOC_XGATE_IMM8_LO
5557 ENUMDOC
5558 Freescale XGATE reloc.
5559 This is the 16-bit lower part of an address. It is used for the '16-bit'
5560 instructions.
5561 ENUM
5562 BFD_RELOC_XGATE_IMM8_HI
5563 ENUMDOC
5564 Freescale XGATE reloc.
5565 This is the 16-bit higher part of an address. It is used for the '16-bit'
5566 instructions.
5567 ENUM
5568 BFD_RELOC_XGATE_IMM3
5569 ENUMDOC
5570 Freescale XGATE reloc.
5571 This is a 3-bit pc-relative reloc.
5572 ENUM
5573 BFD_RELOC_XGATE_IMM4
5574 ENUMDOC
5575 Freescale XGATE reloc.
5576 This is a 4-bit pc-relative reloc.
5577 ENUM
5578 BFD_RELOC_XGATE_IMM5
5579 ENUMDOC
5580 Freescale XGATE reloc.
5581 This is a 5-bit pc-relative reloc.
5582 ENUM
5583 BFD_RELOC_M68HC12_9B
5584 ENUMDOC
5585 Motorola 68HC12 reloc.
5586 This is the 9 bits of a value.
5587 ENUM
5588 BFD_RELOC_M68HC12_16B
5589 ENUMDOC
5590 Motorola 68HC12 reloc.
5591 This is the 16 bits of a value.
5592 ENUM
5593 BFD_RELOC_M68HC12_9_PCREL
5594 ENUMDOC
5595 Motorola 68HC12/XGATE reloc.
5596 This is a PCREL9 branch.
5597 ENUM
5598 BFD_RELOC_M68HC12_10_PCREL
5599 ENUMDOC
5600 Motorola 68HC12/XGATE reloc.
5601 This is a PCREL10 branch.
5602 ENUM
5603 BFD_RELOC_M68HC12_LO8XG
5604 ENUMDOC
5605 Motorola 68HC12/XGATE reloc.
5606 This is the 8 bit low part of an absolute address and immediately precedes
5607 a matching HI8XG part.
5608 ENUM
5609 BFD_RELOC_M68HC12_HI8XG
5610 ENUMDOC
5611 Motorola 68HC12/XGATE reloc.
5612 This is the 8 bit high part of an absolute address and immediately follows
5613 a matching LO8XG part.
5614 ENUM
5615 BFD_RELOC_16C_NUM08
5616 ENUMX
5617 BFD_RELOC_16C_NUM08_C
5618 ENUMX
5619 BFD_RELOC_16C_NUM16
5620 ENUMX
5621 BFD_RELOC_16C_NUM16_C
5622 ENUMX
5623 BFD_RELOC_16C_NUM32
5624 ENUMX
5625 BFD_RELOC_16C_NUM32_C
5626 ENUMX
5627 BFD_RELOC_16C_DISP04
5628 ENUMX
5629 BFD_RELOC_16C_DISP04_C
5630 ENUMX
5631 BFD_RELOC_16C_DISP08
5632 ENUMX
5633 BFD_RELOC_16C_DISP08_C
5634 ENUMX
5635 BFD_RELOC_16C_DISP16
5636 ENUMX
5637 BFD_RELOC_16C_DISP16_C
5638 ENUMX
5639 BFD_RELOC_16C_DISP24
5640 ENUMX
5641 BFD_RELOC_16C_DISP24_C
5642 ENUMX
5643 BFD_RELOC_16C_DISP24a
5644 ENUMX
5645 BFD_RELOC_16C_DISP24a_C
5646 ENUMX
5647 BFD_RELOC_16C_REG04
5648 ENUMX
5649 BFD_RELOC_16C_REG04_C
5650 ENUMX
5651 BFD_RELOC_16C_REG04a
5652 ENUMX
5653 BFD_RELOC_16C_REG04a_C
5654 ENUMX
5655 BFD_RELOC_16C_REG14
5656 ENUMX
5657 BFD_RELOC_16C_REG14_C
5658 ENUMX
5659 BFD_RELOC_16C_REG16
5660 ENUMX
5661 BFD_RELOC_16C_REG16_C
5662 ENUMX
5663 BFD_RELOC_16C_REG20
5664 ENUMX
5665 BFD_RELOC_16C_REG20_C
5666 ENUMX
5667 BFD_RELOC_16C_ABS20
5668 ENUMX
5669 BFD_RELOC_16C_ABS20_C
5670 ENUMX
5671 BFD_RELOC_16C_ABS24
5672 ENUMX
5673 BFD_RELOC_16C_ABS24_C
5674 ENUMX
5675 BFD_RELOC_16C_IMM04
5676 ENUMX
5677 BFD_RELOC_16C_IMM04_C
5678 ENUMX
5679 BFD_RELOC_16C_IMM16
5680 ENUMX
5681 BFD_RELOC_16C_IMM16_C
5682 ENUMX
5683 BFD_RELOC_16C_IMM20
5684 ENUMX
5685 BFD_RELOC_16C_IMM20_C
5686 ENUMX
5687 BFD_RELOC_16C_IMM24
5688 ENUMX
5689 BFD_RELOC_16C_IMM24_C
5690 ENUMX
5691 BFD_RELOC_16C_IMM32
5692 ENUMX
5693 BFD_RELOC_16C_IMM32_C
5694 ENUMDOC
5695 NS CR16C Relocations.
5696
5697 ENUM
5698 BFD_RELOC_CR16_NUM8
5699 ENUMX
5700 BFD_RELOC_CR16_NUM16
5701 ENUMX
5702 BFD_RELOC_CR16_NUM32
5703 ENUMX
5704 BFD_RELOC_CR16_NUM32a
5705 ENUMX
5706 BFD_RELOC_CR16_REGREL0
5707 ENUMX
5708 BFD_RELOC_CR16_REGREL4
5709 ENUMX
5710 BFD_RELOC_CR16_REGREL4a
5711 ENUMX
5712 BFD_RELOC_CR16_REGREL14
5713 ENUMX
5714 BFD_RELOC_CR16_REGREL14a
5715 ENUMX
5716 BFD_RELOC_CR16_REGREL16
5717 ENUMX
5718 BFD_RELOC_CR16_REGREL20
5719 ENUMX
5720 BFD_RELOC_CR16_REGREL20a
5721 ENUMX
5722 BFD_RELOC_CR16_ABS20
5723 ENUMX
5724 BFD_RELOC_CR16_ABS24
5725 ENUMX
5726 BFD_RELOC_CR16_IMM4
5727 ENUMX
5728 BFD_RELOC_CR16_IMM8
5729 ENUMX
5730 BFD_RELOC_CR16_IMM16
5731 ENUMX
5732 BFD_RELOC_CR16_IMM20
5733 ENUMX
5734 BFD_RELOC_CR16_IMM24
5735 ENUMX
5736 BFD_RELOC_CR16_IMM32
5737 ENUMX
5738 BFD_RELOC_CR16_IMM32a
5739 ENUMX
5740 BFD_RELOC_CR16_DISP4
5741 ENUMX
5742 BFD_RELOC_CR16_DISP8
5743 ENUMX
5744 BFD_RELOC_CR16_DISP16
5745 ENUMX
5746 BFD_RELOC_CR16_DISP20
5747 ENUMX
5748 BFD_RELOC_CR16_DISP24
5749 ENUMX
5750 BFD_RELOC_CR16_DISP24a
5751 ENUMX
5752 BFD_RELOC_CR16_SWITCH8
5753 ENUMX
5754 BFD_RELOC_CR16_SWITCH16
5755 ENUMX
5756 BFD_RELOC_CR16_SWITCH32
5757 ENUMX
5758 BFD_RELOC_CR16_GOT_REGREL20
5759 ENUMX
5760 BFD_RELOC_CR16_GOTC_REGREL20
5761 ENUMX
5762 BFD_RELOC_CR16_GLOB_DAT
5763 ENUMDOC
5764 NS CR16 Relocations.
5765
5766 ENUM
5767 BFD_RELOC_CRX_REL4
5768 ENUMX
5769 BFD_RELOC_CRX_REL8
5770 ENUMX
5771 BFD_RELOC_CRX_REL8_CMP
5772 ENUMX
5773 BFD_RELOC_CRX_REL16
5774 ENUMX
5775 BFD_RELOC_CRX_REL24
5776 ENUMX
5777 BFD_RELOC_CRX_REL32
5778 ENUMX
5779 BFD_RELOC_CRX_REGREL12
5780 ENUMX
5781 BFD_RELOC_CRX_REGREL22
5782 ENUMX
5783 BFD_RELOC_CRX_REGREL28
5784 ENUMX
5785 BFD_RELOC_CRX_REGREL32
5786 ENUMX
5787 BFD_RELOC_CRX_ABS16
5788 ENUMX
5789 BFD_RELOC_CRX_ABS32
5790 ENUMX
5791 BFD_RELOC_CRX_NUM8
5792 ENUMX
5793 BFD_RELOC_CRX_NUM16
5794 ENUMX
5795 BFD_RELOC_CRX_NUM32
5796 ENUMX
5797 BFD_RELOC_CRX_IMM16
5798 ENUMX
5799 BFD_RELOC_CRX_IMM32
5800 ENUMX
5801 BFD_RELOC_CRX_SWITCH8
5802 ENUMX
5803 BFD_RELOC_CRX_SWITCH16
5804 ENUMX
5805 BFD_RELOC_CRX_SWITCH32
5806 ENUMDOC
5807 NS CRX Relocations.
5808
5809 ENUM
5810 BFD_RELOC_CRIS_BDISP8
5811 ENUMX
5812 BFD_RELOC_CRIS_UNSIGNED_5
5813 ENUMX
5814 BFD_RELOC_CRIS_SIGNED_6
5815 ENUMX
5816 BFD_RELOC_CRIS_UNSIGNED_6
5817 ENUMX
5818 BFD_RELOC_CRIS_SIGNED_8
5819 ENUMX
5820 BFD_RELOC_CRIS_UNSIGNED_8
5821 ENUMX
5822 BFD_RELOC_CRIS_SIGNED_16
5823 ENUMX
5824 BFD_RELOC_CRIS_UNSIGNED_16
5825 ENUMX
5826 BFD_RELOC_CRIS_LAPCQ_OFFSET
5827 ENUMX
5828 BFD_RELOC_CRIS_UNSIGNED_4
5829 ENUMDOC
5830 These relocs are only used within the CRIS assembler. They are not
5831 (at present) written to any object files.
5832 ENUM
5833 BFD_RELOC_CRIS_COPY
5834 ENUMX
5835 BFD_RELOC_CRIS_GLOB_DAT
5836 ENUMX
5837 BFD_RELOC_CRIS_JUMP_SLOT
5838 ENUMX
5839 BFD_RELOC_CRIS_RELATIVE
5840 ENUMDOC
5841 Relocs used in ELF shared libraries for CRIS.
5842 ENUM
5843 BFD_RELOC_CRIS_32_GOT
5844 ENUMDOC
5845 32-bit offset to symbol-entry within GOT.
5846 ENUM
5847 BFD_RELOC_CRIS_16_GOT
5848 ENUMDOC
5849 16-bit offset to symbol-entry within GOT.
5850 ENUM
5851 BFD_RELOC_CRIS_32_GOTPLT
5852 ENUMDOC
5853 32-bit offset to symbol-entry within GOT, with PLT handling.
5854 ENUM
5855 BFD_RELOC_CRIS_16_GOTPLT
5856 ENUMDOC
5857 16-bit offset to symbol-entry within GOT, with PLT handling.
5858 ENUM
5859 BFD_RELOC_CRIS_32_GOTREL
5860 ENUMDOC
5861 32-bit offset to symbol, relative to GOT.
5862 ENUM
5863 BFD_RELOC_CRIS_32_PLT_GOTREL
5864 ENUMDOC
5865 32-bit offset to symbol with PLT entry, relative to GOT.
5866 ENUM
5867 BFD_RELOC_CRIS_32_PLT_PCREL
5868 ENUMDOC
5869 32-bit offset to symbol with PLT entry, relative to this relocation.
5870
5871 ENUM
5872 BFD_RELOC_CRIS_32_GOT_GD
5873 ENUMX
5874 BFD_RELOC_CRIS_16_GOT_GD
5875 ENUMX
5876 BFD_RELOC_CRIS_32_GD
5877 ENUMX
5878 BFD_RELOC_CRIS_DTP
5879 ENUMX
5880 BFD_RELOC_CRIS_32_DTPREL
5881 ENUMX
5882 BFD_RELOC_CRIS_16_DTPREL
5883 ENUMX
5884 BFD_RELOC_CRIS_32_GOT_TPREL
5885 ENUMX
5886 BFD_RELOC_CRIS_16_GOT_TPREL
5887 ENUMX
5888 BFD_RELOC_CRIS_32_TPREL
5889 ENUMX
5890 BFD_RELOC_CRIS_16_TPREL
5891 ENUMX
5892 BFD_RELOC_CRIS_DTPMOD
5893 ENUMX
5894 BFD_RELOC_CRIS_32_IE
5895 ENUMDOC
5896 Relocs used in TLS code for CRIS.
5897
5898 ENUM
5899 BFD_RELOC_860_COPY
5900 ENUMX
5901 BFD_RELOC_860_GLOB_DAT
5902 ENUMX
5903 BFD_RELOC_860_JUMP_SLOT
5904 ENUMX
5905 BFD_RELOC_860_RELATIVE
5906 ENUMX
5907 BFD_RELOC_860_PC26
5908 ENUMX
5909 BFD_RELOC_860_PLT26
5910 ENUMX
5911 BFD_RELOC_860_PC16
5912 ENUMX
5913 BFD_RELOC_860_LOW0
5914 ENUMX
5915 BFD_RELOC_860_SPLIT0
5916 ENUMX
5917 BFD_RELOC_860_LOW1
5918 ENUMX
5919 BFD_RELOC_860_SPLIT1
5920 ENUMX
5921 BFD_RELOC_860_LOW2
5922 ENUMX
5923 BFD_RELOC_860_SPLIT2
5924 ENUMX
5925 BFD_RELOC_860_LOW3
5926 ENUMX
5927 BFD_RELOC_860_LOGOT0
5928 ENUMX
5929 BFD_RELOC_860_SPGOT0
5930 ENUMX
5931 BFD_RELOC_860_LOGOT1
5932 ENUMX
5933 BFD_RELOC_860_SPGOT1
5934 ENUMX
5935 BFD_RELOC_860_LOGOTOFF0
5936 ENUMX
5937 BFD_RELOC_860_SPGOTOFF0
5938 ENUMX
5939 BFD_RELOC_860_LOGOTOFF1
5940 ENUMX
5941 BFD_RELOC_860_SPGOTOFF1
5942 ENUMX
5943 BFD_RELOC_860_LOGOTOFF2
5944 ENUMX
5945 BFD_RELOC_860_LOGOTOFF3
5946 ENUMX
5947 BFD_RELOC_860_LOPC
5948 ENUMX
5949 BFD_RELOC_860_HIGHADJ
5950 ENUMX
5951 BFD_RELOC_860_HAGOT
5952 ENUMX
5953 BFD_RELOC_860_HAGOTOFF
5954 ENUMX
5955 BFD_RELOC_860_HAPC
5956 ENUMX
5957 BFD_RELOC_860_HIGH
5958 ENUMX
5959 BFD_RELOC_860_HIGOT
5960 ENUMX
5961 BFD_RELOC_860_HIGOTOFF
5962 ENUMDOC
5963 Intel i860 Relocations.
5964
5965 ENUM
5966 BFD_RELOC_OR1K_REL_26
5967 ENUMX
5968 BFD_RELOC_OR1K_GOTPC_HI16
5969 ENUMX
5970 BFD_RELOC_OR1K_GOTPC_LO16
5971 ENUMX
5972 BFD_RELOC_OR1K_GOT16
5973 ENUMX
5974 BFD_RELOC_OR1K_PLT26
5975 ENUMX
5976 BFD_RELOC_OR1K_GOTOFF_HI16
5977 ENUMX
5978 BFD_RELOC_OR1K_GOTOFF_LO16
5979 ENUMX
5980 BFD_RELOC_OR1K_COPY
5981 ENUMX
5982 BFD_RELOC_OR1K_GLOB_DAT
5983 ENUMX
5984 BFD_RELOC_OR1K_JMP_SLOT
5985 ENUMX
5986 BFD_RELOC_OR1K_RELATIVE
5987 ENUMX
5988 BFD_RELOC_OR1K_TLS_GD_HI16
5989 ENUMX
5990 BFD_RELOC_OR1K_TLS_GD_LO16
5991 ENUMX
5992 BFD_RELOC_OR1K_TLS_LDM_HI16
5993 ENUMX
5994 BFD_RELOC_OR1K_TLS_LDM_LO16
5995 ENUMX
5996 BFD_RELOC_OR1K_TLS_LDO_HI16
5997 ENUMX
5998 BFD_RELOC_OR1K_TLS_LDO_LO16
5999 ENUMX
6000 BFD_RELOC_OR1K_TLS_IE_HI16
6001 ENUMX
6002 BFD_RELOC_OR1K_TLS_IE_LO16
6003 ENUMX
6004 BFD_RELOC_OR1K_TLS_LE_HI16
6005 ENUMX
6006 BFD_RELOC_OR1K_TLS_LE_LO16
6007 ENUMX
6008 BFD_RELOC_OR1K_TLS_TPOFF
6009 ENUMX
6010 BFD_RELOC_OR1K_TLS_DTPOFF
6011 ENUMX
6012 BFD_RELOC_OR1K_TLS_DTPMOD
6013 ENUMDOC
6014 OpenRISC 1000 Relocations.
6015
6016 ENUM
6017 BFD_RELOC_H8_DIR16A8
6018 ENUMX
6019 BFD_RELOC_H8_DIR16R8
6020 ENUMX
6021 BFD_RELOC_H8_DIR24A8
6022 ENUMX
6023 BFD_RELOC_H8_DIR24R8
6024 ENUMX
6025 BFD_RELOC_H8_DIR32A16
6026 ENUMX
6027 BFD_RELOC_H8_DISP32A16
6028 ENUMDOC
6029 H8 elf Relocations.
6030
6031 ENUM
6032 BFD_RELOC_XSTORMY16_REL_12
6033 ENUMX
6034 BFD_RELOC_XSTORMY16_12
6035 ENUMX
6036 BFD_RELOC_XSTORMY16_24
6037 ENUMX
6038 BFD_RELOC_XSTORMY16_FPTR16
6039 ENUMDOC
6040 Sony Xstormy16 Relocations.
6041
6042 ENUM
6043 BFD_RELOC_RELC
6044 ENUMDOC
6045 Self-describing complex relocations.
6046 COMMENT
6047
6048 ENUM
6049 BFD_RELOC_XC16X_PAG
6050 ENUMX
6051 BFD_RELOC_XC16X_POF
6052 ENUMX
6053 BFD_RELOC_XC16X_SEG
6054 ENUMX
6055 BFD_RELOC_XC16X_SOF
6056 ENUMDOC
6057 Infineon Relocations.
6058
6059 ENUM
6060 BFD_RELOC_VAX_GLOB_DAT
6061 ENUMX
6062 BFD_RELOC_VAX_JMP_SLOT
6063 ENUMX
6064 BFD_RELOC_VAX_RELATIVE
6065 ENUMDOC
6066 Relocations used by VAX ELF.
6067
6068 ENUM
6069 BFD_RELOC_MT_PC16
6070 ENUMDOC
6071 Morpho MT - 16 bit immediate relocation.
6072 ENUM
6073 BFD_RELOC_MT_HI16
6074 ENUMDOC
6075 Morpho MT - Hi 16 bits of an address.
6076 ENUM
6077 BFD_RELOC_MT_LO16
6078 ENUMDOC
6079 Morpho MT - Low 16 bits of an address.
6080 ENUM
6081 BFD_RELOC_MT_GNU_VTINHERIT
6082 ENUMDOC
6083 Morpho MT - Used to tell the linker which vtable entries are used.
6084 ENUM
6085 BFD_RELOC_MT_GNU_VTENTRY
6086 ENUMDOC
6087 Morpho MT - Used to tell the linker which vtable entries are used.
6088 ENUM
6089 BFD_RELOC_MT_PCINSN8
6090 ENUMDOC
6091 Morpho MT - 8 bit immediate relocation.
6092
6093 ENUM
6094 BFD_RELOC_MSP430_10_PCREL
6095 ENUMX
6096 BFD_RELOC_MSP430_16_PCREL
6097 ENUMX
6098 BFD_RELOC_MSP430_16
6099 ENUMX
6100 BFD_RELOC_MSP430_16_PCREL_BYTE
6101 ENUMX
6102 BFD_RELOC_MSP430_16_BYTE
6103 ENUMX
6104 BFD_RELOC_MSP430_2X_PCREL
6105 ENUMX
6106 BFD_RELOC_MSP430_RL_PCREL
6107 ENUMX
6108 BFD_RELOC_MSP430_ABS8
6109 ENUMX
6110 BFD_RELOC_MSP430X_PCR20_EXT_SRC
6111 ENUMX
6112 BFD_RELOC_MSP430X_PCR20_EXT_DST
6113 ENUMX
6114 BFD_RELOC_MSP430X_PCR20_EXT_ODST
6115 ENUMX
6116 BFD_RELOC_MSP430X_ABS20_EXT_SRC
6117 ENUMX
6118 BFD_RELOC_MSP430X_ABS20_EXT_DST
6119 ENUMX
6120 BFD_RELOC_MSP430X_ABS20_EXT_ODST
6121 ENUMX
6122 BFD_RELOC_MSP430X_ABS20_ADR_SRC
6123 ENUMX
6124 BFD_RELOC_MSP430X_ABS20_ADR_DST
6125 ENUMX
6126 BFD_RELOC_MSP430X_PCR16
6127 ENUMX
6128 BFD_RELOC_MSP430X_PCR20_CALL
6129 ENUMX
6130 BFD_RELOC_MSP430X_ABS16
6131 ENUMX
6132 BFD_RELOC_MSP430_ABS_HI16
6133 ENUMX
6134 BFD_RELOC_MSP430_PREL31
6135 ENUMX
6136 BFD_RELOC_MSP430_SYM_DIFF
6137 ENUMDOC
6138 msp430 specific relocation codes
6139
6140 ENUM
6141 BFD_RELOC_NIOS2_S16
6142 ENUMX
6143 BFD_RELOC_NIOS2_U16
6144 ENUMX
6145 BFD_RELOC_NIOS2_CALL26
6146 ENUMX
6147 BFD_RELOC_NIOS2_IMM5
6148 ENUMX
6149 BFD_RELOC_NIOS2_CACHE_OPX
6150 ENUMX
6151 BFD_RELOC_NIOS2_IMM6
6152 ENUMX
6153 BFD_RELOC_NIOS2_IMM8
6154 ENUMX
6155 BFD_RELOC_NIOS2_HI16
6156 ENUMX
6157 BFD_RELOC_NIOS2_LO16
6158 ENUMX
6159 BFD_RELOC_NIOS2_HIADJ16
6160 ENUMX
6161 BFD_RELOC_NIOS2_GPREL
6162 ENUMX
6163 BFD_RELOC_NIOS2_UJMP
6164 ENUMX
6165 BFD_RELOC_NIOS2_CJMP
6166 ENUMX
6167 BFD_RELOC_NIOS2_CALLR
6168 ENUMX
6169 BFD_RELOC_NIOS2_ALIGN
6170 ENUMX
6171 BFD_RELOC_NIOS2_GOT16
6172 ENUMX
6173 BFD_RELOC_NIOS2_CALL16
6174 ENUMX
6175 BFD_RELOC_NIOS2_GOTOFF_LO
6176 ENUMX
6177 BFD_RELOC_NIOS2_GOTOFF_HA
6178 ENUMX
6179 BFD_RELOC_NIOS2_PCREL_LO
6180 ENUMX
6181 BFD_RELOC_NIOS2_PCREL_HA
6182 ENUMX
6183 BFD_RELOC_NIOS2_TLS_GD16
6184 ENUMX
6185 BFD_RELOC_NIOS2_TLS_LDM16
6186 ENUMX
6187 BFD_RELOC_NIOS2_TLS_LDO16
6188 ENUMX
6189 BFD_RELOC_NIOS2_TLS_IE16
6190 ENUMX
6191 BFD_RELOC_NIOS2_TLS_LE16
6192 ENUMX
6193 BFD_RELOC_NIOS2_TLS_DTPMOD
6194 ENUMX
6195 BFD_RELOC_NIOS2_TLS_DTPREL
6196 ENUMX
6197 BFD_RELOC_NIOS2_TLS_TPREL
6198 ENUMX
6199 BFD_RELOC_NIOS2_COPY
6200 ENUMX
6201 BFD_RELOC_NIOS2_GLOB_DAT
6202 ENUMX
6203 BFD_RELOC_NIOS2_JUMP_SLOT
6204 ENUMX
6205 BFD_RELOC_NIOS2_RELATIVE
6206 ENUMX
6207 BFD_RELOC_NIOS2_GOTOFF
6208 ENUMX
6209 BFD_RELOC_NIOS2_CALL26_NOAT
6210 ENUMX
6211 BFD_RELOC_NIOS2_GOT_LO
6212 ENUMX
6213 BFD_RELOC_NIOS2_GOT_HA
6214 ENUMX
6215 BFD_RELOC_NIOS2_CALL_LO
6216 ENUMX
6217 BFD_RELOC_NIOS2_CALL_HA
6218 ENUMDOC
6219 Relocations used by the Altera Nios II core.
6220
6221 ENUM
6222 BFD_RELOC_IQ2000_OFFSET_16
6223 ENUMX
6224 BFD_RELOC_IQ2000_OFFSET_21
6225 ENUMX
6226 BFD_RELOC_IQ2000_UHI16
6227 ENUMDOC
6228 IQ2000 Relocations.
6229
6230 ENUM
6231 BFD_RELOC_XTENSA_RTLD
6232 ENUMDOC
6233 Special Xtensa relocation used only by PLT entries in ELF shared
6234 objects to indicate that the runtime linker should set the value
6235 to one of its own internal functions or data structures.
6236 ENUM
6237 BFD_RELOC_XTENSA_GLOB_DAT
6238 ENUMX
6239 BFD_RELOC_XTENSA_JMP_SLOT
6240 ENUMX
6241 BFD_RELOC_XTENSA_RELATIVE
6242 ENUMDOC
6243 Xtensa relocations for ELF shared objects.
6244 ENUM
6245 BFD_RELOC_XTENSA_PLT
6246 ENUMDOC
6247 Xtensa relocation used in ELF object files for symbols that may require
6248 PLT entries. Otherwise, this is just a generic 32-bit relocation.
6249 ENUM
6250 BFD_RELOC_XTENSA_DIFF8
6251 ENUMX
6252 BFD_RELOC_XTENSA_DIFF16
6253 ENUMX
6254 BFD_RELOC_XTENSA_DIFF32
6255 ENUMDOC
6256 Xtensa relocations to mark the difference of two local symbols.
6257 These are only needed to support linker relaxation and can be ignored
6258 when not relaxing. The field is set to the value of the difference
6259 assuming no relaxation. The relocation encodes the position of the
6260 first symbol so the linker can determine whether to adjust the field
6261 value.
6262 ENUM
6263 BFD_RELOC_XTENSA_SLOT0_OP
6264 ENUMX
6265 BFD_RELOC_XTENSA_SLOT1_OP
6266 ENUMX
6267 BFD_RELOC_XTENSA_SLOT2_OP
6268 ENUMX
6269 BFD_RELOC_XTENSA_SLOT3_OP
6270 ENUMX
6271 BFD_RELOC_XTENSA_SLOT4_OP
6272 ENUMX
6273 BFD_RELOC_XTENSA_SLOT5_OP
6274 ENUMX
6275 BFD_RELOC_XTENSA_SLOT6_OP
6276 ENUMX
6277 BFD_RELOC_XTENSA_SLOT7_OP
6278 ENUMX
6279 BFD_RELOC_XTENSA_SLOT8_OP
6280 ENUMX
6281 BFD_RELOC_XTENSA_SLOT9_OP
6282 ENUMX
6283 BFD_RELOC_XTENSA_SLOT10_OP
6284 ENUMX
6285 BFD_RELOC_XTENSA_SLOT11_OP
6286 ENUMX
6287 BFD_RELOC_XTENSA_SLOT12_OP
6288 ENUMX
6289 BFD_RELOC_XTENSA_SLOT13_OP
6290 ENUMX
6291 BFD_RELOC_XTENSA_SLOT14_OP
6292 ENUMDOC
6293 Generic Xtensa relocations for instruction operands. Only the slot
6294 number is encoded in the relocation. The relocation applies to the
6295 last PC-relative immediate operand, or if there are no PC-relative
6296 immediates, to the last immediate operand.
6297 ENUM
6298 BFD_RELOC_XTENSA_SLOT0_ALT
6299 ENUMX
6300 BFD_RELOC_XTENSA_SLOT1_ALT
6301 ENUMX
6302 BFD_RELOC_XTENSA_SLOT2_ALT
6303 ENUMX
6304 BFD_RELOC_XTENSA_SLOT3_ALT
6305 ENUMX
6306 BFD_RELOC_XTENSA_SLOT4_ALT
6307 ENUMX
6308 BFD_RELOC_XTENSA_SLOT5_ALT
6309 ENUMX
6310 BFD_RELOC_XTENSA_SLOT6_ALT
6311 ENUMX
6312 BFD_RELOC_XTENSA_SLOT7_ALT
6313 ENUMX
6314 BFD_RELOC_XTENSA_SLOT8_ALT
6315 ENUMX
6316 BFD_RELOC_XTENSA_SLOT9_ALT
6317 ENUMX
6318 BFD_RELOC_XTENSA_SLOT10_ALT
6319 ENUMX
6320 BFD_RELOC_XTENSA_SLOT11_ALT
6321 ENUMX
6322 BFD_RELOC_XTENSA_SLOT12_ALT
6323 ENUMX
6324 BFD_RELOC_XTENSA_SLOT13_ALT
6325 ENUMX
6326 BFD_RELOC_XTENSA_SLOT14_ALT
6327 ENUMDOC
6328 Alternate Xtensa relocations. Only the slot is encoded in the
6329 relocation. The meaning of these relocations is opcode-specific.
6330 ENUM
6331 BFD_RELOC_XTENSA_OP0
6332 ENUMX
6333 BFD_RELOC_XTENSA_OP1
6334 ENUMX
6335 BFD_RELOC_XTENSA_OP2
6336 ENUMDOC
6337 Xtensa relocations for backward compatibility. These have all been
6338 replaced by BFD_RELOC_XTENSA_SLOT0_OP.
6339 ENUM
6340 BFD_RELOC_XTENSA_ASM_EXPAND
6341 ENUMDOC
6342 Xtensa relocation to mark that the assembler expanded the
6343 instructions from an original target. The expansion size is
6344 encoded in the reloc size.
6345 ENUM
6346 BFD_RELOC_XTENSA_ASM_SIMPLIFY
6347 ENUMDOC
6348 Xtensa relocation to mark that the linker should simplify
6349 assembler-expanded instructions. This is commonly used
6350 internally by the linker after analysis of a
6351 BFD_RELOC_XTENSA_ASM_EXPAND.
6352 ENUM
6353 BFD_RELOC_XTENSA_TLSDESC_FN
6354 ENUMX
6355 BFD_RELOC_XTENSA_TLSDESC_ARG
6356 ENUMX
6357 BFD_RELOC_XTENSA_TLS_DTPOFF
6358 ENUMX
6359 BFD_RELOC_XTENSA_TLS_TPOFF
6360 ENUMX
6361 BFD_RELOC_XTENSA_TLS_FUNC
6362 ENUMX
6363 BFD_RELOC_XTENSA_TLS_ARG
6364 ENUMX
6365 BFD_RELOC_XTENSA_TLS_CALL
6366 ENUMDOC
6367 Xtensa TLS relocations.
6368
6369 ENUM
6370 BFD_RELOC_Z80_DISP8
6371 ENUMDOC
6372 8 bit signed offset in (ix+d) or (iy+d).
6373
6374 ENUM
6375 BFD_RELOC_Z8K_DISP7
6376 ENUMDOC
6377 DJNZ offset.
6378 ENUM
6379 BFD_RELOC_Z8K_CALLR
6380 ENUMDOC
6381 CALR offset.
6382 ENUM
6383 BFD_RELOC_Z8K_IMM4L
6384 ENUMDOC
6385 4 bit value.
6386
6387 ENUM
6388 BFD_RELOC_LM32_CALL
6389 ENUMX
6390 BFD_RELOC_LM32_BRANCH
6391 ENUMX
6392 BFD_RELOC_LM32_16_GOT
6393 ENUMX
6394 BFD_RELOC_LM32_GOTOFF_HI16
6395 ENUMX
6396 BFD_RELOC_LM32_GOTOFF_LO16
6397 ENUMX
6398 BFD_RELOC_LM32_COPY
6399 ENUMX
6400 BFD_RELOC_LM32_GLOB_DAT
6401 ENUMX
6402 BFD_RELOC_LM32_JMP_SLOT
6403 ENUMX
6404 BFD_RELOC_LM32_RELATIVE
6405 ENUMDOC
6406 Lattice Mico32 relocations.
6407
6408 ENUM
6409 BFD_RELOC_MACH_O_SECTDIFF
6410 ENUMDOC
6411 Difference between two section addreses. Must be followed by a
6412 BFD_RELOC_MACH_O_PAIR.
6413 ENUM
6414 BFD_RELOC_MACH_O_LOCAL_SECTDIFF
6415 ENUMDOC
6416 Like BFD_RELOC_MACH_O_SECTDIFF but with a local symbol.
6417 ENUM
6418 BFD_RELOC_MACH_O_PAIR
6419 ENUMDOC
6420 Pair of relocation. Contains the first symbol.
6421
6422 ENUM
6423 BFD_RELOC_MACH_O_X86_64_BRANCH32
6424 ENUMX
6425 BFD_RELOC_MACH_O_X86_64_BRANCH8
6426 ENUMDOC
6427 PCREL relocations. They are marked as branch to create PLT entry if
6428 required.
6429 ENUM
6430 BFD_RELOC_MACH_O_X86_64_GOT
6431 ENUMDOC
6432 Used when referencing a GOT entry.
6433 ENUM
6434 BFD_RELOC_MACH_O_X86_64_GOT_LOAD
6435 ENUMDOC
6436 Used when loading a GOT entry with movq. It is specially marked so that
6437 the linker could optimize the movq to a leaq if possible.
6438 ENUM
6439 BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32
6440 ENUMDOC
6441 Symbol will be substracted. Must be followed by a BFD_RELOC_64.
6442 ENUM
6443 BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64
6444 ENUMDOC
6445 Symbol will be substracted. Must be followed by a BFD_RELOC_64.
6446 ENUM
6447 BFD_RELOC_MACH_O_X86_64_PCREL32_1
6448 ENUMDOC
6449 Same as BFD_RELOC_32_PCREL but with an implicit -1 addend.
6450 ENUM
6451 BFD_RELOC_MACH_O_X86_64_PCREL32_2
6452 ENUMDOC
6453 Same as BFD_RELOC_32_PCREL but with an implicit -2 addend.
6454 ENUM
6455 BFD_RELOC_MACH_O_X86_64_PCREL32_4
6456 ENUMDOC
6457 Same as BFD_RELOC_32_PCREL but with an implicit -4 addend.
6458
6459 ENUM
6460 BFD_RELOC_MICROBLAZE_32_LO
6461 ENUMDOC
6462 This is a 32 bit reloc for the microblaze that stores the
6463 low 16 bits of a value
6464 ENUM
6465 BFD_RELOC_MICROBLAZE_32_LO_PCREL
6466 ENUMDOC
6467 This is a 32 bit pc-relative reloc for the microblaze that
6468 stores the low 16 bits of a value
6469 ENUM
6470 BFD_RELOC_MICROBLAZE_32_ROSDA
6471 ENUMDOC
6472 This is a 32 bit reloc for the microblaze that stores a
6473 value relative to the read-only small data area anchor
6474 ENUM
6475 BFD_RELOC_MICROBLAZE_32_RWSDA
6476 ENUMDOC
6477 This is a 32 bit reloc for the microblaze that stores a
6478 value relative to the read-write small data area anchor
6479 ENUM
6480 BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM
6481 ENUMDOC
6482 This is a 32 bit reloc for the microblaze to handle
6483 expressions of the form "Symbol Op Symbol"
6484 ENUM
6485 BFD_RELOC_MICROBLAZE_64_NONE
6486 ENUMDOC
6487 This is a 64 bit reloc that stores the 32 bit pc relative
6488 value in two words (with an imm instruction). No relocation is
6489 done here - only used for relaxing
6490 ENUM
6491 BFD_RELOC_MICROBLAZE_64_GOTPC
6492 ENUMDOC
6493 This is a 64 bit reloc that stores the 32 bit pc relative
6494 value in two words (with an imm instruction). The relocation is
6495 PC-relative GOT offset
6496 ENUM
6497 BFD_RELOC_MICROBLAZE_64_GOT
6498 ENUMDOC
6499 This is a 64 bit reloc that stores the 32 bit pc relative
6500 value in two words (with an imm instruction). The relocation is
6501 GOT offset
6502 ENUM
6503 BFD_RELOC_MICROBLAZE_64_PLT
6504 ENUMDOC
6505 This is a 64 bit reloc that stores the 32 bit pc relative
6506 value in two words (with an imm instruction). The relocation is
6507 PC-relative offset into PLT
6508 ENUM
6509 BFD_RELOC_MICROBLAZE_64_GOTOFF
6510 ENUMDOC
6511 This is a 64 bit reloc that stores the 32 bit GOT relative
6512 value in two words (with an imm instruction). The relocation is
6513 relative offset from _GLOBAL_OFFSET_TABLE_
6514 ENUM
6515 BFD_RELOC_MICROBLAZE_32_GOTOFF
6516 ENUMDOC
6517 This is a 32 bit reloc that stores the 32 bit GOT relative
6518 value in a word. The relocation is relative offset from
6519 _GLOBAL_OFFSET_TABLE_
6520 ENUM
6521 BFD_RELOC_MICROBLAZE_COPY
6522 ENUMDOC
6523 This is used to tell the dynamic linker to copy the value out of
6524 the dynamic object into the runtime process image.
6525 ENUM
6526 BFD_RELOC_MICROBLAZE_64_TLS
6527 ENUMDOC
6528 Unused Reloc
6529 ENUM
6530 BFD_RELOC_MICROBLAZE_64_TLSGD
6531 ENUMDOC
6532 This is a 64 bit reloc that stores the 32 bit GOT relative value
6533 of the GOT TLS GD info entry in two words (with an imm instruction). The
6534 relocation is GOT offset.
6535 ENUM
6536 BFD_RELOC_MICROBLAZE_64_TLSLD
6537 ENUMDOC
6538 This is a 64 bit reloc that stores the 32 bit GOT relative value
6539 of the GOT TLS LD info entry in two words (with an imm instruction). The
6540 relocation is GOT offset.
6541 ENUM
6542 BFD_RELOC_MICROBLAZE_32_TLSDTPMOD
6543 ENUMDOC
6544 This is a 32 bit reloc that stores the Module ID to GOT(n).
6545 ENUM
6546 BFD_RELOC_MICROBLAZE_32_TLSDTPREL
6547 ENUMDOC
6548 This is a 32 bit reloc that stores TLS offset to GOT(n+1).
6549 ENUM
6550 BFD_RELOC_MICROBLAZE_64_TLSDTPREL
6551 ENUMDOC
6552 This is a 32 bit reloc for storing TLS offset to two words (uses imm
6553 instruction)
6554 ENUM
6555 BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL
6556 ENUMDOC
6557 This is a 64 bit reloc that stores 32-bit thread pointer relative offset
6558 to two words (uses imm instruction).
6559 ENUM
6560 BFD_RELOC_MICROBLAZE_64_TLSTPREL
6561 ENUMDOC
6562 This is a 64 bit reloc that stores 32-bit thread pointer relative offset
6563 to two words (uses imm instruction).
6564
6565 ENUM
6566 BFD_RELOC_AARCH64_RELOC_START
6567 ENUMDOC
6568 AArch64 pseudo relocation code to mark the start of the AArch64
6569 relocation enumerators. N.B. the order of the enumerators is
6570 important as several tables in the AArch64 bfd backend are indexed
6571 by these enumerators; make sure they are all synced.
6572 ENUM
6573 BFD_RELOC_AARCH64_NONE
6574 ENUMDOC
6575 AArch64 null relocation code.
6576 ENUM
6577 BFD_RELOC_AARCH64_64
6578 ENUMX
6579 BFD_RELOC_AARCH64_32
6580 ENUMX
6581 BFD_RELOC_AARCH64_16
6582 ENUMDOC
6583 Basic absolute relocations of N bits. These are equivalent to
6584 BFD_RELOC_N and they were added to assist the indexing of the howto
6585 table.
6586 ENUM
6587 BFD_RELOC_AARCH64_64_PCREL
6588 ENUMX
6589 BFD_RELOC_AARCH64_32_PCREL
6590 ENUMX
6591 BFD_RELOC_AARCH64_16_PCREL
6592 ENUMDOC
6593 PC-relative relocations. These are equivalent to BFD_RELOC_N_PCREL
6594 and they were added to assist the indexing of the howto table.
6595 ENUM
6596 BFD_RELOC_AARCH64_MOVW_G0
6597 ENUMDOC
6598 AArch64 MOV[NZK] instruction with most significant bits 0 to 15
6599 of an unsigned address/value.
6600 ENUM
6601 BFD_RELOC_AARCH64_MOVW_G0_NC
6602 ENUMDOC
6603 AArch64 MOV[NZK] instruction with less significant bits 0 to 15 of
6604 an address/value. No overflow checking.
6605 ENUM
6606 BFD_RELOC_AARCH64_MOVW_G1
6607 ENUMDOC
6608 AArch64 MOV[NZK] instruction with most significant bits 16 to 31
6609 of an unsigned address/value.
6610 ENUM
6611 BFD_RELOC_AARCH64_MOVW_G1_NC
6612 ENUMDOC
6613 AArch64 MOV[NZK] instruction with less significant bits 16 to 31
6614 of an address/value. No overflow checking.
6615 ENUM
6616 BFD_RELOC_AARCH64_MOVW_G2
6617 ENUMDOC
6618 AArch64 MOV[NZK] instruction with most significant bits 32 to 47
6619 of an unsigned address/value.
6620 ENUM
6621 BFD_RELOC_AARCH64_MOVW_G2_NC
6622 ENUMDOC
6623 AArch64 MOV[NZK] instruction with less significant bits 32 to 47
6624 of an address/value. No overflow checking.
6625 ENUM
6626 BFD_RELOC_AARCH64_MOVW_G3
6627 ENUMDOC
6628 AArch64 MOV[NZK] instruction with most signficant bits 48 to 64
6629 of a signed or unsigned address/value.
6630 ENUM
6631 BFD_RELOC_AARCH64_MOVW_G0_S
6632 ENUMDOC
6633 AArch64 MOV[NZ] instruction with most significant bits 0 to 15
6634 of a signed value. Changes instruction to MOVZ or MOVN depending on the
6635 value's sign.
6636 ENUM
6637 BFD_RELOC_AARCH64_MOVW_G1_S
6638 ENUMDOC
6639 AArch64 MOV[NZ] instruction with most significant bits 16 to 31
6640 of a signed value. Changes instruction to MOVZ or MOVN depending on the
6641 value's sign.
6642 ENUM
6643 BFD_RELOC_AARCH64_MOVW_G2_S
6644 ENUMDOC
6645 AArch64 MOV[NZ] instruction with most significant bits 32 to 47
6646 of a signed value. Changes instruction to MOVZ or MOVN depending on the
6647 value's sign.
6648 ENUM
6649 BFD_RELOC_AARCH64_LD_LO19_PCREL
6650 ENUMDOC
6651 AArch64 Load Literal instruction, holding a 19 bit pc-relative word
6652 offset. The lowest two bits must be zero and are not stored in the
6653 instruction, giving a 21 bit signed byte offset.
6654 ENUM
6655 BFD_RELOC_AARCH64_ADR_LO21_PCREL
6656 ENUMDOC
6657 AArch64 ADR instruction, holding a simple 21 bit pc-relative byte offset.
6658 ENUM
6659 BFD_RELOC_AARCH64_ADR_HI21_PCREL
6660 ENUMDOC
6661 AArch64 ADRP instruction, with bits 12 to 32 of a pc-relative page
6662 offset, giving a 4KB aligned page base address.
6663 ENUM
6664 BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL
6665 ENUMDOC
6666 AArch64 ADRP instruction, with bits 12 to 32 of a pc-relative page
6667 offset, giving a 4KB aligned page base address, but with no overflow
6668 checking.
6669 ENUM
6670 BFD_RELOC_AARCH64_ADD_LO12
6671 ENUMDOC
6672 AArch64 ADD immediate instruction, holding bits 0 to 11 of the address.
6673 Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
6674 ENUM
6675 BFD_RELOC_AARCH64_LDST8_LO12
6676 ENUMDOC
6677 AArch64 8-bit load/store instruction, holding bits 0 to 11 of the
6678 address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
6679 ENUM
6680 BFD_RELOC_AARCH64_TSTBR14
6681 ENUMDOC
6682 AArch64 14 bit pc-relative test bit and branch.
6683 The lowest two bits must be zero and are not stored in the instruction,
6684 giving a 16 bit signed byte offset.
6685 ENUM
6686 BFD_RELOC_AARCH64_BRANCH19
6687 ENUMDOC
6688 AArch64 19 bit pc-relative conditional branch and compare & branch.
6689 The lowest two bits must be zero and are not stored in the instruction,
6690 giving a 21 bit signed byte offset.
6691 ENUM
6692 BFD_RELOC_AARCH64_JUMP26
6693 ENUMDOC
6694 AArch64 26 bit pc-relative unconditional branch.
6695 The lowest two bits must be zero and are not stored in the instruction,
6696 giving a 28 bit signed byte offset.
6697 ENUM
6698 BFD_RELOC_AARCH64_CALL26
6699 ENUMDOC
6700 AArch64 26 bit pc-relative unconditional branch and link.
6701 The lowest two bits must be zero and are not stored in the instruction,
6702 giving a 28 bit signed byte offset.
6703 ENUM
6704 BFD_RELOC_AARCH64_LDST16_LO12
6705 ENUMDOC
6706 AArch64 16-bit load/store instruction, holding bits 0 to 11 of the
6707 address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
6708 ENUM
6709 BFD_RELOC_AARCH64_LDST32_LO12
6710 ENUMDOC
6711 AArch64 32-bit load/store instruction, holding bits 0 to 11 of the
6712 address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
6713 ENUM
6714 BFD_RELOC_AARCH64_LDST64_LO12
6715 ENUMDOC
6716 AArch64 64-bit load/store instruction, holding bits 0 to 11 of the
6717 address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
6718 ENUM
6719 BFD_RELOC_AARCH64_LDST128_LO12
6720 ENUMDOC
6721 AArch64 128-bit load/store instruction, holding bits 0 to 11 of the
6722 address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
6723 ENUM
6724 BFD_RELOC_AARCH64_GOT_LD_PREL19
6725 ENUMDOC
6726 AArch64 Load Literal instruction, holding a 19 bit PC relative word
6727 offset of the global offset table entry for a symbol. The lowest two
6728 bits must be zero and are not stored in the instruction, giving a 21
6729 bit signed byte offset. This relocation type requires signed overflow
6730 checking.
6731 ENUM
6732 BFD_RELOC_AARCH64_ADR_GOT_PAGE
6733 ENUMDOC
6734 Get to the page base of the global offset table entry for a symbol as
6735 part of an ADRP instruction using a 21 bit PC relative value.Used in
6736 conjunction with BFD_RELOC_AARCH64_LD64_GOT_LO12_NC.
6737 ENUM
6738 BFD_RELOC_AARCH64_LD64_GOT_LO12_NC
6739 ENUMDOC
6740 Unsigned 12 bit byte offset for 64 bit load/store from the page of
6741 the GOT entry for this symbol. Used in conjunction with
6742 BFD_RELOC_AARCH64_ADR_GOTPAGE. Valid in LP64 ABI only.
6743 ENUM
6744 BFD_RELOC_AARCH64_LD32_GOT_LO12_NC
6745 ENUMDOC
6746 Unsigned 12 bit byte offset for 32 bit load/store from the page of
6747 the GOT entry for this symbol. Used in conjunction with
6748 BFD_RELOC_AARCH64_ADR_GOTPAGE. Valid in ILP32 ABI only.
6749 ENUM
6750 BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21
6751 ENUMDOC
6752 Get to the page base of the global offset table entry for a symbols
6753 tls_index structure as part of an adrp instruction using a 21 bit PC
6754 relative value. Used in conjunction with
6755 BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC.
6756 ENUM
6757 BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC
6758 ENUMDOC
6759 Unsigned 12 bit byte offset to global offset table entry for a symbols
6760 tls_index structure. Used in conjunction with
6761 BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21.
6762 ENUM
6763 BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1
6764 ENUMDOC
6765 AArch64 TLS INITIAL EXEC relocation.
6766 ENUM
6767 BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC
6768 ENUMDOC
6769 AArch64 TLS INITIAL EXEC relocation.
6770 ENUM
6771 BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21
6772 ENUMDOC
6773 AArch64 TLS INITIAL EXEC relocation.
6774 ENUM
6775 BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC
6776 ENUMDOC
6777 AArch64 TLS INITIAL EXEC relocation.
6778 ENUM
6779 BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC
6780 ENUMDOC
6781 AArch64 TLS INITIAL EXEC relocation.
6782 ENUM
6783 BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19
6784 ENUMDOC
6785 AArch64 TLS INITIAL EXEC relocation.
6786 ENUM
6787 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2
6788 ENUMDOC
6789 AArch64 TLS LOCAL EXEC relocation.
6790 ENUM
6791 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1
6792 ENUMDOC
6793 AArch64 TLS LOCAL EXEC relocation.
6794 ENUM
6795 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC
6796 ENUMDOC
6797 AArch64 TLS LOCAL EXEC relocation.
6798 ENUM
6799 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0
6800 ENUMDOC
6801 AArch64 TLS LOCAL EXEC relocation.
6802 ENUM
6803 BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
6804 ENUMDOC
6805 AArch64 TLS LOCAL EXEC relocation.
6806 ENUM
6807 BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12
6808 ENUMDOC
6809 AArch64 TLS LOCAL EXEC relocation.
6810 ENUM
6811 BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12
6812 ENUMDOC
6813 AArch64 TLS LOCAL EXEC relocation.
6814 ENUM
6815 BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC
6816 ENUMDOC
6817 AArch64 TLS LOCAL EXEC relocation.
6818 ENUM
6819 BFD_RELOC_AARCH64_TLSDESC_LD_PREL19
6820 ENUMDOC
6821 AArch64 TLS DESC relocation.
6822 ENUM
6823 BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21
6824 ENUMDOC
6825 AArch64 TLS DESC relocation.
6826 ENUM
6827 BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21
6828 ENUMDOC
6829 AArch64 TLS DESC relocation.
6830 ENUM
6831 BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC
6832 ENUMDOC
6833 AArch64 TLS DESC relocation.
6834 ENUM
6835 BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC
6836 ENUMDOC
6837 AArch64 TLS DESC relocation.
6838 ENUM
6839 BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC
6840 ENUMDOC
6841 AArch64 TLS DESC relocation.
6842 ENUM
6843 BFD_RELOC_AARCH64_TLSDESC_OFF_G1
6844 ENUMDOC
6845 AArch64 TLS DESC relocation.
6846 ENUM
6847 BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC
6848 ENUMDOC
6849 AArch64 TLS DESC relocation.
6850 ENUM
6851 BFD_RELOC_AARCH64_TLSDESC_LDR
6852 ENUMDOC
6853 AArch64 TLS DESC relocation.
6854 ENUM
6855 BFD_RELOC_AARCH64_TLSDESC_ADD
6856 ENUMDOC
6857 AArch64 TLS DESC relocation.
6858 ENUM
6859 BFD_RELOC_AARCH64_TLSDESC_CALL
6860 ENUMDOC
6861 AArch64 TLS DESC relocation.
6862 ENUM
6863 BFD_RELOC_AARCH64_COPY
6864 ENUMDOC
6865 AArch64 TLS relocation.
6866 ENUM
6867 BFD_RELOC_AARCH64_GLOB_DAT
6868 ENUMDOC
6869 AArch64 TLS relocation.
6870 ENUM
6871 BFD_RELOC_AARCH64_JUMP_SLOT
6872 ENUMDOC
6873 AArch64 TLS relocation.
6874 ENUM
6875 BFD_RELOC_AARCH64_RELATIVE
6876 ENUMDOC
6877 AArch64 TLS relocation.
6878 ENUM
6879 BFD_RELOC_AARCH64_TLS_DTPMOD
6880 ENUMDOC
6881 AArch64 TLS relocation.
6882 ENUM
6883 BFD_RELOC_AARCH64_TLS_DTPREL
6884 ENUMDOC
6885 AArch64 TLS relocation.
6886 ENUM
6887 BFD_RELOC_AARCH64_TLS_TPREL
6888 ENUMDOC
6889 AArch64 TLS relocation.
6890 ENUM
6891 BFD_RELOC_AARCH64_TLSDESC
6892 ENUMDOC
6893 AArch64 TLS relocation.
6894 ENUM
6895 BFD_RELOC_AARCH64_IRELATIVE
6896 ENUMDOC
6897 AArch64 support for STT_GNU_IFUNC.
6898 ENUM
6899 BFD_RELOC_AARCH64_RELOC_END
6900 ENUMDOC
6901 AArch64 pseudo relocation code to mark the end of the AArch64
6902 relocation enumerators that have direct mapping to ELF reloc codes.
6903 There are a few more enumerators after this one; those are mainly
6904 used by the AArch64 assembler for the internal fixup or to select
6905 one of the above enumerators.
6906 ENUM
6907 BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP
6908 ENUMDOC
6909 AArch64 pseudo relocation code to be used internally by the AArch64
6910 assembler and not (currently) written to any object files.
6911 ENUM
6912 BFD_RELOC_AARCH64_LDST_LO12
6913 ENUMDOC
6914 AArch64 unspecified load/store instruction, holding bits 0 to 11 of the
6915 address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
6916 ENUM
6917 BFD_RELOC_AARCH64_LD_GOT_LO12_NC
6918 ENUMDOC
6919 AArch64 pseudo relocation code to be used internally by the AArch64
6920 assembler and not (currently) written to any object files.
6921 ENUM
6922 BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC
6923 ENUMDOC
6924 AArch64 pseudo relocation code to be used internally by the AArch64
6925 assembler and not (currently) written to any object files.
6926 ENUM
6927 BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC
6928 ENUMDOC
6929 AArch64 pseudo relocation code to be used internally by the AArch64
6930 assembler and not (currently) written to any object files.
6931
6932 ENUM
6933 BFD_RELOC_TILEPRO_COPY
6934 ENUMX
6935 BFD_RELOC_TILEPRO_GLOB_DAT
6936 ENUMX
6937 BFD_RELOC_TILEPRO_JMP_SLOT
6938 ENUMX
6939 BFD_RELOC_TILEPRO_RELATIVE
6940 ENUMX
6941 BFD_RELOC_TILEPRO_BROFF_X1
6942 ENUMX
6943 BFD_RELOC_TILEPRO_JOFFLONG_X1
6944 ENUMX
6945 BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT
6946 ENUMX
6947 BFD_RELOC_TILEPRO_IMM8_X0
6948 ENUMX
6949 BFD_RELOC_TILEPRO_IMM8_Y0
6950 ENUMX
6951 BFD_RELOC_TILEPRO_IMM8_X1
6952 ENUMX
6953 BFD_RELOC_TILEPRO_IMM8_Y1
6954 ENUMX
6955 BFD_RELOC_TILEPRO_DEST_IMM8_X1
6956 ENUMX
6957 BFD_RELOC_TILEPRO_MT_IMM15_X1
6958 ENUMX
6959 BFD_RELOC_TILEPRO_MF_IMM15_X1
6960 ENUMX
6961 BFD_RELOC_TILEPRO_IMM16_X0
6962 ENUMX
6963 BFD_RELOC_TILEPRO_IMM16_X1
6964 ENUMX
6965 BFD_RELOC_TILEPRO_IMM16_X0_LO
6966 ENUMX
6967 BFD_RELOC_TILEPRO_IMM16_X1_LO
6968 ENUMX
6969 BFD_RELOC_TILEPRO_IMM16_X0_HI
6970 ENUMX
6971 BFD_RELOC_TILEPRO_IMM16_X1_HI
6972 ENUMX
6973 BFD_RELOC_TILEPRO_IMM16_X0_HA
6974 ENUMX
6975 BFD_RELOC_TILEPRO_IMM16_X1_HA
6976 ENUMX
6977 BFD_RELOC_TILEPRO_IMM16_X0_PCREL
6978 ENUMX
6979 BFD_RELOC_TILEPRO_IMM16_X1_PCREL
6980 ENUMX
6981 BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL
6982 ENUMX
6983 BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL
6984 ENUMX
6985 BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL
6986 ENUMX
6987 BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL
6988 ENUMX
6989 BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL
6990 ENUMX
6991 BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL
6992 ENUMX
6993 BFD_RELOC_TILEPRO_IMM16_X0_GOT
6994 ENUMX
6995 BFD_RELOC_TILEPRO_IMM16_X1_GOT
6996 ENUMX
6997 BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO
6998 ENUMX
6999 BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO
7000 ENUMX
7001 BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI
7002 ENUMX
7003 BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI
7004 ENUMX
7005 BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA
7006 ENUMX
7007 BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA
7008 ENUMX
7009 BFD_RELOC_TILEPRO_MMSTART_X0
7010 ENUMX
7011 BFD_RELOC_TILEPRO_MMEND_X0
7012 ENUMX
7013 BFD_RELOC_TILEPRO_MMSTART_X1
7014 ENUMX
7015 BFD_RELOC_TILEPRO_MMEND_X1
7016 ENUMX
7017 BFD_RELOC_TILEPRO_SHAMT_X0
7018 ENUMX
7019 BFD_RELOC_TILEPRO_SHAMT_X1
7020 ENUMX
7021 BFD_RELOC_TILEPRO_SHAMT_Y0
7022 ENUMX
7023 BFD_RELOC_TILEPRO_SHAMT_Y1
7024 ENUMX
7025 BFD_RELOC_TILEPRO_TLS_GD_CALL
7026 ENUMX
7027 BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD
7028 ENUMX
7029 BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD
7030 ENUMX
7031 BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD
7032 ENUMX
7033 BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD
7034 ENUMX
7035 BFD_RELOC_TILEPRO_TLS_IE_LOAD
7036 ENUMX
7037 BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD
7038 ENUMX
7039 BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD
7040 ENUMX
7041 BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO
7042 ENUMX
7043 BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO
7044 ENUMX
7045 BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI
7046 ENUMX
7047 BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI
7048 ENUMX
7049 BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA
7050 ENUMX
7051 BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA
7052 ENUMX
7053 BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE
7054 ENUMX
7055 BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE
7056 ENUMX
7057 BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO
7058 ENUMX
7059 BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO
7060 ENUMX
7061 BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI
7062 ENUMX
7063 BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI
7064 ENUMX
7065 BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA
7066 ENUMX
7067 BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA
7068 ENUMX
7069 BFD_RELOC_TILEPRO_TLS_DTPMOD32
7070 ENUMX
7071 BFD_RELOC_TILEPRO_TLS_DTPOFF32
7072 ENUMX
7073 BFD_RELOC_TILEPRO_TLS_TPOFF32
7074 ENUMX
7075 BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE
7076 ENUMX
7077 BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE
7078 ENUMX
7079 BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO
7080 ENUMX
7081 BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO
7082 ENUMX
7083 BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI
7084 ENUMX
7085 BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI
7086 ENUMX
7087 BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA
7088 ENUMX
7089 BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA
7090 ENUMDOC
7091 Tilera TILEPro Relocations.
7092 ENUM
7093 BFD_RELOC_TILEGX_HW0
7094 ENUMX
7095 BFD_RELOC_TILEGX_HW1
7096 ENUMX
7097 BFD_RELOC_TILEGX_HW2
7098 ENUMX
7099 BFD_RELOC_TILEGX_HW3
7100 ENUMX
7101 BFD_RELOC_TILEGX_HW0_LAST
7102 ENUMX
7103 BFD_RELOC_TILEGX_HW1_LAST
7104 ENUMX
7105 BFD_RELOC_TILEGX_HW2_LAST
7106 ENUMX
7107 BFD_RELOC_TILEGX_COPY
7108 ENUMX
7109 BFD_RELOC_TILEGX_GLOB_DAT
7110 ENUMX
7111 BFD_RELOC_TILEGX_JMP_SLOT
7112 ENUMX
7113 BFD_RELOC_TILEGX_RELATIVE
7114 ENUMX
7115 BFD_RELOC_TILEGX_BROFF_X1
7116 ENUMX
7117 BFD_RELOC_TILEGX_JUMPOFF_X1
7118 ENUMX
7119 BFD_RELOC_TILEGX_JUMPOFF_X1_PLT
7120 ENUMX
7121 BFD_RELOC_TILEGX_IMM8_X0
7122 ENUMX
7123 BFD_RELOC_TILEGX_IMM8_Y0
7124 ENUMX
7125 BFD_RELOC_TILEGX_IMM8_X1
7126 ENUMX
7127 BFD_RELOC_TILEGX_IMM8_Y1
7128 ENUMX
7129 BFD_RELOC_TILEGX_DEST_IMM8_X1
7130 ENUMX
7131 BFD_RELOC_TILEGX_MT_IMM14_X1
7132 ENUMX
7133 BFD_RELOC_TILEGX_MF_IMM14_X1
7134 ENUMX
7135 BFD_RELOC_TILEGX_MMSTART_X0
7136 ENUMX
7137 BFD_RELOC_TILEGX_MMEND_X0
7138 ENUMX
7139 BFD_RELOC_TILEGX_SHAMT_X0
7140 ENUMX
7141 BFD_RELOC_TILEGX_SHAMT_X1
7142 ENUMX
7143 BFD_RELOC_TILEGX_SHAMT_Y0
7144 ENUMX
7145 BFD_RELOC_TILEGX_SHAMT_Y1
7146 ENUMX
7147 BFD_RELOC_TILEGX_IMM16_X0_HW0
7148 ENUMX
7149 BFD_RELOC_TILEGX_IMM16_X1_HW0
7150 ENUMX
7151 BFD_RELOC_TILEGX_IMM16_X0_HW1
7152 ENUMX
7153 BFD_RELOC_TILEGX_IMM16_X1_HW1
7154 ENUMX
7155 BFD_RELOC_TILEGX_IMM16_X0_HW2
7156 ENUMX
7157 BFD_RELOC_TILEGX_IMM16_X1_HW2
7158 ENUMX
7159 BFD_RELOC_TILEGX_IMM16_X0_HW3
7160 ENUMX
7161 BFD_RELOC_TILEGX_IMM16_X1_HW3
7162 ENUMX
7163 BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST
7164 ENUMX
7165 BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST
7166 ENUMX
7167 BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST
7168 ENUMX
7169 BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST
7170 ENUMX
7171 BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST
7172 ENUMX
7173 BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST
7174 ENUMX
7175 BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL
7176 ENUMX
7177 BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL
7178 ENUMX
7179 BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL
7180 ENUMX
7181 BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL
7182 ENUMX
7183 BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL
7184 ENUMX
7185 BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL
7186 ENUMX
7187 BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL
7188 ENUMX
7189 BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL
7190 ENUMX
7191 BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL
7192 ENUMX
7193 BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL
7194 ENUMX
7195 BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL
7196 ENUMX
7197 BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL
7198 ENUMX
7199 BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL
7200 ENUMX
7201 BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL
7202 ENUMX
7203 BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT
7204 ENUMX
7205 BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT
7206 ENUMX
7207 BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL
7208 ENUMX
7209 BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL
7210 ENUMX
7211 BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL
7212 ENUMX
7213 BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL
7214 ENUMX
7215 BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL
7216 ENUMX
7217 BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL
7218 ENUMX
7219 BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT
7220 ENUMX
7221 BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT
7222 ENUMX
7223 BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT
7224 ENUMX
7225 BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT
7226 ENUMX
7227 BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL
7228 ENUMX
7229 BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL
7230 ENUMX
7231 BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD
7232 ENUMX
7233 BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD
7234 ENUMX
7235 BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE
7236 ENUMX
7237 BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE
7238 ENUMX
7239 BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE
7240 ENUMX
7241 BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE
7242 ENUMX
7243 BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE
7244 ENUMX
7245 BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE
7246 ENUMX
7247 BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD
7248 ENUMX
7249 BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD
7250 ENUMX
7251 BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD
7252 ENUMX
7253 BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD
7254 ENUMX
7255 BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE
7256 ENUMX
7257 BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE
7258 ENUMX
7259 BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL
7260 ENUMX
7261 BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL
7262 ENUMX
7263 BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL
7264 ENUMX
7265 BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL
7266 ENUMX
7267 BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL
7268 ENUMX
7269 BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL
7270 ENUMX
7271 BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE
7272 ENUMX
7273 BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE
7274 ENUMX
7275 BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE
7276 ENUMX
7277 BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE
7278 ENUMX
7279 BFD_RELOC_TILEGX_TLS_DTPMOD64
7280 ENUMX
7281 BFD_RELOC_TILEGX_TLS_DTPOFF64
7282 ENUMX
7283 BFD_RELOC_TILEGX_TLS_TPOFF64
7284 ENUMX
7285 BFD_RELOC_TILEGX_TLS_DTPMOD32
7286 ENUMX
7287 BFD_RELOC_TILEGX_TLS_DTPOFF32
7288 ENUMX
7289 BFD_RELOC_TILEGX_TLS_TPOFF32
7290 ENUMX
7291 BFD_RELOC_TILEGX_TLS_GD_CALL
7292 ENUMX
7293 BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD
7294 ENUMX
7295 BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD
7296 ENUMX
7297 BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD
7298 ENUMX
7299 BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD
7300 ENUMX
7301 BFD_RELOC_TILEGX_TLS_IE_LOAD
7302 ENUMX
7303 BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD
7304 ENUMX
7305 BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD
7306 ENUMX
7307 BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD
7308 ENUMX
7309 BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD
7310 ENUMDOC
7311 Tilera TILE-Gx Relocations.
7312
7313 ENUM
7314 BFD_RELOC_EPIPHANY_SIMM8
7315 ENUMDOC
7316 Adapteva EPIPHANY - 8 bit signed pc-relative displacement
7317 ENUM
7318 BFD_RELOC_EPIPHANY_SIMM24
7319 ENUMDOC
7320 Adapteva EPIPHANY - 24 bit signed pc-relative displacement
7321 ENUM
7322 BFD_RELOC_EPIPHANY_HIGH
7323 ENUMDOC
7324 Adapteva EPIPHANY - 16 most-significant bits of absolute address
7325 ENUM
7326 BFD_RELOC_EPIPHANY_LOW
7327 ENUMDOC
7328 Adapteva EPIPHANY - 16 least-significant bits of absolute address
7329 ENUM
7330 BFD_RELOC_EPIPHANY_SIMM11
7331 ENUMDOC
7332 Adapteva EPIPHANY - 11 bit signed number - add/sub immediate
7333 ENUM
7334 BFD_RELOC_EPIPHANY_IMM11
7335 ENUMDOC
7336 Adapteva EPIPHANY - 11 bit sign-magnitude number (ld/st displacement)
7337 ENUM
7338 BFD_RELOC_EPIPHANY_IMM8
7339 ENUMDOC
7340 Adapteva EPIPHANY - 8 bit immediate for 16 bit mov instruction.
7341
7342 ENUM
7343 BFD_RELOC_VISIUM_HI16
7344 ENUMX
7345 BFD_RELOC_VISIUM_LO16
7346 ENUMX
7347 BFD_RELOC_VISIUM_IM16
7348 ENUMX
7349 BFD_RELOC_VISIUM_REL16
7350 ENUMX
7351 BFD_RELOC_VISIUM_HI16_PCREL
7352 ENUMX
7353 BFD_RELOC_VISIUM_LO16_PCREL
7354 ENUMX
7355 BFD_RELOC_VISIUM_IM16_PCREL
7356 ENUMDOC
7357 Visium Relocations.
7358
7359 ENDSENUM
7360 BFD_RELOC_UNUSED
7361 CODE_FRAGMENT
7362 .
7363 .typedef enum bfd_reloc_code_real bfd_reloc_code_real_type;
7364 */
7365
7366 /*
7367 FUNCTION
7368 bfd_reloc_type_lookup
7369 bfd_reloc_name_lookup
7370
7371 SYNOPSIS
7372 reloc_howto_type *bfd_reloc_type_lookup
7373 (bfd *abfd, bfd_reloc_code_real_type code);
7374 reloc_howto_type *bfd_reloc_name_lookup
7375 (bfd *abfd, const char *reloc_name);
7376
7377 DESCRIPTION
7378 Return a pointer to a howto structure which, when
7379 invoked, will perform the relocation @var{code} on data from the
7380 architecture noted.
7381
7382 */
7383
7384 reloc_howto_type *
7385 bfd_reloc_type_lookup (bfd *abfd, bfd_reloc_code_real_type code)
7386 {
7387 return BFD_SEND (abfd, reloc_type_lookup, (abfd, code));
7388 }
7389
7390 reloc_howto_type *
7391 bfd_reloc_name_lookup (bfd *abfd, const char *reloc_name)
7392 {
7393 return BFD_SEND (abfd, reloc_name_lookup, (abfd, reloc_name));
7394 }
7395
7396 static reloc_howto_type bfd_howto_32 =
7397 HOWTO (0, 00, 2, 32, FALSE, 0, complain_overflow_dont, 0, "VRT32", FALSE, 0xffffffff, 0xffffffff, TRUE);
7398
7399 /*
7400 INTERNAL_FUNCTION
7401 bfd_default_reloc_type_lookup
7402
7403 SYNOPSIS
7404 reloc_howto_type *bfd_default_reloc_type_lookup
7405 (bfd *abfd, bfd_reloc_code_real_type code);
7406
7407 DESCRIPTION
7408 Provides a default relocation lookup routine for any architecture.
7409
7410 */
7411
7412 reloc_howto_type *
7413 bfd_default_reloc_type_lookup (bfd *abfd, bfd_reloc_code_real_type code)
7414 {
7415 switch (code)
7416 {
7417 case BFD_RELOC_CTOR:
7418 /* The type of reloc used in a ctor, which will be as wide as the
7419 address - so either a 64, 32, or 16 bitter. */
7420 switch (bfd_arch_bits_per_address (abfd))
7421 {
7422 case 64:
7423 BFD_FAIL ();
7424 case 32:
7425 return &bfd_howto_32;
7426 case 16:
7427 BFD_FAIL ();
7428 default:
7429 BFD_FAIL ();
7430 }
7431 default:
7432 BFD_FAIL ();
7433 }
7434 return NULL;
7435 }
7436
7437 /*
7438 FUNCTION
7439 bfd_get_reloc_code_name
7440
7441 SYNOPSIS
7442 const char *bfd_get_reloc_code_name (bfd_reloc_code_real_type code);
7443
7444 DESCRIPTION
7445 Provides a printable name for the supplied relocation code.
7446 Useful mainly for printing error messages.
7447 */
7448
7449 const char *
7450 bfd_get_reloc_code_name (bfd_reloc_code_real_type code)
7451 {
7452 if (code > BFD_RELOC_UNUSED)
7453 return 0;
7454 return bfd_reloc_code_real_names[code];
7455 }
7456
7457 /*
7458 INTERNAL_FUNCTION
7459 bfd_generic_relax_section
7460
7461 SYNOPSIS
7462 bfd_boolean bfd_generic_relax_section
7463 (bfd *abfd,
7464 asection *section,
7465 struct bfd_link_info *,
7466 bfd_boolean *);
7467
7468 DESCRIPTION
7469 Provides default handling for relaxing for back ends which
7470 don't do relaxing.
7471 */
7472
7473 bfd_boolean
7474 bfd_generic_relax_section (bfd *abfd ATTRIBUTE_UNUSED,
7475 asection *section ATTRIBUTE_UNUSED,
7476 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
7477 bfd_boolean *again)
7478 {
7479 if (link_info->relocatable)
7480 (*link_info->callbacks->einfo)
7481 (_("%P%F: --relax and -r may not be used together\n"));
7482
7483 *again = FALSE;
7484 return TRUE;
7485 }
7486
7487 /*
7488 INTERNAL_FUNCTION
7489 bfd_generic_gc_sections
7490
7491 SYNOPSIS
7492 bfd_boolean bfd_generic_gc_sections
7493 (bfd *, struct bfd_link_info *);
7494
7495 DESCRIPTION
7496 Provides default handling for relaxing for back ends which
7497 don't do section gc -- i.e., does nothing.
7498 */
7499
7500 bfd_boolean
7501 bfd_generic_gc_sections (bfd *abfd ATTRIBUTE_UNUSED,
7502 struct bfd_link_info *info ATTRIBUTE_UNUSED)
7503 {
7504 return TRUE;
7505 }
7506
7507 /*
7508 INTERNAL_FUNCTION
7509 bfd_generic_lookup_section_flags
7510
7511 SYNOPSIS
7512 bfd_boolean bfd_generic_lookup_section_flags
7513 (struct bfd_link_info *, struct flag_info *, asection *);
7514
7515 DESCRIPTION
7516 Provides default handling for section flags lookup
7517 -- i.e., does nothing.
7518 Returns FALSE if the section should be omitted, otherwise TRUE.
7519 */
7520
7521 bfd_boolean
7522 bfd_generic_lookup_section_flags (struct bfd_link_info *info ATTRIBUTE_UNUSED,
7523 struct flag_info *flaginfo,
7524 asection *section ATTRIBUTE_UNUSED)
7525 {
7526 if (flaginfo != NULL)
7527 {
7528 (*_bfd_error_handler) (_("INPUT_SECTION_FLAGS are not supported.\n"));
7529 return FALSE;
7530 }
7531 return TRUE;
7532 }
7533
7534 /*
7535 INTERNAL_FUNCTION
7536 bfd_generic_merge_sections
7537
7538 SYNOPSIS
7539 bfd_boolean bfd_generic_merge_sections
7540 (bfd *, struct bfd_link_info *);
7541
7542 DESCRIPTION
7543 Provides default handling for SEC_MERGE section merging for back ends
7544 which don't have SEC_MERGE support -- i.e., does nothing.
7545 */
7546
7547 bfd_boolean
7548 bfd_generic_merge_sections (bfd *abfd ATTRIBUTE_UNUSED,
7549 struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
7550 {
7551 return TRUE;
7552 }
7553
7554 /*
7555 INTERNAL_FUNCTION
7556 bfd_generic_get_relocated_section_contents
7557
7558 SYNOPSIS
7559 bfd_byte *bfd_generic_get_relocated_section_contents
7560 (bfd *abfd,
7561 struct bfd_link_info *link_info,
7562 struct bfd_link_order *link_order,
7563 bfd_byte *data,
7564 bfd_boolean relocatable,
7565 asymbol **symbols);
7566
7567 DESCRIPTION
7568 Provides default handling of relocation effort for back ends
7569 which can't be bothered to do it efficiently.
7570
7571 */
7572
7573 bfd_byte *
7574 bfd_generic_get_relocated_section_contents (bfd *abfd,
7575 struct bfd_link_info *link_info,
7576 struct bfd_link_order *link_order,
7577 bfd_byte *data,
7578 bfd_boolean relocatable,
7579 asymbol **symbols)
7580 {
7581 bfd *input_bfd = link_order->u.indirect.section->owner;
7582 asection *input_section = link_order->u.indirect.section;
7583 long reloc_size;
7584 arelent **reloc_vector;
7585 long reloc_count;
7586
7587 reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
7588 if (reloc_size < 0)
7589 return NULL;
7590
7591 /* Read in the section. */
7592 if (!bfd_get_full_section_contents (input_bfd, input_section, &data))
7593 return NULL;
7594
7595 if (reloc_size == 0)
7596 return data;
7597
7598 reloc_vector = (arelent **) bfd_malloc (reloc_size);
7599 if (reloc_vector == NULL)
7600 return NULL;
7601
7602 reloc_count = bfd_canonicalize_reloc (input_bfd,
7603 input_section,
7604 reloc_vector,
7605 symbols);
7606 if (reloc_count < 0)
7607 goto error_return;
7608
7609 if (reloc_count > 0)
7610 {
7611 arelent **parent;
7612 for (parent = reloc_vector; *parent != NULL; parent++)
7613 {
7614 char *error_message = NULL;
7615 asymbol *symbol;
7616 bfd_reloc_status_type r;
7617
7618 symbol = *(*parent)->sym_ptr_ptr;
7619 if (symbol->section && discarded_section (symbol->section))
7620 {
7621 bfd_byte *p;
7622 static reloc_howto_type none_howto
7623 = HOWTO (0, 0, 0, 0, FALSE, 0, complain_overflow_dont, NULL,
7624 "unused", FALSE, 0, 0, FALSE);
7625
7626 p = data + (*parent)->address * bfd_octets_per_byte (input_bfd);
7627 _bfd_clear_contents ((*parent)->howto, input_bfd, input_section,
7628 p);
7629 (*parent)->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
7630 (*parent)->addend = 0;
7631 (*parent)->howto = &none_howto;
7632 r = bfd_reloc_ok;
7633 }
7634 else
7635 r = bfd_perform_relocation (input_bfd,
7636 *parent,
7637 data,
7638 input_section,
7639 relocatable ? abfd : NULL,
7640 &error_message);
7641
7642 if (relocatable)
7643 {
7644 asection *os = input_section->output_section;
7645
7646 /* A partial link, so keep the relocs. */
7647 os->orelocation[os->reloc_count] = *parent;
7648 os->reloc_count++;
7649 }
7650
7651 if (r != bfd_reloc_ok)
7652 {
7653 switch (r)
7654 {
7655 case bfd_reloc_undefined:
7656 if (!((*link_info->callbacks->undefined_symbol)
7657 (link_info, bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
7658 input_bfd, input_section, (*parent)->address,
7659 TRUE)))
7660 goto error_return;
7661 break;
7662 case bfd_reloc_dangerous:
7663 BFD_ASSERT (error_message != NULL);
7664 if (!((*link_info->callbacks->reloc_dangerous)
7665 (link_info, error_message, input_bfd, input_section,
7666 (*parent)->address)))
7667 goto error_return;
7668 break;
7669 case bfd_reloc_overflow:
7670 if (!((*link_info->callbacks->reloc_overflow)
7671 (link_info, NULL,
7672 bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
7673 (*parent)->howto->name, (*parent)->addend,
7674 input_bfd, input_section, (*parent)->address)))
7675 goto error_return;
7676 break;
7677 case bfd_reloc_outofrange:
7678 /* PR ld/13730:
7679 This error can result when processing some partially
7680 complete binaries. Do not abort, but issue an error
7681 message instead. */
7682 link_info->callbacks->einfo
7683 (_("%X%P: %B(%A): relocation \"%R\" goes out of range\n"),
7684 abfd, input_section, * parent);
7685 goto error_return;
7686
7687 case bfd_reloc_notsupported:
7688 /* PR ld/17512
7689 This error can result when processing a corrupt binary.
7690 Do not abort. Issue an error message instead. */
7691 link_info->callbacks->einfo
7692 (_("%X%P: %B(%A): relocation \"%R\" is not supported\n"),
7693 abfd, input_section, * parent);
7694 goto error_return;
7695
7696 default:
7697 /* PR 17512; file: 90c2a92e.
7698 Report unexpected results, without aborting. */
7699 link_info->callbacks->einfo
7700 (_("%X%P: %B(%A): relocation \"%R\" returns an unrecognized value %x\n"),
7701 abfd, input_section, * parent, r);
7702 break;
7703 }
7704
7705 }
7706 }
7707 }
7708
7709 free (reloc_vector);
7710 return data;
7711
7712 error_return:
7713 free (reloc_vector);
7714 return NULL;
7715 }