diff options
author | Paul Brook <paul@codesourcery.com> | 2007-06-05 22:02:47 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2007-06-05 22:02:47 +0000 |
commit | 79d4951621eec323a92ad518f474f7ccee143aa3 (patch) | |
tree | 21d6ecc0efc75138fe7a6e7c84577cff7e2d10de /opcodes | |
parent | fd20f75b0c15ed18549120f8b137e520726650ee (diff) | |
download | gdb-79d4951621eec323a92ad518f474f7ccee143aa3.zip gdb-79d4951621eec323a92ad518f474f7ccee143aa3.tar.gz gdb-79d4951621eec323a92ad518f474f7ccee143aa3.tar.bz2 |
2007-06-05 Paul Brook <paul@codesourcery.com>
gas/
* config/tc-arm.c (insns): Correct Thumb-2 ldrd/strd opcodes.
gas/testsuite/
* gas/arm/thumb32.d: Add writeback addressing mode tests.
* gas/arm/thumb32.s: Update expected output.
opcodes/
* arm-dis.c (thumb32_opcodes): Display writeback ldrd/strd addresses.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/arm-dis.c | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 6cb2ef4..b664be9 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2007-06-05 Paul Brook <paul@codesourcery.com> + + * arm-dis.c (thumb32_opcodes): Display writeback ldrd/strd addresses. + 2007-05-24 Steve Ellcey <sje@cup.hp.com> * Makefile.in: Regnerate. diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index cf67b5f..c39aa51 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -1403,8 +1403,10 @@ static const struct opcode32 thumb32_opcodes[] = {ARM_EXT_V6T2, 0xe9100000, 0xffd00000, "ldmdb%c\t%16-19r%21'!, %m"}, {ARM_EXT_V6T2, 0xe9c00000, 0xffd000ff, "strd%c\t%12-15r, %8-11r, [%16-19r]"}, {ARM_EXT_V6T2, 0xe9d00000, 0xffd000ff, "ldrd%c\t%12-15r, %8-11r, [%16-19r]"}, - {ARM_EXT_V6T2, 0xe9400000, 0xff500000, "strd%c\t%12-15r, %8-11r, [%16-19r, #%23`-%0-7W]"}, - {ARM_EXT_V6T2, 0xe9500000, 0xff500000, "ldrd%c\t%12-15r, %8-11r, [%16-19r, #%23`-%0-7W]"}, + {ARM_EXT_V6T2, 0xe9400000, 0xff500000, "strd%c\t%12-15r, %8-11r, [%16-19r, #%23`-%0-7W]%21'!"}, + {ARM_EXT_V6T2, 0xe9500000, 0xff500000, "ldrd%c\t%12-15r, %8-11r, [%16-19r, #%23`-%0-7W]%21'!"}, + {ARM_EXT_V6T2, 0xe8600000, 0xff700000, "strd%c\t%12-15r, %8-11r, [%16-19r], #%23`-%0-7W"}, + {ARM_EXT_V6T2, 0xe8700000, 0xff700000, "ldrd%c\t%12-15r, %8-11r, [%16-19r], #%23`-%0-7W"}, {ARM_EXT_V6T2, 0xf8000000, 0xff100000, "str%w%c.w\t%12-15r, %a"}, {ARM_EXT_V6T2, 0xf8100000, 0xfe100000, "ldr%w%c.w\t%12-15r, %a"}, |