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