PATCH [7/10] arm: add 'bxaut' instruction for Armv8.1-M pacbti extension
authorAndrea Corallo <andrea.corallo@arm.com>
Wed, 19 May 2021 13:04:24 +0000 (15:04 +0200)
committerAndrea Corallo <andrea.corallo@arm.com>
Mon, 26 Jul 2021 12:18:24 +0000 (14:18 +0200)
gas/
2021-06-11  Andrea Corallo  <andrea.corallo@arm.com>

* config/tc-arm.c (T16_32_TAB): Add '_bxaut'.
(do_t_pacbti_nonop): New function.
(insns): Define 'bxaut' insn.
* testsuite/gas/arm/armv8_1-m-pacbti.d: Add 'bxaut' 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 'bxaut'.

gas/config/tc-arm.c
gas/testsuite/gas/arm/armv8_1-m-pacbti.d
gas/testsuite/gas/arm/armv8_1-m-pacbti.s
opcodes/arm-dis.c

index 3ec353abf789201e9575dd898568c0d9c350d349..30ef199124903ceae445e3be510f25e544ea42fc 100644 (file)
@@ -11463,6 +11463,7 @@ encode_thumb32_addr_mode (int i, bool is_t, bool is_d)
   X(_bflx,  0000, f070e001),                   \
   X(_bic,   4380, ea200000),                   \
   X(_bics,  4380, ea300000),                   \
+  X(_bxaut, 0000, fb500f10),                   \
   X(_cinc,  0000, ea509000),                   \
   X(_cinv,  0000, ea50a000),                   \
   X(_cmn,   42c0, eb100f00),                   \
@@ -22343,6 +22344,18 @@ do_t_pacbti (void)
   inst.instruction = THUMB_OP32 (inst.instruction);
 }
 
+static void
+do_t_pacbti_nonop (void)
+{
+  constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, pacbti_ext),
+             _(BAD_PACBTI));
+
+  inst.instruction = THUMB_OP32 (inst.instruction);
+  inst.instruction |= inst.operands[0].reg << 12;
+  inst.instruction |= inst.operands[1].reg << 16;
+  inst.instruction |= inst.operands[2].reg;
+}
+
 \f
 /* Overall per-instruction processing. */
 
@@ -26333,6 +26346,7 @@ static const struct asm_opcode insns[] =
 #define THUMB_VARIANT & arm_ext_v8_1m_main
  toU("aut",   _aut, 3, (R12, LR, SP), t_pacbti),
  ToU("bti",   f3af800f, 0, (), noargs),
+ toU("bxaut", _bxaut, 3, (RR, RR, RR), t_pacbti_nonop),
  toU("pac",   _pac,   3, (R12, LR, SP), t_pacbti),
  toU("pacbti", _pacbti, 3, (R12, LR, SP), t_pacbti),
  toU("cinc",  _cinc,  3, (RRnpcsp, RR_ZR, COND),       t_cond),
index 9df123af8eb458646b83590a41e4c3fbbae8bbb7..411454a5fd1b228a7dbe1e7a3034b8729f1531cd 100644 (file)
@@ -1,6 +1,6 @@
 #name: Valid Armv8.1-M pointer authentication and branch target identification extention
 #source: armv8_1-m-pacbti.s
-#as: -march=armv8.1-m.main
+#as: -march=armv8.1-m.main+pacbti
 #objdump: -dr --prefix-addresses --show-raw-insn
 
 .*: +file format .*arm.*
@@ -10,4 +10,5 @@ Disassembly of section .text:
 0[0-9a-f]+ <[^>]+> f3af 800d   pacbti  r12, lr, sp
 0[0-9a-f]+ <[^>]+> f3af 802d   aut     r12, lr, sp
 0[0-9a-f]+ <[^>]+> f3af 801d   pac     r12, lr, sp
+0[0-9a-f]+ <[^>]+> fb54 3f15   bxaut   r3, r4, r5
 #...
index 38000c3fc0d9399be57c5029bff70980ee65f613..22da2cefb4e33629a714c2d42b38308c7eb15cb3 100644 (file)
@@ -6,3 +6,4 @@
        pacbti  r12, lr, sp
        aut     r12, lr, sp
        pac     r12, lr, sp
+       bxaut   r3, r4, r5
index 930fbbfa3855f4a7acbc0703edf26dc6b19acaef..1d183605030f689c1469774e4037f201c559e8ec 100644 (file)
@@ -4658,6 +4658,8 @@ static const struct opcode32 thumb32_opcodes[] =
    0xf3af802d, 0xffffffff, "aut\tr12, lr, sp"},
   {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN),
    0xf3af800f, 0xffffffff, "bti"},
+  {ARM_FEATURE_CORE_HIGH_HIGH (ARM_EXT3_PACBTI),
+   0xfb500f10, 0xfff00ff0, "bxaut%c\t%12-15r, %16-19r, %0-3r"},
   {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN),
    0xf3af801d, 0xffffffff, "pac\tr12, lr, sp"},
   {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8_1M_MAIN),