]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
aarch64: Add LSE128 instruction operand support
authorVictor Do Nascimento <victor.donascimento@arm.com>
Mon, 30 Oct 2023 11:47:23 +0000 (11:47 +0000)
committerVictor Do Nascimento <victor.donascimento@arm.com>
Tue, 7 Nov 2023 21:53:59 +0000 (21:53 +0000)
Given the particular encoding of the LSE128 instructions, create the
necessary shared input+output operand register description and
handling in the code to allow for the encoding of the LSE128 128-bit
atomic operations.

gas/ChangeLog:

* config/tc-aarch64.c (parse_operands):

include/ChangeLog:

* opcode/aarch64.h (enum aarch64_opnd):

opcodes/ChangeLog:

* aarch64-opc.c (fields):
(aarch64_print_operand):
* aarch64-opc.h (enum aarch64_field_kind):
* aarch64-tbl.h (AARCH64_OPERANDS):

gas/config/tc-aarch64.c
include/opcode/aarch64.h
opcodes/aarch64-opc.c
opcodes/aarch64-opc.h
opcodes/aarch64-tbl.h

index c6566e111289983728a009743ac8e2bfd824f96e..4367455aa23182a46fd0a2886a9f3a3472c901ef 100644 (file)
@@ -7863,6 +7863,11 @@ parse_operands (char *str, const aarch64_opcode *opcode)
          po_char_or_fail ('!');
          break;
 
+       case AARCH64_OPND_LSE128_Rt:
+       case AARCH64_OPND_LSE128_Rt2:
+         po_int_fp_reg_or_fail (REG_TYPE_R_64);
+         break;
+
        default:
          as_fatal (_("unhandled operand code %d"), operands[i]);
        }
index c0817604380972147fc3ad3cc2fd8cc7672972e1..1ede57094f8fc343d4fe960cd0e97d743e528238 100644 (file)
@@ -521,6 +521,8 @@ enum aarch64_opnd
   AARCH64_OPND_BARRIER_PSB,    /* Barrier operand for PSB.  */
   AARCH64_OPND_BARRIER_GCSB,   /* Barrier operand for GCSB.  */
   AARCH64_OPND_BTI_TARGET,     /* BTI {<target>}.  */
+  AARCH64_OPND_LSE128_Rt,      /* LSE128 <Xt1>.  */
+  AARCH64_OPND_LSE128_Rt2,     /* LSE128 <Xt2>.  */
   AARCH64_OPND_SVE_ADDR_RI_S4x16,   /* SVE [<Xn|SP>, #<simm4>*16].  */
   AARCH64_OPND_SVE_ADDR_RI_S4x32,   /* SVE [<Xn|SP>, #<simm4>*32].  */
   AARCH64_OPND_SVE_ADDR_RI_S4xVL,   /* SVE [<Xn|SP>, #<simm4>, MUL VL].  */
index 336a49feb6873da43eaaf4ab99396c517e99c0c9..5a0f0e9f52e31e8a0823e544122f4e65c2541570 100644 (file)
@@ -226,6 +226,8 @@ const aarch64_field fields[] =
     { 10,  8 }, /* CSSC_imm8.  */
     { 11,  1 },        /* H: in advsimd scalar x indexed element instructions.  */
     { 21,  1 },        /* L: in advsimd scalar x indexed element instructions.  */
+    {  0,  5 },        /* LSE128_Rt: Shared input+output operand register.  */
+    { 16,  5 },        /* LSE128_Rt2: Shared input+output operand register 2.  */
     { 20,  1 },        /* M: in advsimd scalar x indexed element instructions.  */
     { 22,  1 },        /* N: in logical (immediate) instructions.  */
     { 30,  1 },        /* Q: in most AdvSIMD instructions.  */
@@ -3770,6 +3772,8 @@ aarch64_print_operand (char *buf, size_t size, bfd_vma pc,
     case AARCH64_OPND_Rt_SYS:
     case AARCH64_OPND_PAIRREG:
     case AARCH64_OPND_SVE_Rm:
+    case AARCH64_OPND_LSE128_Rt:
+    case AARCH64_OPND_LSE128_Rt2:
       /* The optional-ness of <Xt> in e.g. IC <ic_op>{, <Xt>} is determined by
         the <ic_op>, therefore we use opnd->present to override the
         generic optional-ness information.  */
index 75d2feb02eae301db20770e32a590c7326b27e2d..cf217e8637675a289a9e558f67606277229c5774 100644 (file)
@@ -36,6 +36,8 @@ enum aarch64_field_kind
   FLD_CSSC_imm8,
   FLD_H,
   FLD_L,
+  FLD_LSE128_Rt,
+  FLD_LSE128_Rt2,
   FLD_M,
   FLD_N,
   FLD_Q,
index e624b855d1bab9d501ef7c333812c6fac39495cd..bc385427016840fec21732f14bb169f59b50eb48 100644 (file)
@@ -6308,6 +6308,8 @@ const struct aarch64_opcode aarch64_opcode_table[] =
       "the GCSB option name DSYNC")                                    \
     Y(SYSTEM, hint, "BTI_TARGET", 0, F (),                             \
       "BTI targets j/c/jc")                                            \
+    Y(INT_REG, regno, "LSE128_Rt", 0, F(FLD_LSE128_Rt), "an integer register") \
+    Y(INT_REG, regno, "LSE128_Rt2", 0, F(FLD_LSE128_Rt2), "an integer register") \
     Y(ADDRESS, sve_addr_ri_s4, "SVE_ADDR_RI_S4x16",                    \
       4 << OPD_F_OD_LSB, F(FLD_Rn),                                    \
       "an address with a 4-bit signed offset, multiplied by 16")       \