diff options
author | Andrea Corallo <andrea.corallo@arm.com> | 2021-05-19 09:00:14 +0200 |
---|---|---|
committer | Andrea Corallo <andrea.corallo@arm.com> | 2021-07-26 14:18:24 +0200 |
commit | e43ca2cbaea6dcffa5e1c8ca052da36642336857 (patch) | |
tree | a3103a94ec72fd5c0e7580bc41c8f3cb625add60 /opcodes | |
parent | f1e1d7f305e9c6f76297863ac454b09ceee5e4be (diff) | |
download | gdb-e43ca2cbaea6dcffa5e1c8ca052da36642336857.zip gdb-e43ca2cbaea6dcffa5e1c8ca052da36642336857.tar.gz gdb-e43ca2cbaea6dcffa5e1c8ca052da36642336857.tar.bz2 |
PATCH [3/10] arm: add 'aut' instruction for Armv8.1-M pacbti extension
gas/
2021-06-11 Andrea Corallo <andrea.corallo@arm.com>
* config/tc-arm.c (insns): Add 'aut.'
(T16_32_TAB): Add '_aut'.
* testsuite/gas/arm/armv8_1-m-pacbti-bad.l: Add 'aut' tests.
* testsuite/gas/arm/armv8_1-m-pacbti-bad.s: Likewise.
* testsuite/gas/arm/armv8_1-m-pacbti.d: Likewise.
* 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 'aut'.
Diffstat (limited to 'opcodes')
-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 34b0ace..8eeb303 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -4655,6 +4655,8 @@ static const struct opcode32 thumb32_opcodes[] = /* Arm v8.1-M Mainline Pointer Authentication and Branch Target Identification Extension. */ {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN), + 0xf3af802d, 0xffffffff, "aut\tr12, lr, sp"}, + {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN), 0xf3af800f, 0xffffffff, "bti"}, {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN), 0xf3af800d, 0xffffffff, "pacbti\tr12, lr, sp"}, |