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