diff options
author | Andrea Corallo <andrea.corallo@arm.com> | 2021-06-08 19:03:29 +0200 |
---|---|---|
committer | Andrea Corallo <andrea.corallo@arm.com> | 2021-07-26 14:18:24 +0200 |
commit | 5c43020d83f9f3529e71fcd19f3f78e0abcbe5ed (patch) | |
tree | ed692f9049d85590fb5d60e1601aa556b34d9079 /opcodes/arm-dis.c | |
parent | be05908c0c043bac81134da8beb3415996ae2416 (diff) | |
download | gdb-5c43020d83f9f3529e71fcd19f3f78e0abcbe5ed.zip gdb-5c43020d83f9f3529e71fcd19f3f78e0abcbe5ed.tar.gz gdb-5c43020d83f9f3529e71fcd19f3f78e0abcbe5ed.tar.bz2 |
PATCH [9/10] arm: add 'pacg' instruction for Armv8.1-M pacbti extension
gas/
2021-06-11 Andrea Corallo <andrea.corallo@arm.com>
* config/tc-arm.c (T16_32_TAB): Add '_pacg'.
(do_t_pacbti_pacg): New function.
(insns): Define 'pacg' insn.
* testsuite/gas/arm/armv8_1-m-pacbti.d: Add 'pacg' test.
* testsuite/gas/arm/armv8_1-m-pacbti.s: Likewise.
opcodes/
2021-06-11 Andrea Corallo <andrea.corallo@arm.com>
* arm-dis.c (thumb32_opcodes): Add 'pacg'.
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r-- | opcodes/arm-dis.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index d54cfa8..faabd42 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -4666,6 +4666,8 @@ static const struct opcode32 thumb32_opcodes[] = 0xf3af801d, 0xffffffff, "pac\tr12, lr, sp"}, {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN), 0xf3af800d, 0xffffffff, "pacbti\tr12, lr, sp"}, + {ARM_FEATURE_CORE_HIGH_HIGH (ARM_EXT3_PACBTI), + 0xfb60f000, 0xfff0f0f0, "pacg%c\t%8-11r, %16-19r, %0-3r"}, /* Armv8.1-M Mainline and Armv8.1-M Mainline Security Extensions instructions. */ |