Blame SOURCES/binutils-s390-arch14-insns.patch

129ae9
diff -rup binutils.orig/gas/config/tc-s390.c binutils-2.35.1/gas/config/tc-s390.c
129ae9
--- binutils.orig/gas/config/tc-s390.c	2021-02-19 11:44:24.240877612 +0000
129ae9
+++ binutils-2.35.1/gas/config/tc-s390.c	2021-02-19 11:46:05.222554434 +0000
129ae9
@@ -292,6 +292,8 @@ s390_parse_cpu (const char *         arg
129ae9
     { STRING_COMMA_LEN ("z14"), STRING_COMMA_LEN ("arch12"),
129ae9
       S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX },
129ae9
     { STRING_COMMA_LEN ("z15"), STRING_COMMA_LEN ("arch13"),
129ae9
+      S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX },
129ae9
+    { STRING_COMMA_LEN (""), STRING_COMMA_LEN ("arch14"),
129ae9
       S390_INSTR_FLAG_HTM | S390_INSTR_FLAG_VX }
129ae9
   };
129ae9
   static struct
129ae9
diff -rup binutils.orig/gas/doc/c-s390.texi binutils-2.35.1/gas/doc/c-s390.texi
129ae9
--- binutils.orig/gas/doc/c-s390.texi	2021-02-19 11:44:24.236877625 +0000
129ae9
+++ binutils-2.35.1/gas/doc/c-s390.texi	2021-02-19 11:46:05.223554431 +0000
129ae9
@@ -18,7 +18,7 @@ and eleven chip levels. The architecture
129ae9
 Architecture (ESA) and the newer z/Architecture mode. The chip levels
129ae9
 are g5 (or arch3), g6, z900 (or arch5), z990 (or arch6), z9-109, z9-ec
129ae9
 (or arch7), z10 (or arch8), z196 (or arch9), zEC12 (or arch10), z13
129ae9
-(or arch11), z14 (or arch12), and z15 (or arch13).
129ae9
+(or arch11), z14 (or arch12), z15 (or arch13), or arch14.
129ae9
 
129ae9
 @menu
129ae9
 * s390 Options::                Command-line Options.
129ae9
@@ -70,8 +70,9 @@ are recognized:
129ae9
 @code{z196} (or @code{arch9}),
129ae9
 @code{zEC12} (or @code{arch10}),
129ae9
 @code{z13} (or @code{arch11}),
129ae9
-@code{z14} (or @code{arch12}), and
129ae9
-@code{z15} (or @code{arch13}).
129ae9
+@code{z14} (or @code{arch12}),
129ae9
+@code{z15} (or @code{arch13}), and
129ae9
+@code{arch14}.
129ae9
 
129ae9
 Assembling an instruction that is not supported on the target
129ae9
 processor results in an error message.
129ae9
diff -rup binutils.orig/gas/testsuite/gas/s390/s390.exp binutils-2.35.1/gas/testsuite/gas/s390/s390.exp
129ae9
--- binutils.orig/gas/testsuite/gas/s390/s390.exp	2021-02-19 11:44:24.338877299 +0000
129ae9
+++ binutils-2.35.1/gas/testsuite/gas/s390/s390.exp	2021-02-19 11:46:05.223554431 +0000
129ae9
@@ -31,6 +31,7 @@ if [expr [istarget "s390-*-*"] ||  [ista
129ae9
     run_dump_test "zarch-z13" "{as -m64} {as -march=z13}"
129ae9
     run_dump_test "zarch-arch12" "{as -m64} {as -march=arch12}"
129ae9
     run_dump_test "zarch-arch13" "{as -m64} {as -march=arch13}"
129ae9
+    run_dump_test "zarch-arch14" "{as -m64} {as -march=arch14}"
129ae9
     run_dump_test "zarch-reloc" "{as -m64}"
129ae9
     run_dump_test "zarch-operands" "{as -m64} {as -march=z9-109}"
129ae9
     run_dump_test "zarch-machine" "{as -m64} {as -march=z900}"
129ae9
Only in binutils-2.35.1/gas/testsuite/gas/s390: zarch-arch14.d
129ae9
Only in binutils-2.35.1/gas/testsuite/gas/s390: zarch-arch14.s
129ae9
diff -rup binutils.orig/include/opcode/s390.h binutils-2.35.1/include/opcode/s390.h
129ae9
--- binutils.orig/include/opcode/s390.h	2021-02-19 11:44:23.926878617 +0000
129ae9
+++ binutils-2.35.1/include/opcode/s390.h	2021-02-19 11:46:05.223554431 +0000
129ae9
@@ -44,6 +44,7 @@ enum s390_opcode_cpu_val
129ae9
     S390_OPCODE_Z13,
129ae9
     S390_OPCODE_ARCH12,
129ae9
     S390_OPCODE_ARCH13,
129ae9
+    S390_OPCODE_ARCH14,
129ae9
     S390_OPCODE_MAXCPU
129ae9
   };
129ae9
 
129ae9
diff -rup binutils.orig/opcodes/s390-mkopc.c binutils-2.35.1/opcodes/s390-mkopc.c
129ae9
--- binutils.orig/opcodes/s390-mkopc.c	2021-02-19 11:44:23.947878550 +0000
129ae9
+++ binutils-2.35.1/opcodes/s390-mkopc.c	2021-02-19 11:46:05.223554431 +0000
129ae9
@@ -380,6 +380,8 @@ main (void)
129ae9
       else if (strcmp (cpu_string, "z15") == 0
129ae9
 	       || strcmp (cpu_string, "arch13") == 0)
129ae9
 	min_cpu = S390_OPCODE_ARCH13;
129ae9
+      else if (strcmp (cpu_string, "arch14") == 0)
129ae9
+	min_cpu = S390_OPCODE_ARCH14;
129ae9
       else {
129ae9
 	fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string);
129ae9
 	exit (1);
129ae9
Only in binutils-2.35.1/opcodes: s390-mkopc.c.orig
129ae9
diff -rup binutils.orig/opcodes/s390-opc.txt binutils-2.35.1/opcodes/s390-opc.txt
129ae9
--- binutils.orig/opcodes/s390-opc.txt	2021-02-19 11:44:23.943878563 +0000
129ae9
+++ binutils-2.35.1/opcodes/s390-opc.txt	2021-02-19 11:46:05.224554428 +0000
129ae9
@@ -2000,3 +2000,31 @@ e60000000052 vcvbg VRR_RV0UU "vector con
129ae9
 # Message Security Assist Extension 9
129ae9
 
129ae9
 b93a kdsa RRE_RR "compute digital signature authentication" arch13 zarch
129ae9
+
129ae9
+
129ae9
+# arch14 instructions
129ae9
+
129ae9
+e60000000074 vschp VRR_VVV0U0U " " arch14 zarch
129ae9
+e60000002074 vschsp VRR_VVV0U0 " " arch14 zarch
129ae9
+e60000003074 vschdp VRR_VVV0U0 " " arch14 zarch
129ae9
+e60000004074 vschxp VRR_VVV0U0 " " arch14 zarch
129ae9
+e6000000007c vscshp VRR_VVV " " arch14 zarch
129ae9
+e6000000007d vcsph VRR_VVV0U0 " " arch14 zarch
129ae9
+e60000000051 vclzdp VRR_VV0U2 " " arch14 zarch
129ae9
+e60000000070 vpkzr VRI_VVV0UU2 " " arch14 zarch
129ae9
+e60000000072 vsrpr VRI_VVV0UU2 " " arch14 zarch
129ae9
+e60000000054 vupkzh VRR_VV0U2 " " arch14 zarch
129ae9
+e6000000005c vupkzl VRR_VV0U2 " " arch14 zarch
129ae9
+
129ae9
+b93b nnpa RRE_00 " " arch14 zarch
129ae9
+e60000000056 vclfnh VRR_VV0UU2 " " arch14 zarch
129ae9
+e6000000005e vclfnl VRR_VV0UU2 " " arch14 zarch
129ae9
+e60000000075 vcrnf VRR_VVV0UU " " arch14 zarch
129ae9
+e6000000005d vcfn VRR_VV0UU2 " " arch14 zarch
129ae9
+e60000000055 vcnf VRR_VV0UU2 " " arch14 zarch
129ae9
+
129ae9
+b98B rdp RRF_RURR2 " " arch14 zarch optparm
129ae9
+
129ae9
+eb0000000071 lpswey SIY_URD " " arch14 zarch
129ae9
+b200 lbear S_RD " " arch14 zarch
129ae9
+b201 stbear S_RD " " arch14 zarch
129ae9
Only in binutils-2.35.1/opcodes: s390-opc.txt.orig