aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf-m10300.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2022-06-07 22:43:20 +0930
committerAlan Modra <amodra@gmail.com>2022-06-08 21:33:00 +0930
commitc94cb026628b831ef63e3455a66328749ff8a415 (patch)
tree57ee202b558b82c12ea74e0621928d80008f160d /bfd/elf-m10300.c
parent3418a349c624257d6a47a299901b9e996469acba (diff)
downloadgdb-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/elf-m10300.c')
-rw-r--r--bfd/elf-m10300.c70
1 files changed, 35 insertions, 35 deletions
diff --git a/bfd/elf-m10300.c b/bfd/elf-m10300.c
index 8184ce9..6e7c5e8 100644
--- a/bfd/elf-m10300.c
+++ b/bfd/elf-m10300.c
@@ -143,7 +143,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Dummy relocation. Does nothing. */
HOWTO (R_MN10300_NONE,
0,
- 3,
+ 0,
0,
false,
0,
@@ -157,7 +157,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Standard 32 bit reloc. */
HOWTO (R_MN10300_32,
0,
- 2,
+ 4,
32,
false,
0,
@@ -171,7 +171,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Standard 16 bit reloc. */
HOWTO (R_MN10300_16,
0,
- 1,
+ 2,
16,
false,
0,
@@ -185,7 +185,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Standard 8 bit reloc. */
HOWTO (R_MN10300_8,
0,
- 0,
+ 1,
8,
false,
0,
@@ -199,7 +199,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Standard 32bit pc-relative reloc. */
HOWTO (R_MN10300_PCREL32,
0,
- 2,
+ 4,
32,
true,
0,
@@ -213,7 +213,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Standard 16bit pc-relative reloc. */
HOWTO (R_MN10300_PCREL16,
0,
- 1,
+ 2,
16,
true,
0,
@@ -227,7 +227,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Standard 8 pc-relative reloc. */
HOWTO (R_MN10300_PCREL8,
0,
- 0,
+ 1,
8,
true,
0,
@@ -242,7 +242,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* GNU extension to record C++ vtable hierarchy. */
HOWTO (R_MN10300_GNU_VTINHERIT, /* type */
0, /* rightshift */
- 0, /* size (0 = byte, 1 = short, 2 = long) */
+ 1, /* size */
0, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -257,7 +257,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* GNU extension to record C++ vtable member usage */
HOWTO (R_MN10300_GNU_VTENTRY, /* type */
0, /* rightshift */
- 0, /* size (0 = byte, 1 = short, 2 = long) */
+ 1, /* size */
0, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -272,7 +272,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
/* Standard 24 bit reloc. */
HOWTO (R_MN10300_24,
0,
- 2,
+ 4,
24,
false,
0,
@@ -285,7 +285,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
false),
HOWTO (R_MN10300_GOTPC32, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
true, /* pc_relative */
0, /* bitpos */
@@ -299,7 +299,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GOTPC16, /* type */
0, /* rightshift */
- 1, /* size (0 = byte, 1 = short, 2 = long) */
+ 2, /* size */
16, /* bitsize */
true, /* pc_relative */
0, /* bitpos */
@@ -313,7 +313,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GOTOFF32, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -327,7 +327,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GOTOFF24, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
24, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -341,7 +341,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GOTOFF16, /* type */
0, /* rightshift */
- 1, /* size (0 = byte, 1 = short, 2 = long) */
+ 2, /* size */
16, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -355,7 +355,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_PLT32, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
true, /* pc_relative */
0, /* bitpos */
@@ -369,7 +369,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_PLT16, /* type */
0, /* rightshift */
- 1, /* size (0 = byte, 1 = short, 2 = long) */
+ 2, /* size */
16, /* bitsize */
true, /* pc_relative */
0, /* bitpos */
@@ -383,7 +383,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GOT32, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -397,7 +397,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GOT24, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
24, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -411,7 +411,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GOT16, /* type */
0, /* rightshift */
- 1, /* size (0 = byte, 1 = short, 2 = long) */
+ 2, /* size */
16, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -425,7 +425,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_COPY, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -439,7 +439,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_GLOB_DAT, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -453,7 +453,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_JMP_SLOT, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -467,7 +467,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_RELATIVE, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -481,7 +481,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_GD, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -495,7 +495,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_LD, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -509,7 +509,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_LDO, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -523,7 +523,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_GOTIE, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -537,7 +537,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_IE, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -551,7 +551,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_LE, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -565,7 +565,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_DTPMOD, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -579,7 +579,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_DTPOFF, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -593,7 +593,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_TLS_TPOFF, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -607,7 +607,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_SYM_DIFF, /* type */
0, /* rightshift */
- 2, /* size (0 = byte, 1 = short, 2 = long) */
+ 4, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */
@@ -621,7 +621,7 @@ static reloc_howto_type elf_mn10300_howto_table[] =
HOWTO (R_MN10300_ALIGN, /* type */
0, /* rightshift */
- 0, /* size (0 = byte, 1 = short, 2 = long) */
+ 1, /* size */
32, /* bitsize */
false, /* pc_relative */
0, /* bitpos */