ppc: support dsld instruction
authorDmitry Selyutin <ghostmansd@gmail.com>
Sun, 28 May 2023 22:04:57 +0000 (01:04 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Tue, 14 Nov 2023 19:53:36 +0000 (22:53 +0300)
gas/testsuite/gas/ppc/dsld.d [new file with mode: 0644]
gas/testsuite/gas/ppc/dsld.s [new file with mode: 0644]
gas/testsuite/gas/ppc/ppc.exp
opcodes/ppc-opc.c

diff --git a/gas/testsuite/gas/ppc/dsld.d b/gas/testsuite/gas/ppc/dsld.d
new file mode 100644 (file)
index 0000000..bd39d49
--- /dev/null
@@ -0,0 +1,16 @@
+#as: -mlibresoc
+#objdump: -dr -Mlibresoc
+
+.*:     file format .*
+
+
+Disassembly of section \.text:
+0+ <\.text>:
+.*:\s+(13 e0 00 34|34 00 e0 13)\s+dsld\s+r31,r0,r0,r0
+.*:\s+(10 1f 00 34|34 00 1f 10)\s+dsld\s+r0,r31,r0,r0
+.*:\s+(10 00 f8 34|34 f8 00 10)\s+dsld\s+r0,r0,r31,r0
+.*:\s+(10 00 07 f4|f4 07 00 10)\s+dsld\s+r0,r0,r0,r31
+.*:\s+(13 e0 00 35|35 00 e0 13)\s+dsld.\s+r31,r0,r0,r0
+.*:\s+(10 1f 00 35|35 00 1f 10)\s+dsld.\s+r0,r31,r0,r0
+.*:\s+(10 00 f8 35|35 f8 00 10)\s+dsld.\s+r0,r0,r31,r0
+.*:\s+(10 00 07 f5|f5 07 00 10)\s+dsld.\s+r0,r0,r0,r31
diff --git a/gas/testsuite/gas/ppc/dsld.s b/gas/testsuite/gas/ppc/dsld.s
new file mode 100644 (file)
index 0000000..4bd8aca
--- /dev/null
@@ -0,0 +1,8 @@
+dsld 31,0,0,0
+dsld 0,31,0,0
+dsld 0,0,31,0
+dsld 0,0,0,31
+dsld. 31,0,0,0
+dsld. 0,31,0,0
+dsld. 0,0,31,0
+dsld. 0,0,0,31
index 6138de6a31a177c49f5d06cc6f7ed85d9c15f36a..6f41bb48b35275a896567e4924907744711c7bd4 100644 (file)
@@ -171,3 +171,4 @@ run_dump_test "fptrans"
 run_dump_test "maddedu"
 run_dump_test "divmod2du"
 run_dump_test "sadd"
+run_dump_test "dsld"
index e9f9d3ac97130875f0c044ed4e003885f0976f55..7f4486a2ae47872b39e78b203aa8c8ae7e8fdf97 100644 (file)
@@ -4957,6 +4957,13 @@ const unsigned int num_powerpc_operands = ARRAY_SIZE (powerpc_operands);
    | (((uint64_t)(xop)) & 0x1f))
 #define BM2_MASK       BM2 (0x3f, 0x1f)
 
+/* An VA2 form instruction. */
+#define VA2(op, xop, rc)                       \
+  (OP (op)                                     \
+   | ((((uint64_t)(xop)) & 0x1f) << 1)         \
+   | (((uint64_t)(rc)) & 1))
+#define VA2_MASK       VA2 (0x3f, 0x1f, 0x1)
+
 /* The BO encodings used in extended conditional branch mnemonics.  */
 #define BODNZF (0x0)
 #define BODNZFP        (0x1)
@@ -5207,6 +5214,8 @@ const struct powerpc_opcode powerpc_opcodes[] = {
 {"machhwu.",   XO (4,  12,0,1), XO_MASK,    MULHW,     0,              {RT, RA, RB}},
 {"vextduhvlx", VX (4,  26),    VXRC_MASK,   POWER10,   0,              {VD, VA, VB, RC}},
 {"ps_muls1",   A  (4,  13,0),  AFRB_MASK,   PPCPS,     0,              {FRT, FRA, FRC}},
+{"dsld",       VA2(4,26,0),    VA2_MASK,    SFFS,      PPCVLE,         {RT, RA, RB, RC}},
+{"dsld.",      VA2(4,26,1),    VA2_MASK,    SFFS,      PPCVLE,         {RT, RA, RB, RC}},
 {"vextduhvrx", VX (4,  27),    VXRC_MASK,   POWER10,   0,              {VD, VA, VB, RC}},
 {"ps_muls1.",  A  (4,  13,1),  AFRB_MASK,   PPCPS,     0,              {FRT, FRA, FRC}},
 {"vextduwvlx", VX (4,  28),    VXRC_MASK,   POWER10,   0,              {VD, VA, VB, RC}},