diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/cond-move-01.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/cond-move-01.ll | 79 |
1 files changed, 78 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/SystemZ/cond-move-01.ll b/llvm/test/CodeGen/SystemZ/cond-move-01.ll index 088dee0232e..0be81c3ff80 100644 --- a/llvm/test/CodeGen/SystemZ/cond-move-01.ll +++ b/llvm/test/CodeGen/SystemZ/cond-move-01.ll @@ -1,6 +1,10 @@ ; Test LOCR and LOCGR. ; -; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 -verify-machineinstrs | FileCheck %s +; +; Run the test again to make sure it still works the same even +; in the presence of the load-store-on-condition-2 facility. +; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 -verify-machineinstrs | FileCheck %s ; Test LOCR. define i32 @f1(i32 %a, i32 %b, i32 %limit) { @@ -46,3 +50,76 @@ define i64 @f4(i64 %a, i64 %b, i64 %limit) { %res = select i1 %cond, i64 %a, i64 %b ret i64 %res } + +; Check that we also get LOCR as a result of early if-conversion. +define i32 @f5(i32 %a, i32 %b, i32 %limit) { +; CHECK-LABEL: f5: +; CHECK: clfi %r4, 41 +; CHECK: locrh %r2, %r3 +; CHECK: br %r14 +entry: + %cond = icmp ult i32 %limit, 42 + br i1 %cond, label %if.then, label %return + +if.then: + br label %return + +return: + %res = phi i32 [ %a, %if.then ], [ %b, %entry ] + ret i32 %res +} + +; ... and likewise for LOCGR. +define i64 @f6(i64 %a, i64 %b, i64 %limit) { +; CHECK-LABEL: f6: +; CHECK: clgfi %r4, 41 +; CHECK: locgrh %r2, %r3 +; CHECK: br %r14 +entry: + %cond = icmp ult i64 %limit, 42 + br i1 %cond, label %if.then, label %return + +if.then: + br label %return + +return: + %res = phi i64 [ %a, %if.then ], [ %b, %entry ] + ret i64 %res +} + +; Check that inverting the condition works as well. +define i32 @f7(i32 %a, i32 %b, i32 %limit) { +; CHECK-LABEL: f7: +; CHECK: clfi %r4, 41 +; CHECK: locrle %r2, %r3 +; CHECK: br %r14 +entry: + %cond = icmp ult i32 %limit, 42 + br i1 %cond, label %if.then, label %return + +if.then: + br label %return + +return: + %res = phi i32 [ %b, %if.then ], [ %a, %entry ] + ret i32 %res +} + +; ... and likewise for LOCGR. +define i64 @f8(i64 %a, i64 %b, i64 %limit) { +; CHECK-LABEL: f8: +; CHECK: clgfi %r4, 41 +; CHECK: locgrle %r2, %r3 +; CHECK: br %r14 +entry: + %cond = icmp ult i64 %limit, 42 + br i1 %cond, label %if.then, label %return + +if.then: + br label %return + +return: + %res = phi i64 [ %b, %if.then ], [ %a, %entry ] + ret i64 %res +} + |