diff options
author | Paul Brook <paul@codesourcery.com> | 2005-07-29 17:28:33 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2005-07-29 17:28:33 +0000 |
commit | 92e90b6eb3b2c77ecc6b93fe96f0896b24039ec2 (patch) | |
tree | c9de5afa742e0bd95d6056789c136d85e1a6d16c /bfd | |
parent | 0facbdf5c2ef772b4c43b7041b72e32c8210eab9 (diff) | |
download | gdb-92e90b6eb3b2c77ecc6b93fe96f0896b24039ec2.zip gdb-92e90b6eb3b2c77ecc6b93fe96f0896b24039ec2.tar.gz gdb-92e90b6eb3b2c77ecc6b93fe96f0896b24039ec2.tar.bz2 |
2005-07-29 Paul Brook <paul@codesourcery.com>
bfd/
* reloc.c (BFD_RELOC_ARM_T32_IMM12): Add.
* bfd-in2.h: Regeenrate.
* libbfd.h: Regenerate.
gas/
* config/tc-arm.c (parse_tb): New function.
(enum operand_parse_code): Add OP_TB.
(parse_operands): Handle OP_TB.
(do_t_add_sub_w, do_t_tb): New functions.
(insns): Add entries for addw, subw, tbb and tbh.
(md_apply_fix): Handle BFD_RELOC_ARM_T32_IMM12.
gas/testsuite/
* gas/arm/thumb32.s: Add tests for addw, subw, tbb and tbh.
* gas/arm/thumb32.d: Ditto.
opcodes/
* arm-dis.c (thumb32_opc): Fix addressing mode for tbh.
(print_insn_thumb32): Fix decoding of thumb2 'I' operands.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/bfd-in2.h | 1 | ||||
-rw-r--r-- | bfd/libbfd.h | 1 | ||||
-rw-r--r-- | bfd/reloc.c | 2 |
4 files changed, 10 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 0728b7f..c016e7f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2005-07-29 Paul Brook <paul@codesourcery.com> + + * reloc.c (BFD_RELOC_ARM_T32_IMM12): Add. + * bfd-in2.h: Regeenrate. + * libbfd.h: Regenerate. + 2005-07-29 Pavel Kankovsky <peak@argo.troja.mff.cuni.cz> * peXXigen.c (pe_print_edata): Compute the size of the export diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index a936176..2db99a4 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -2880,6 +2880,7 @@ pc-relative or some form of GOT-indirect relocation. */ BFD_RELOC_ARM_IMMEDIATE, BFD_RELOC_ARM_ADRL_IMMEDIATE, BFD_RELOC_ARM_T32_IMMEDIATE, + BFD_RELOC_ARM_T32_IMM12, BFD_RELOC_ARM_SHIFT_IMM, BFD_RELOC_ARM_SMI, BFD_RELOC_ARM_SWI, diff --git a/bfd/libbfd.h b/bfd/libbfd.h index 6e73163..51aa3c9 100644 --- a/bfd/libbfd.h +++ b/bfd/libbfd.h @@ -1211,6 +1211,7 @@ static const char *const bfd_reloc_code_real_names[] = { "@@uninitialized@@", "BFD_RELOC_ARM_IMMEDIATE", "BFD_RELOC_ARM_ADRL_IMMEDIATE", "BFD_RELOC_ARM_T32_IMMEDIATE", + "BFD_RELOC_ARM_T32_IMM12", "BFD_RELOC_ARM_SHIFT_IMM", "BFD_RELOC_ARM_SMI", "BFD_RELOC_ARM_SWI", diff --git a/bfd/reloc.c b/bfd/reloc.c index 671746f..7c2ccdb 100644 --- a/bfd/reloc.c +++ b/bfd/reloc.c @@ -2736,6 +2736,8 @@ ENUMX ENUMX BFD_RELOC_ARM_T32_IMMEDIATE ENUMX + BFD_RELOC_ARM_T32_IMM12 +ENUMX BFD_RELOC_ARM_SHIFT_IMM ENUMX BFD_RELOC_ARM_SMI |