From c94cb026628b831ef63e3455a66328749ff8a415 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 7 Jun 2022 22:43:20 +0930 Subject: 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. --- bfd/coff-arm.c | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'bfd/coff-arm.c') diff --git a/bfd/coff-arm.c b/bfd/coff-arm.c index 12958e4..f9e117a 100644 --- a/bfd/coff-arm.c +++ b/bfd/coff-arm.c @@ -221,7 +221,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = #ifdef ARM_WINCE HOWTO (ARM_26D, 2, - 2, + 4, 24, true, 0, @@ -234,7 +234,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_32, 0, - 2, + 4, 32, false, 0, @@ -247,7 +247,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_RVA32, 0, - 2, + 4, 32, false, 0, @@ -260,7 +260,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_26, 2, - 2, + 4, 24, true, 0, @@ -273,7 +273,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_THUMB12, 1, - 1, + 2, 11, true, 0, @@ -295,7 +295,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = EMPTY_HOWTO (-1), HOWTO (ARM_SECTION, 0, - 1, + 2, 16, false, 0, @@ -308,7 +308,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_SECREL, 0, - 2, + 4, 32, false, 0, @@ -322,7 +322,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = #else /* not ARM_WINCE */ HOWTO (ARM_8, 0, - 0, + 1, 8, false, 0, @@ -335,7 +335,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_16, 0, - 1, + 2, 16, false, 0, @@ -348,7 +348,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_32, 0, - 2, + 4, 32, false, 0, @@ -361,7 +361,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_26, 2, - 2, + 4, 24, true, 0, @@ -374,7 +374,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_DISP8, 0, - 0, + 1, 8, true, 0, @@ -387,7 +387,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = true), HOWTO (ARM_DISP16, 0, - 1, + 2, 16, true, 0, @@ -400,7 +400,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = true), HOWTO (ARM_DISP32, 0, - 2, + 4, 32, true, 0, @@ -413,7 +413,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = true), HOWTO (ARM_26D, 2, - 2, + 4, 24, false, 0, @@ -428,7 +428,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = EMPTY_HOWTO (-1), HOWTO (ARM_NEG16, 0, - -1, + -2, 16, false, 0, @@ -441,7 +441,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = false), HOWTO (ARM_NEG32, 0, - -2, + -4, 32, false, 0, @@ -454,7 +454,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = false), HOWTO (ARM_RVA32, 0, - 2, + 4, 32, false, 0, @@ -467,7 +467,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_THUMB9, 1, - 1, + 2, 8, true, 0, @@ -480,7 +480,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_THUMB12, 1, - 1, + 2, 11, true, 0, @@ -493,7 +493,7 @@ static reloc_howto_type aoutarm_std_reloc_howto[] = PCRELOFFSET), HOWTO (ARM_THUMB23, 1, - 2, + 4, 22, true, 0, @@ -1241,7 +1241,7 @@ coff_arm_relocate_section (bfd *output_bfd, static reloc_howto_type fake_arm26_reloc = HOWTO (ARM_26, 2, - 2, + 4, 24, true, 0, -- cgit v1.1