-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[SystemZ] Add extended mnemonics tests. #91733
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@llvm/pr-subscribers-mc @llvm/pr-subscribers-backend-systemz Author: Dominik Steenken (dominik-steenken) ChangesThis adds tests for some extended mnemonics of load, branch, and compare-and-trap instructions. Patch is 21.76 KiB, truncated to 20.00 KiB below, full version: https://github.com/llvm/llvm-project/pull/91733.diff 4 Files Affected:
diff --git a/llvm/test/MC/SystemZ/insn-good-z13.s b/llvm/test/MC/SystemZ/insn-good-z13.s
index 37d80c34289b4..66975da38c2c6 100644
--- a/llvm/test/MC/SystemZ/insn-good-z13.s
+++ b/llvm/test/MC/SystemZ/insn-good-z13.s
@@ -156,6 +156,19 @@
lochino %r11, 32512
lochi %r11, 32512, 15
+#CHECK: lochim %r10, 2766 # encoding: [0xec,0xa4,0x0a,0xce,0x00,0x42]
+#CHECK: lochinm %r11, 6862 # encoding: [0xec,0xbb,0x1a,0xce,0x00,0x42]
+#CHECK: lochip %r12, 10958 # encoding: [0xec,0xc2,0x2a,0xce,0x00,0x42]
+#CHECK: lochiz %r13, 15054 # encoding: [0xec,0xd8,0x3a,0xce,0x00,0x42]
+#CHECK: lochinp %r14, 19150 # encoding: [0xec,0xed,0x4a,0xce,0x00,0x42]
+#CHECK: lochinz %r15, 23246 # encoding: [0xec,0xf7,0x5a,0xce,0x00,0x42]
+ lochim %r10, 2766
+ lochinm %r11, 6862
+ lochip %r12, 10958
+ lochiz %r13, 15054
+ lochinp %r14, 19150
+ lochinz %r15, 23246
+
#CHECK: locghi %r11, 42, 0 # encoding: [0xec,0xb0,0x00,0x2a,0x00,0x46]
#CHECK: locghio %r11, 42 # encoding: [0xec,0xb1,0x00,0x2a,0x00,0x46]
#CHECK: locghih %r11, 42 # encoding: [0xec,0xb2,0x00,0x2a,0x00,0x46]
@@ -190,6 +203,19 @@
locghino %r11, 32512
locghi %r11, 32512, 15
+#CHECK: locghim %r10, 2766 # encoding: [0xec,0xa4,0x0a,0xce,0x00,0x46]
+#CHECK: locghinm %r11, 6862 # encoding: [0xec,0xbb,0x1a,0xce,0x00,0x46]
+#CHECK: locghip %r12, 10958 # encoding: [0xec,0xc2,0x2a,0xce,0x00,0x46]
+#CHECK: locghiz %r13, 15054 # encoding: [0xec,0xd8,0x3a,0xce,0x00,0x46]
+#CHECK: locghinp %r14, 19150 # encoding: [0xec,0xed,0x4a,0xce,0x00,0x46]
+#CHECK: locghinz %r15, 23246 # encoding: [0xec,0xf7,0x5a,0xce,0x00,0x46]
+ locghim %r10, 2766
+ locghinm %r11, 6862
+ locghip %r12, 10958
+ locghiz %r13, 15054
+ locghinp %r14, 19150
+ locghinz %r15, 23246
+
#CHECK: lochhi %r11, 42, 0 # encoding: [0xec,0xb0,0x00,0x2a,0x00,0x4e]
#CHECK: lochhio %r11, 42 # encoding: [0xec,0xb1,0x00,0x2a,0x00,0x4e]
#CHECK: lochhih %r11, 42 # encoding: [0xec,0xb2,0x00,0x2a,0x00,0x4e]
@@ -224,6 +250,19 @@
lochhino %r11, 32512
lochhi %r11, 32512, 15
+#CHECK: lochhim %r10, 2766 # encoding: [0xec,0xa4,0x0a,0xce,0x00,0x4e]
+#CHECK: lochhinm %r11, 6862 # encoding: [0xec,0xbb,0x1a,0xce,0x00,0x4e]
+#CHECK: lochhip %r12, 10958 # encoding: [0xec,0xc2,0x2a,0xce,0x00,0x4e]
+#CHECK: lochhiz %r13, 15054 # encoding: [0xec,0xd8,0x3a,0xce,0x00,0x4e]
+#CHECK: lochhinp %r14, 19150 # encoding: [0xec,0xed,0x4a,0xce,0x00,0x4e]
+#CHECK: lochhinz %r15, 23246 # encoding: [0xec,0xf7,0x5a,0xce,0x00,0x4e]
+ lochhim %r10, 2766
+ lochhinm %r11, 6862
+ lochhip %r12, 10958
+ lochhiz %r13, 15054
+ lochhinp %r14, 19150
+ lochhinz %r15, 23246
+
#CHECK: locfh %r0, 0, 0 # encoding: [0xeb,0x00,0x00,0x00,0x00,0xe0]
#CHECK: locfh %r0, 0, 15 # encoding: [0xeb,0x0f,0x00,0x00,0x00,0xe0]
#CHECK: locfh %r0, -524288, 0 # encoding: [0xeb,0x00,0x00,0x00,0x80,0xe0]
diff --git a/llvm/test/MC/SystemZ/insn-good-z14.s b/llvm/test/MC/SystemZ/insn-good-z14.s
index 385fd3ce7d426..e83dc47588f3f 100644
--- a/llvm/test/MC/SystemZ/insn-good-z14.s
+++ b/llvm/test/MC/SystemZ/insn-good-z14.s
@@ -76,6 +76,7 @@
#CHECK: bic 0, 524287(%r1,%r15) # encoding: [0xe3,0x01,0xff,0xff,0x7f,0x47]
#CHECK: bic 0, 524287(%r15,%r1) # encoding: [0xe3,0x0f,0x1f,0xff,0x7f,0x47]
#CHECK: bic 15, 0 # encoding: [0xe3,0xf0,0x00,0x00,0x00,0x47]
+#CHECK: bi 0 # encoding: [0xe3,0xf0,0x00,0x00,0x00,0x47]
bic 0, -524288
bic 0, -1
@@ -87,6 +88,7 @@
bic 0, 524287(%r1,%r15)
bic 0, 524287(%r15,%r1)
bic 15, 0
+ bi 0
#CHECK: bic 1, 0(%r7) # encoding: [0xe3,0x10,0x70,0x00,0x00,0x47]
#CHECK: bio 0(%r15) # encoding: [0xe3,0x10,0xf0,0x00,0x00,0x47]
@@ -96,9 +98,11 @@
#CHECK: bic 2, 0(%r7) # encoding: [0xe3,0x20,0x70,0x00,0x00,0x47]
#CHECK: bih 0(%r15) # encoding: [0xe3,0x20,0xf0,0x00,0x00,0x47]
+#CHECK: bip 0(%r14) # encoding: [0xe3,0x20,0xe0,0x00,0x00,0x47]
bic 2, 0(%r7)
bih 0(%r15)
+ bip 0(%r14)
#CHECK: bic 3, 0(%r7) # encoding: [0xe3,0x30,0x70,0x00,0x00,0x47]
#CHECK: binle 0(%r15) # encoding: [0xe3,0x30,0xf0,0x00,0x00,0x47]
@@ -108,33 +112,39 @@
#CHECK: bic 4, 0(%r7) # encoding: [0xe3,0x40,0x70,0x00,0x00,0x47]
#CHECK: bil 0(%r15) # encoding: [0xe3,0x40,0xf0,0x00,0x00,0x47]
+#CHECK: bim 0(%r13) # encoding: [0xe3,0x40,0xd0,0x00,0x00,0x47]
bic 4, 0(%r7)
bil 0(%r15)
+ bim 0(%r13)
#CHECK: bic 5, 0(%r7) # encoding: [0xe3,0x50,0x70,0x00,0x00,0x47]
-#CHECK: binhe 0(%r15) # encoding: [0xe3,0x50,0xf0,0x00,0x00,0x47]
+#CHECK: binhe 0(%r15) # encoding: [0xe3,0x50,0xf0,0x00,0x00,0x47]
bic 5, 0(%r7)
binhe 0(%r15)
#CHECK: bic 6, 0(%r7) # encoding: [0xe3,0x60,0x70,0x00,0x00,0x47]
-#CHECK: bilh 0(%r15) # encoding: [0xe3,0x60,0xf0,0x00,0x00,0x47]
+#CHECK: bilh 0(%r15) # encoding: [0xe3,0x60,0xf0,0x00,0x00,0x47]
bic 6, 0(%r7)
bilh 0(%r15)
#CHECK: bic 7, 0(%r7) # encoding: [0xe3,0x70,0x70,0x00,0x00,0x47]
-#CHECK: bine 0(%r15) # encoding: [0xe3,0x70,0xf0,0x00,0x00,0x47]
+#CHECK: bine 0(%r15) # encoding: [0xe3,0x70,0xf0,0x00,0x00,0x47]
+#CHECK: binz 0(%r12) # encoding: [0xe3,0x70,0xc0,0x00,0x00,0x47]
bic 7, 0(%r7)
bine 0(%r15)
+ binz 0(%r12)
#CHECK: bic 8, 0(%r7) # encoding: [0xe3,0x80,0x70,0x00,0x00,0x47]
#CHECK: bie 0(%r15) # encoding: [0xe3,0x80,0xf0,0x00,0x00,0x47]
+#CHECK: biz 0(%r11) # encoding: [0xe3,0x80,0xb0,0x00,0x00,0x47]
bic 8, 0(%r7)
bie 0(%r15)
+ biz 0(%r11)
#CHECK: bic 9, 0(%r7) # encoding: [0xe3,0x90,0x70,0x00,0x00,0x47]
#CHECK: binlh 0(%r15) # encoding: [0xe3,0x90,0xf0,0x00,0x00,0x47]
@@ -150,9 +160,11 @@
#CHECK: bic 11, 0(%r7) # encoding: [0xe3,0xb0,0x70,0x00,0x00,0x47]
#CHECK: binl 0(%r15) # encoding: [0xe3,0xb0,0xf0,0x00,0x00,0x47]
+#CHECK: binm 0(%r10) # encoding: [0xe3,0xb0,0xa0,0x00,0x00,0x47]
bic 11, 0(%r7)
binl 0(%r15)
+ binm 0(%r10)
#CHECK: bic 12, 0(%r7) # encoding: [0xe3,0xc0,0x70,0x00,0x00,0x47]
#CHECK: bile 0(%r15) # encoding: [0xe3,0xc0,0xf0,0x00,0x00,0x47]
@@ -162,9 +174,11 @@
#CHECK: bic 13, 0(%r7) # encoding: [0xe3,0xd0,0x70,0x00,0x00,0x47]
#CHECK: binh 0(%r15) # encoding: [0xe3,0xd0,0xf0,0x00,0x00,0x47]
+#CHECK: binp 0(%r9) # encoding: [0xe3,0xd0,0x90,0x00,0x00,0x47]
bic 13, 0(%r7)
binh 0(%r15)
+ binp 0(%r9)
#CHECK: bic 14, 0(%r7) # encoding: [0xe3,0xe0,0x70,0x00,0x00,0x47]
#CHECK: bino 0(%r15) # encoding: [0xe3,0xe0,0xf0,0x00,0x00,0x47]
diff --git a/llvm/test/MC/SystemZ/insn-good-zEC12.s b/llvm/test/MC/SystemZ/insn-good-zEC12.s
index c0ff72298fa61..db37d28686e9b 100644
--- a/llvm/test/MC/SystemZ/insn-good-zEC12.s
+++ b/llvm/test/MC/SystemZ/insn-good-zEC12.s
@@ -149,6 +149,12 @@
#CHECK: cltne %r0, 0(%r15) # encoding: [0xeb,0x06,0xf0,0x00,0x00,0x23]
#CHECK: cltnl %r0, 0(%r15) # encoding: [0xeb,0x0a,0xf0,0x00,0x00,0x23]
#CHECK: cltnh %r0, 0(%r15) # encoding: [0xeb,0x0c,0xf0,0x00,0x00,0x23]
+#CHECK: cltnle %r0, 0(%r15) # encoding: [0xeb,0x02,0xf0,0x00,0x00,0x23]
+#CHECK: cltnhe %r0, 0(%r15) # encoding: [0xeb,0x04,0xf0,0x00,0x00,0x23]
+#CHECK: cltnlh %r0, 0(%r15) # encoding: [0xeb,0x08,0xf0,0x00,0x00,0x23]
+#CHECK: cltlh %r0, 0(%r15) # encoding: [0xeb,0x06,0xf0,0x00,0x00,0x23]
+#CHECK: clthe %r0, 0(%r15) # encoding: [0xeb,0x0a,0xf0,0x00,0x00,0x23]
+#CHECK: cltle %r0, 0(%r15) # encoding: [0xeb,0x0c,0xf0,0x00,0x00,0x23]
clt %r0, 12, -524288
clt %r0, 12, -1
@@ -165,6 +171,12 @@
cltne %r0, 0(%r15)
cltnl %r0, 0(%r15)
cltnh %r0, 0(%r15)
+ cltnle %r0, 0(%r15)
+ cltnhe %r0, 0(%r15)
+ cltnlh %r0, 0(%r15)
+ cltlh %r0, 0(%r15)
+ clthe %r0, 0(%r15)
+ cltle %r0, 0(%r15)
#CHECK: clgt %r0, 12, -524288 # encoding: [0xeb,0x0c,0x00,0x00,0x80,0x2b]
#CHECK: clgt %r0, 12, -1 # encoding: [0xeb,0x0c,0x0f,0xff,0xff,0x2b]
@@ -181,6 +193,12 @@
#CHECK: clgtne %r0, 0(%r15) # encoding: [0xeb,0x06,0xf0,0x00,0x00,0x2b]
#CHECK: clgtnl %r0, 0(%r15) # encoding: [0xeb,0x0a,0xf0,0x00,0x00,0x2b]
#CHECK: clgtnh %r0, 0(%r15) # encoding: [0xeb,0x0c,0xf0,0x00,0x00,0x2b]
+#CHECK: clgtnle %r0, 0(%r15) # encoding: [0xeb,0x02,0xf0,0x00,0x00,0x2b]
+#CHECK: clgtnhe %r0, 0(%r15) # encoding: [0xeb,0x04,0xf0,0x00,0x00,0x2b]
+#CHECK: clgtnlh %r0, 0(%r15) # encoding: [0xeb,0x08,0xf0,0x00,0x00,0x2b]
+#CHECK: clgtlh %r0, 0(%r15) # encoding: [0xeb,0x06,0xf0,0x00,0x00,0x2b]
+#CHECK: clgthe %r0, 0(%r15) # encoding: [0xeb,0x0a,0xf0,0x00,0x00,0x2b]
+#CHECK: clgtle %r0, 0(%r15) # encoding: [0xeb,0x0c,0xf0,0x00,0x00,0x2b]
clgt %r0, 12, -524288
clgt %r0, 12, -1
@@ -197,6 +215,12 @@
clgtne %r0, 0(%r15)
clgtnl %r0, 0(%r15)
clgtnh %r0, 0(%r15)
+ clgtnle %r0, 0(%r15)
+ clgtnhe %r0, 0(%r15)
+ clgtnlh %r0, 0(%r15)
+ clgtlh %r0, 0(%r15)
+ clgthe %r0, 0(%r15)
+ clgtle %r0, 0(%r15)
#CHECK: crdte %r0, %r0, %r0 # encoding: [0xb9,0x8f,0x00,0x00]
#CHECK: crdte %r0, %r0, %r14 # encoding: [0xb9,0x8f,0x00,0x0e]
diff --git a/llvm/test/MC/SystemZ/insn-good.s b/llvm/test/MC/SystemZ/insn-good.s
index f5dd672f9dd8c..2add4a108319e 100644
--- a/llvm/test/MC/SystemZ/insn-good.s
+++ b/llvm/test/MC/SystemZ/insn-good.s
@@ -970,9 +970,11 @@
#CHECK: bc 2, 0(%r7) # encoding: [0x47,0x20,0x70,0x00]
#CHECK: bh 0(%r15) # encoding: [0x47,0x20,0xf0,0x00]
+#CHECK: bp 0(%r10) # encoding: [0x47,0x20,0xa0,0x00]
bc 2, 0(%r7)
bh 0(%r15)
+ bp 0(%r10)
#CHECK: bc 3, 0(%r7) # encoding: [0x47,0x30,0x70,0x00]
#CHECK: bnle 0(%r15) # encoding: [0x47,0x30,0xf0,0x00]
@@ -982,9 +984,11 @@
#CHECK: bc 4, 0(%r7) # encoding: [0x47,0x40,0x70,0x00]
#CHECK: bl 0(%r15) # encoding: [0x47,0x40,0xf0,0x00]
+#CHECK: bm 0(%r14) # encoding: [0x47,0x40,0xe0,0x00]
bc 4, 0(%r7)
bl 0(%r15)
+ bm 0(%r14)
#CHECK: bc 5, 0(%r7) # encoding: [0x47,0x50,0x70,0x00]
#CHECK: bnhe 0(%r15) # encoding: [0x47,0x50,0xf0,0x00]
@@ -1000,9 +1004,11 @@
#CHECK: bc 7, 0(%r7) # encoding: [0x47,0x70,0x70,0x00]
#CHECK: bne 0(%r15) # encoding: [0x47,0x70,0xf0,0x00]
+#CHECK: bnz 0(%r11) # encoding: [0x47,0x70,0xb0,0x00]
bc 7, 0(%r7)
bne 0(%r15)
+ bnz 0(%r11)
#CHECK: bc 8, 0(%r7) # encoding: [0x47,0x80,0x70,0x00]
#CHECK: be 0(%r15) # encoding: [0x47,0x80,0xf0,0x00]
@@ -1024,9 +1030,11 @@
#CHECK: bc 11, 0(%r7) # encoding: [0x47,0xb0,0x70,0x00]
#CHECK: bnl 0(%r15) # encoding: [0x47,0xb0,0xf0,0x00]
+#CHECK: bnm 0(%r13) # encoding: [0x47,0xb0,0xd0,0x00]
bc 11, 0(%r7)
bnl 0(%r15)
+ bnm 0(%r13)
#CHECK: bc 12, 0(%r7) # encoding: [0x47,0xc0,0x70,0x00]
#CHECK: ble 0(%r15) # encoding: [0x47,0xc0,0xf0,0x00]
@@ -1036,9 +1044,11 @@
#CHECK: bc 13, 0(%r7) # encoding: [0x47,0xd0,0x70,0x00]
#CHECK: bnh 0(%r15) # encoding: [0x47,0xd0,0xf0,0x00]
+#CHECK: bnp 0(%r12) # encoding: [0x47,0xd0,0xc0,0x00]
bc 13, 0(%r7)
bnh 0(%r15)
+ bnp 0(%r12)
#CHECK: bc 14, 0(%r7) # encoding: [0x47,0xe0,0x70,0x00]
#CHECK: bno 0(%r15) # encoding: [0x47,0xe0,0xf0,0x00]
@@ -1046,6 +1056,13 @@
bc 14, 0(%r7)
bno 0(%r15)
+#CHECK: bc 8, 0(%r13) # encoding: [0x47,0x80,0xd0,0x00]
+#CHECK: bz 0(%r6) # encoding: [0x47,0x80,0x60,0x00]
+
+ bc 8, 0(%r13)
+ bz 0(%r6)
+
+
#CHECK: bcr 0, %r0 # encoding: [0x07,0x00]
#CHECK: bcr 0, %r15 # encoding: [0x07,0x0f]
@@ -1176,6 +1193,36 @@
br %r14
br %r15
+#CHECK: bcr 4, %r7 # encoding: [0x07,0x47]
+#CHECK: bmr %r0 # encoding: [0x07,0x40]
+ bcr 4, %r7
+ bmr %r0
+
+#CHECK: bcr 11, %r8 # encoding: [0x07,0xb8]
+#CHECK: bnmr %r1 # encoding: [0x07,0xb1]
+ bcr 11, %r8
+ bnmr %r1
+
+#CHECK: bcr 13, %r9 # encoding: [0x07,0xd9]
+#CHECK: bnpr %r2 # encoding: [0x07,0xd2]
+ bcr 13, %r9
+ bnpr %r2
+
+#CHECK: bcr 7, %r10 # encoding: [0x07,0x7a]
+#CHECK: bnzr %r3 # encoding: [0x07,0x73]
+ bcr 7, %r10
+ bnzr %r3
+
+#CHECK: bcr 2, %r11 # encoding: [0x07,0x2b]
+#CHECK: bpr %r4 # encoding: [0x07,0x24]
+ bcr 2, %r11
+ bpr %r4
+
+#CHECK: bcr 8, %r12 # encoding: [0x07,0x8c]
+#CHECK: bzr %r5 # encoding: [0x07,0x85]
+ bcr 8, %r12
+ bzr %r5
+
#CHECK: bras %r0, .[[LAB:L.*]]-65536 # encoding: [0xa7,0x05,A,A]
#CHECK: fixup A - offset: 2, value: (.[[LAB]]-65536)+2, kind: FK_390_PC16DBL
#CHECK: bras %r0, .[[LAB:L.*]]-65536 # encoding: [0xa7,0x05,A,A]
@@ -3823,6 +3870,12 @@
#CHECK: cgitne %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x70]
#CHECK: cgitnl %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x70]
#CHECK: cgitnh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x70]
+#CHECK: cgitnle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x20,0x70]
+#CHECK: cgitnhe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x40,0x70]
+#CHECK: cgitnlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x80,0x70]
+#CHECK: cgitlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x70]
+#CHECK: cgithe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x70]
+#CHECK: cgitle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x70]
cgit %r0, 0, 12
cgit %r0, -1, 12
@@ -3834,6 +3887,12 @@
cgitne %r15, 1
cgitnl %r15, 1
cgitnh %r15, 1
+ cgitnle %r15, 1
+ cgitnhe %r15, 1
+ cgitnlh %r15, 1
+ cgitlh %r15, 1
+ cgithe %r15, 1
+ cgitle %r15, 1
#CHECK: cgr %r0, %r0 # encoding: [0xb9,0x20,0x00,0x00]
#CHECK: cgr %r0, %r15 # encoding: [0xb9,0x20,0x00,0x0f]
@@ -4198,6 +4257,12 @@
#CHECK: cgrtne %r0, %r15 # encoding: [0xb9,0x60,0x60,0x0f]
#CHECK: cgrtnl %r0, %r15 # encoding: [0xb9,0x60,0xa0,0x0f]
#CHECK: cgrtnh %r0, %r15 # encoding: [0xb9,0x60,0xc0,0x0f]
+#CHECK: cgrtnle %r0, %r15 # encoding: [0xb9,0x60,0x20,0x0f]
+#CHECK: cgrtnhe %r0, %r15 # encoding: [0xb9,0x60,0x40,0x0f]
+#CHECK: cgrtnlh %r0, %r15 # encoding: [0xb9,0x60,0x80,0x0f]
+#CHECK: cgrtlh %r0, %r15 # encoding: [0xb9,0x60,0x60,0x0f]
+#CHECK: cgrthe %r0, %r15 # encoding: [0xb9,0x60,0xa0,0x0f]
+#CHECK: cgrtle %r0, %r15 # encoding: [0xb9,0x60,0xc0,0x0f]
cgrt %r0, %r1, 12
cgrt %r0, %r1, 12
@@ -4209,6 +4274,12 @@
cgrtne %r0, %r15
cgrtnl %r0, %r15
cgrtnh %r0, %r15
+ cgrtnle %r0, %r15
+ cgrtnhe %r0, %r15
+ cgrtnlh %r0, %r15
+ cgrtlh %r0, %r15
+ cgrthe %r0, %r15
+ cgrtle %r0, %r15
#CHECK: cgxbr %r0, 0, %f0 # encoding: [0xb3,0xaa,0x00,0x00]
#CHECK: cgxbr %r0, 0, %f13 # encoding: [0xb3,0xaa,0x00,0x0d]
@@ -4708,6 +4779,12 @@
#CHECK: citne %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x72]
#CHECK: citnl %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x72]
#CHECK: citnh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x72]
+#CHECK: citnle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x20,0x72]
+#CHECK: citnhe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x40,0x72]
+#CHECK: citnlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x80,0x72]
+#CHECK: citlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x72]
+#CHECK: cithe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x72]
+#CHECK: citle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x72]
cit %r0, 0, 12
cit %r0, -1, 12
@@ -4719,6 +4796,12 @@
citne %r15, 1
citnl %r15, 1
citnh %r15, 1
+ citnle %r15, 1
+ citnhe %r15, 1
+ citnlh %r15, 1
+ citlh %r15, 1
+ cithe %r15, 1
+ citle %r15, 1
#CHECK: cksm %r0, %r8 # encoding: [0xb2,0x41,0x00,0x08]
#CHECK: cksm %r0, %r14 # encoding: [0xb2,0x41,0x00,0x0e]
@@ -4853,6 +4936,12 @@
#CHECK: clfitne %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x73]
#CHECK: clfitnl %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x73]
#CHECK: clfitnh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x73]
+#CHECK: clfitnle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x20,0x73]
+#CHECK: clfitnhe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x40,0x73]
+#CHECK: clfitnlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x80,0x73]
+#CHECK: clfitlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x73]
+#CHECK: clfithe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x73]
+#CHECK: clfitle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x73]
clfit %r0, 0, 12
clfit %r0, 65535, 12
@@ -4863,6 +4952,12 @@
clfitne %r15, 1
clfitnl %r15, 1
clfitnh %r15, 1
+ clfitnle %r15, 1
+ clfitnhe %r15, 1
+ clfitnlh %r15, 1
+ clfitlh %r15, 1
+ clfithe %r15, 1
+ clfitle %r15, 1
#CHECK: clg %r0, -524288 # encoding: [0xe3,0x00,0x00,0x00,0x80,0x21]
#CHECK: clg %r0, -1 # encoding: [0xe3,0x00,0x0f,0xff,0xff,0x21]
@@ -5332,6 +5427,12 @@
#CHECK: clgitne %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x71]
#CHECK: clgitnl %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x71]
#CHECK: clgitnh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x71]
+#CHECK: clgitnle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x20,0x71]
+#CHECK: clgitnhe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x40,0x71]
+#CHECK: clgitnlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x80,0x71]
+#CHECK: clgitlh %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0x60,0x71]
+#CHECK: clgithe %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xa0,0x71]
+#CHECK: clgitle %r15, 1 # encoding: [0xec,0xf0,0x00,0x01,0xc0,0x71]
clgit %r0, 0, 12
clgit %r0, 65535, 12
@@ -5342,6 +5443,12 @@
clgitne %r15, 1
clgitnl %r15, 1
clgitnh %r15, 1
+ clgitnle %r15, 1
+ clgitnhe %r15, 1
+ clgitnlh %r15, 1
+ clgitlh %r15, 1
+ clgithe %r15, 1
+ clgitle %r15, 1
#CHECK: clgr %r0, %r0 # encoding: [0xb9,0x21,0x00,0x00]
#CHECK: clgr %r0, %r15 # encoding: [0xb9,0x21,0x00,0x0f]
@@ -6250,6 +6357,12 @@
#CHECK: clgrtne %r0, %r15 # encoding: [0xb9,0x61,0x60,0x0f]
#CHECK: clgrtnl %r0, %r15 # encoding: [0xb9,0x61,0xa0,0x0f]
#CHECK: clgrtnh %r0, %r15 # encoding: [0xb9,0x61,0xc0,0x0f]
+#CHECK: clgrtnle %r0, %r15 # encoding: [0xb9,0x61,0x20,0x0f]
+#CHECK: clgrtnhe %r0, %r15 # encoding: [0xb9,0x61,0x40,0x0f]
+#CHECK: clgrtnlh %r0, %r15 # encoding: [0xb9,0x61,0x80,0x0f]
+#CHECK: clgrtlh %r0, %r15 # encoding: [0xb9,0x61,0x60,0x0f]
+#CHECK: clgrthe %r0, %r15 # encoding: [0xb9,0x61,0xa0,0x0f]
+#CHECK: clgrtle %r0, %r15 # encoding: [0xb9,0x61,0xc0,0x0f]
clgrt %r0, %r1, 12
clgrt %r0, %r1, 12
@@ -6261,6 +6374,12 @@
clgrtne %r0, %r15
clgrtnl %r0, %r15
clgrtnh %r0, %r15
+ clgrtnle %r0, %r15
+ clgrtnhe %r0, %r15
+ clgrtnlh %r0, %r15
+ clgrtlh %r0, %r15
+ clgrthe %r0, %r15
+ clgrtle %r0, %r15
#CHECK: clrj %r0, %r0, 0, .[[LAB:L.*]] # encoding: [0xec,0x00,A,A,0x00,0x77]
#CHECK: fixup A - offset: 2, value: .[[LAB]]+2, kind: FK_390_PC16DBL
@@ -6539,6 +6658,12 @@
#CHECK: clrtne %r0, %r15 # encoding: [0xb9,0x73,0x60,0x0f]
#CHECK: clrtnl %r0, %r15 # encoding: [0xb9,0x73,0xa0,0x0f]
#CHECK: clrtnh %r0, %r15 # encoding: [0xb9,0x73,0xc0,0x0f]
+#CHECK: clrtnle %r0, %r15 # encoding: [0xb9,0x73,0x20,0x0f]
+#CHECK: clrtnhe %r0, %r15 # encoding: [0xb9,0x73,0x40,0x0f]
+#CHECK: clrtnlh %r0, %r15 # encoding: [0xb9,0x73,0x80,0x0f]
+#CHECK: clrtlh %r0, %r15 # encoding: [0xb9,0x73,0x60,0x0f]...
[truncated]
|
@uweigand FYI |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, with a few minor comments inline. I assume you verified that the GNU assembler agrees with these encodings as well?
#CHECK: locghip %r12, 10958 # encoding: [0xec,0xc2,0x2a,0xce,0x00,0x46] | ||
#CHECK: locghiz %r13, 15054 # encoding: [0xec,0xd8,0x3a,0xce,0x00,0x46] | ||
#CHECK: locghinp %r14, 19150 # encoding: [0xec,0xed,0x4a,0xce,0x00,0x46] | ||
#CHECK: locghinz %r15, 23246 # encoding: [0xec,0xf7,0x5a,0xce,0x00,0x46] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please try to following the spacing/indentation with the other lines (the "encoding:" should ideally line up). Here and everywhere ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will add the missing whitespace.
llvm/test/MC/SystemZ/insn-good-z14.s
Outdated
@@ -87,6 +88,7 @@ | |||
bic 0, 524287(%r1,%r15) | |||
bic 0, 524287(%r15,%r1) | |||
bic 15, 0 | |||
bi 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have tests for plain bi
, so this seems redundant.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, will delete.
llvm/test/MC/SystemZ/insn-good-z14.s
Outdated
|
||
#CHECK: bic 5, 0(%r7) # encoding: [0xe3,0x50,0x70,0x00,0x00,0x47] | ||
#CHECK: binhe 0(%r15) # encoding: [0xe3,0x50,0xf0,0x00,0x00,0x47] | ||
#CHECK: binhe 0(%r15) # encoding: [0xe3,0x50,0xf0,0x00,0x00,0x47] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above w.r.t. spaces. Here this may be a tab vs. spaces issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kind of. In this case, my editor assumed a tab was 4 spaces long, while this assumes a tab is 8 spaces long. I've reconfigured my editor for 8 spaces, and have realigned the tabs in this section.
This adds tests for some extended mnemonics of load, branch, and compare-and-trap instructions.
ee092d0
to
b59e3ed
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM now, thanks!
I did, yes. |
This adds tests for some extended mnemonics of load, branch, and compare-and-trap instructions.