diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ')
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/and-01.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/and-07.ll | 21 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/atomicrmw-and-03.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/atomicrmw-nand-03.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/atomicrmw-or-03.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/atomicrmw-xor-03.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/or-01.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/or-07.ll | 21 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/xor-01.ll | 3 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SystemZ/xor-07.ll | 21 |
10 files changed, 73 insertions, 7 deletions
diff --git a/llvm/test/CodeGen/SystemZ/and-01.ll b/llvm/test/CodeGen/SystemZ/and-01.ll index f89314809f6..3b230ba1081 100644 --- a/llvm/test/CodeGen/SystemZ/and-01.ll +++ b/llvm/test/CodeGen/SystemZ/and-01.ll @@ -1,6 +1,7 @@ ; Test 32-bit ANDs in which the second operand is variable. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s declare i32 @foo() diff --git a/llvm/test/CodeGen/SystemZ/and-07.ll b/llvm/test/CodeGen/SystemZ/and-07.ll new file mode 100644 index 00000000000..2bdf97d4704 --- /dev/null +++ b/llvm/test/CodeGen/SystemZ/and-07.ll @@ -0,0 +1,21 @@ +; Test the three-operand forms of AND. +; +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s + +; Check NRK. +define i32 @f1(i32 %a, i32 %b, i32 %c) { +; CHECK-LABEL: f1: +; CHECK: nrk %r2, %r3, %r4 +; CHECK: br %r14 + %and = and i32 %b, %c + ret i32 %and +} + +; Check that we can still use NR in obvious cases. +define i32 @f2(i32 %a, i32 %b) { +; CHECK-LABEL: f2: +; CHECK: nr %r2, %r3 +; CHECK: br %r14 + %and = and i32 %a, %b + ret i32 %and +} diff --git a/llvm/test/CodeGen/SystemZ/atomicrmw-and-03.ll b/llvm/test/CodeGen/SystemZ/atomicrmw-and-03.ll index dd02828ad83..6c7ba23e1b9 100644 --- a/llvm/test/CodeGen/SystemZ/atomicrmw-and-03.ll +++ b/llvm/test/CodeGen/SystemZ/atomicrmw-and-03.ll @@ -1,6 +1,6 @@ ; Test 32-bit atomic ANDs. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s ; Check ANDs of a variable. define i32 @f1(i32 %dummy, i32 *%src, i32 %b) { diff --git a/llvm/test/CodeGen/SystemZ/atomicrmw-nand-03.ll b/llvm/test/CodeGen/SystemZ/atomicrmw-nand-03.ll index be306a29e36..c511bd608fd 100644 --- a/llvm/test/CodeGen/SystemZ/atomicrmw-nand-03.ll +++ b/llvm/test/CodeGen/SystemZ/atomicrmw-nand-03.ll @@ -1,6 +1,6 @@ ; Test 32-bit atomic NANDs. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s ; Check NANDs of a variable. define i32 @f1(i32 %dummy, i32 *%src, i32 %b) { diff --git a/llvm/test/CodeGen/SystemZ/atomicrmw-or-03.ll b/llvm/test/CodeGen/SystemZ/atomicrmw-or-03.ll index 6386847e53e..692b11c4cf3 100644 --- a/llvm/test/CodeGen/SystemZ/atomicrmw-or-03.ll +++ b/llvm/test/CodeGen/SystemZ/atomicrmw-or-03.ll @@ -1,6 +1,6 @@ ; Test 32-bit atomic ORs. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s ; Check ORs of a variable. define i32 @f1(i32 %dummy, i32 *%src, i32 %b) { diff --git a/llvm/test/CodeGen/SystemZ/atomicrmw-xor-03.ll b/llvm/test/CodeGen/SystemZ/atomicrmw-xor-03.ll index 292de3642bc..05754e7a0ee 100644 --- a/llvm/test/CodeGen/SystemZ/atomicrmw-xor-03.ll +++ b/llvm/test/CodeGen/SystemZ/atomicrmw-xor-03.ll @@ -1,6 +1,6 @@ ; Test 32-bit atomic XORs. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s ; Check XORs of a variable. define i32 @f1(i32 %dummy, i32 *%src, i32 %b) { diff --git a/llvm/test/CodeGen/SystemZ/or-01.ll b/llvm/test/CodeGen/SystemZ/or-01.ll index ee0a39228d8..23946d32067 100644 --- a/llvm/test/CodeGen/SystemZ/or-01.ll +++ b/llvm/test/CodeGen/SystemZ/or-01.ll @@ -1,6 +1,7 @@ ; Test 32-bit ORs in which the second operand is variable. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s declare i32 @foo() diff --git a/llvm/test/CodeGen/SystemZ/or-07.ll b/llvm/test/CodeGen/SystemZ/or-07.ll new file mode 100644 index 00000000000..f6848a16591 --- /dev/null +++ b/llvm/test/CodeGen/SystemZ/or-07.ll @@ -0,0 +1,21 @@ +; Test the three-operand forms of OR. +; +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s + +; Check XRK. +define i32 @f1(i32 %a, i32 %b, i32 %c) { +; CHECK-LABEL: f1: +; CHECK: ork %r2, %r3, %r4 +; CHECK: br %r14 + %or = or i32 %b, %c + ret i32 %or +} + +; Check that we can still use OR in obvious cases. +define i32 @f2(i32 %a, i32 %b) { +; CHECK-LABEL: f2: +; CHECK: or %r2, %r3 +; CHECK: br %r14 + %or = or i32 %a, %b + ret i32 %or +} diff --git a/llvm/test/CodeGen/SystemZ/xor-01.ll b/llvm/test/CodeGen/SystemZ/xor-01.ll index f9ba2eb65e7..185d6bb0a75 100644 --- a/llvm/test/CodeGen/SystemZ/xor-01.ll +++ b/llvm/test/CodeGen/SystemZ/xor-01.ll @@ -1,6 +1,7 @@ ; Test 32-bit XORs in which the second operand is variable. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s declare i32 @foo() diff --git a/llvm/test/CodeGen/SystemZ/xor-07.ll b/llvm/test/CodeGen/SystemZ/xor-07.ll new file mode 100644 index 00000000000..22deef64ce9 --- /dev/null +++ b/llvm/test/CodeGen/SystemZ/xor-07.ll @@ -0,0 +1,21 @@ +; Test the three-operand forms of XOR. +; +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s + +; Check XRK. +define i32 @f1(i32 %a, i32 %b, i32 %c) { +; CHECK-LABEL: f1: +; CHECK: xrk %r2, %r3, %r4 +; CHECK: br %r14 + %xor = xor i32 %b, %c + ret i32 %xor +} + +; Check that we can still use XR in obvious cases. +define i32 @f2(i32 %a, i32 %b) { +; CHECK-LABEL: f2: +; CHECK: xr %r2, %r3 +; CHECK: br %r14 + %xor = xor i32 %a, %b + ret i32 %xor +} |

