ppc/svp64: support shadd/shadduw instructions
authorDmitry Selyutin <ghostmansd@gmail.com>
Sun, 28 May 2023 22:04:55 +0000 (01:04 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Tue, 14 Nov 2023 19:10:32 +0000 (22:10 +0300)
gas/testsuite/gas/ppc/ppc.exp
gas/testsuite/gas/ppc/sadd.d [new file with mode: 0644]
gas/testsuite/gas/ppc/sadd.s [new file with mode: 0644]
opcodes/ppc-opc.c

index dabde01e0ef61ba4746a41d244cff7e6cfd0a890..6138de6a31a177c49f5d06cc6f7ed85d9c15f36a 100644 (file)
@@ -170,3 +170,4 @@ run_dump_test "bmask"
 run_dump_test "fptrans"
 run_dump_test "maddedu"
 run_dump_test "divmod2du"
+run_dump_test "sadd"
diff --git a/gas/testsuite/gas/ppc/sadd.d b/gas/testsuite/gas/ppc/sadd.d
new file mode 100644 (file)
index 0000000..a1c1124
--- /dev/null
@@ -0,0 +1,24 @@
+#as: -mlibresoc
+#objdump: -dr -Mlibresoc
+
+.*:     file format .*
+
+
+Disassembly of section \.text:
+0+ <\.text>:
+.*:\s+(5b e0 00 dc|dc 00 e0 5b)\s+sadd\s+r31,r0,r0,0
+.*:\s+(58 1f 00 dc|dc 00 1f 58)\s+sadd\s+r0,r31,r0,0
+.*:\s+(58 00 f8 dc|dc f8 00 58)\s+sadd\s+r0,r0,r31,0
+.*:\s+(58 00 06 dc|dc 06 00 58)\s+sadd\s+r0,r0,r0,3
+.*:\s+(5b e0 00 dd|dd 00 e0 5b)\s+sadd.\s+r31,r0,r0,0
+.*:\s+(58 1f 00 dd|dd 00 1f 58)\s+sadd.\s+r0,r31,r0,0
+.*:\s+(58 00 f8 dd|dd f8 00 58)\s+sadd.\s+r0,r0,r31,0
+.*:\s+(58 00 06 dd|dd 06 00 58)\s+sadd.\s+r0,r0,r0,3
+.*:\s+(5b e0 01 dc|dc 01 e0 5b)\s+sadduw\s+r31,r0,r0,0
+.*:\s+(58 1f 01 dc|dc 01 1f 58)\s+sadduw\s+r0,r31,r0,0
+.*:\s+(58 00 f9 dc|dc f9 00 58)\s+sadduw\s+r0,r0,r31,0
+.*:\s+(58 00 07 dc|dc 07 00 58)\s+sadduw\s+r0,r0,r0,3
+.*:\s+(5b e0 01 dd|dd 01 e0 5b)\s+sadduw.\s+r31,r0,r0,0
+.*:\s+(58 1f 01 dd|dd 01 1f 58)\s+sadduw.\s+r0,r31,r0,0
+.*:\s+(58 00 f9 dd|dd f9 00 58)\s+sadduw.\s+r0,r0,r31,0
+.*:\s+(58 00 07 dd|dd 07 00 58)\s+sadduw.\s+r0,r0,r0,3
diff --git a/gas/testsuite/gas/ppc/sadd.s b/gas/testsuite/gas/ppc/sadd.s
new file mode 100644 (file)
index 0000000..196edd6
--- /dev/null
@@ -0,0 +1,16 @@
+sadd 31,0,0,0
+sadd 0,31,0,0
+sadd 0,0,31,0
+sadd 0,0,0,3
+sadd. 31,0,0,0
+sadd. 0,31,0,0
+sadd. 0,0,31,0
+sadd. 0,0,0,3
+sadduw 31,0,0,0
+sadduw 0,31,0,0
+sadduw 0,0,31,0
+sadduw 0,0,0,3
+sadduw. 31,0,0,0
+sadduw. 0,31,0,0
+sadduw. 0,0,31,0
+sadduw. 0,0,0,3
index 23385cc24a17ada44b6fff9dfecd656f25a18722..d78f81c2f93ecb7ef69d4bd5f3bd9db9726a3df7 100644 (file)
@@ -3795,6 +3795,7 @@ const struct powerpc_operand powerpc_operands[] =
 #define RMC A_L + 1
 #define CY RMC
 #define ew RMC
+#define SHP1 RMC
   { 0x3, 9, NULL, NULL, 0 },
 
 #define R RMC + 1
@@ -7047,6 +7048,11 @@ const struct powerpc_opcode powerpc_opcodes[] = {
 
 {"svremap",    SVRM(22,57),    SVRM_MASK,      SVP64,  PPCVLE, {SVme, mi0, mi1, mi2, mo0, mo1, pst}},
 
+{"sadd",       ZRC(22,110,0),  Z2_MASK,        SVP64,  PPCVLE, {RT, RA, RB, SHP1}},
+{"sadd.",      ZRC(22,110,1),  Z2_MASK,        SVP64,  PPCVLE, {RT, RA, RB, SHP1}},
+{"sadduw",     ZRC(22,238,0),  Z2_MASK,        SVP64,  PPCVLE, {RT, RA, RB, SHP1}},
+{"sadduw.",    ZRC(22,238,1),  Z2_MASK,        SVP64,  PPCVLE, {RT, RA, RB, SHP1}},
+
 {"cprop",      XRC(22,398,0),  X_MASK, SVP64,  PPCVLE, {RT, RA, RB}},
 {"cprop.",     XRC(22,398,1),  X_MASK, SVP64,  PPCVLE, {RT, RA, RB}},