diff options
author | Alan Modra <amodra@gmail.com> | 2022-06-07 22:43:20 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-06-08 21:33:00 +0930 |
commit | c94cb026628b831ef63e3455a66328749ff8a415 (patch) | |
tree | 57ee202b558b82c12ea74e0621928d80008f160d /bfd/coff-x86_64.c | |
parent | 3418a349c624257d6a47a299901b9e996469acba (diff) | |
download | gdb-c94cb026628b831ef63e3455a66328749ff8a415.zip gdb-c94cb026628b831ef63e3455a66328749ff8a415.tar.gz gdb-c94cb026628b831ef63e3455a66328749ff8a415.tar.bz2 |
HOWTO size encoding
This changes the HOWTO macro to encode the howto.size field from a
value given in bytes. This of course requires editing all target
uses of HOWTO, a major pain, but makes it a little nicer to specify
new target HOWTOs. Object files before/after this patch are
unchanged in .data and .rodata.
bfd/
* reloc.c (HOWTO_RSIZE): Encode size in bytes.
(EMPTY_HOWTO): Adjust to keep it all zero.
* aout-ns32k.c, * aoutx.h, * coff-alpha.c, * coff-arm.c,
* coff-i386.c, * coff-mcore.c, * coff-mips.c, * coff-rs6000.c,
* coff-sh.c, * coff-tic30.c, * coff-tic4x.c, * coff-tic54x.c,
* coff-x86_64.c, * coff-z80.c, * coff-z8k.c, * coff64-rs6000.c,
* elf-hppa.h, * elf-m10200.c, * elf-m10300.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cris.c, * elf32-crx.c, * elf32-csky.c, * elf32-d10v.c,
* elf32-d30v.c, * elf32-dlx.c, * elf32-epiphany.c,
* elf32-fr30.c, * elf32-frv.c, * elf32-ft32.c, * elf32-gen.c,
* elf32-h8300.c, * elf32-i386.c, * elf32-ip2k.c, * elf32-iq2000.c,
* elf32-lm32.c, * elf32-m32c.c, * elf32-m32r.c, * elf32-m68hc11.c,
* elf32-m68hc12.c, * elf32-m68k.c, * elf32-mcore.c, * elf32-mep.c,
* elf32-metag.c, * elf32-microblaze.c, * elf32-mips.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-pj.c, * elf32-ppc.c,
* elf32-pru.c, * elf32-rl78.c, * elf32-rx.c, * elf32-s12z.c,
* elf32-s390.c, * elf32-score.c, * elf32-score7.c,
* elf32-sh-relocs.h, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c,
* elf32-visium.c, * elf32-wasm32.c, * elf32-xc16x.c,
* elf32-xgate.c, * elf32-xstormy16.c, * elf32-xtensa.c,
* elf32-z80.c, * elf64-alpha.c, * elf64-bpf.c, * elf64-gen.c,
* elf64-mips.c, * elf64-mmix.c, * elf64-nfp.c, * elf64-ppc.c,
* elf64-s390.c, * elf64-x86-64.c, * elfn32-mips.c,
* elfnn-aarch64.c, * elfxx-ia64.c, * elfxx-loongarch.c,
* elfxx-mips.c, * elfxx-riscv.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * mach-o-aarch64.c, * mach-o-arm.c,
* mach-o-i386.c, * mach-o-x86-64.c, * pdp11.c, * reloc.c,
* som.c, * vms-alpha.c: Adjust all uses of HOWTO.
* bfd-in2.h: Regenerate.
include/
* elf/arc-reloc.def: Adjust all uses of HOWTO.
Diffstat (limited to 'bfd/coff-x86_64.c')
-rw-r--r-- | bfd/coff-x86_64.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/bfd/coff-x86_64.c b/bfd/coff-x86_64.c index cf339c9..bc9c3d4 100644 --- a/bfd/coff-x86_64.c +++ b/bfd/coff-x86_64.c @@ -240,7 +240,7 @@ static reloc_howto_type howto_table[] = EMPTY_HOWTO (0), HOWTO (R_AMD64_DIR64, /* type 1*/ 0, /* rightshift */ - 4, /* size (0 = byte, 1 = short, 2 = long, 4 = long long) */ + 8, /* size */ 64, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -253,7 +253,7 @@ static reloc_howto_type howto_table[] = true), /* pcrel_offset */ HOWTO (R_AMD64_DIR32, /* type 2 */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -267,7 +267,7 @@ static reloc_howto_type howto_table[] = /* PE IMAGE_REL_AMD64_ADDR32NB relocation (3). */ HOWTO (R_AMD64_IMAGEBASE, /* type */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -281,7 +281,7 @@ static reloc_howto_type howto_table[] = /* 32-bit longword PC relative relocation (4). */ HOWTO (R_AMD64_PCRLONG, /* type 4 */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -295,7 +295,7 @@ static reloc_howto_type howto_table[] = HOWTO (R_AMD64_PCRLONG_1, /* type 5 */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -308,7 +308,7 @@ static reloc_howto_type howto_table[] = PCRELOFFSET), /* pcrel_offset */ HOWTO (R_AMD64_PCRLONG_2, /* type 6 */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -321,7 +321,7 @@ static reloc_howto_type howto_table[] = PCRELOFFSET), /* pcrel_offset */ HOWTO (R_AMD64_PCRLONG_3, /* type 7 */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -334,7 +334,7 @@ static reloc_howto_type howto_table[] = PCRELOFFSET), /* pcrel_offset */ HOWTO (R_AMD64_PCRLONG_4, /* type 8 */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -347,7 +347,7 @@ static reloc_howto_type howto_table[] = PCRELOFFSET), /* pcrel_offset */ HOWTO (R_AMD64_PCRLONG_5, /* type 9 */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -362,7 +362,7 @@ static reloc_howto_type howto_table[] = /* 16-bit word section relocation (10). */ HOWTO (R_AMD64_SECTION, /* type */ 0, /* rightshift */ - 1, /* size (0 = byte, 1 = short, 2 = long) */ + 2, /* size */ 16, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -376,7 +376,7 @@ static reloc_howto_type howto_table[] = /* 32-bit longword section relative relocation (11). */ HOWTO (R_AMD64_SECREL, /* type */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -396,7 +396,7 @@ static reloc_howto_type howto_table[] = #ifndef DONT_EXTEND_AMD64 HOWTO (R_AMD64_PCRQUAD, 0, /* rightshift */ - 4, /* size (0 = byte, 1 = short, 2 = long) */ + 8, /* size */ 64, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -413,7 +413,7 @@ static reloc_howto_type howto_table[] = /* Byte relocation (15). */ HOWTO (R_RELBYTE, /* type */ 0, /* rightshift */ - 0, /* size (0 = byte, 1 = short, 2 = long) */ + 1, /* size */ 8, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -427,7 +427,7 @@ static reloc_howto_type howto_table[] = /* 16-bit word relocation (16). */ HOWTO (R_RELWORD, /* type */ 0, /* rightshift */ - 1, /* size (0 = byte, 1 = short, 2 = long) */ + 2, /* size */ 16, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -441,7 +441,7 @@ static reloc_howto_type howto_table[] = /* 32-bit longword relocation (17). */ HOWTO (R_RELLONG, /* type */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ false, /* pc_relative */ 0, /* bitpos */ @@ -455,7 +455,7 @@ static reloc_howto_type howto_table[] = /* Byte PC relative relocation (18). */ HOWTO (R_PCRBYTE, /* type */ 0, /* rightshift */ - 0, /* size (0 = byte, 1 = short, 2 = long) */ + 1, /* size */ 8, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -469,7 +469,7 @@ static reloc_howto_type howto_table[] = /* 16-bit word PC relative relocation (19). */ HOWTO (R_PCRWORD, /* type */ 0, /* rightshift */ - 1, /* size (0 = byte, 1 = short, 2 = long) */ + 2, /* size */ 16, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ @@ -483,7 +483,7 @@ static reloc_howto_type howto_table[] = /* 32-bit longword PC relative relocation (20). */ HOWTO (R_PCRLONG, /* type */ 0, /* rightshift */ - 2, /* size (0 = byte, 1 = short, 2 = long) */ + 4, /* size */ 32, /* bitsize */ true, /* pc_relative */ 0, /* bitpos */ |