diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/Transforms/IndVarSimplify/eliminate-comparison.ll | 58 | ||||
-rw-r--r-- | llvm/test/Transforms/IndVarSimplify/pr25421.ll | 30 |
2 files changed, 88 insertions, 0 deletions
diff --git a/llvm/test/Transforms/IndVarSimplify/eliminate-comparison.ll b/llvm/test/Transforms/IndVarSimplify/eliminate-comparison.ll index 89f625111d4..612f01e3cad 100644 --- a/llvm/test/Transforms/IndVarSimplify/eliminate-comparison.ll +++ b/llvm/test/Transforms/IndVarSimplify/eliminate-comparison.ll @@ -447,6 +447,64 @@ define void @func_20(i32* %length.ptr) { ret void } +define void @func_21(i32* %length.ptr) { +; CHECK-LABEL: @func_21( + +; This checks that the backedge condition, (I + 1) < Length - 1 implies +; (I + 1) < Length + entry: + %length = load i32, i32* %length.ptr, !range !0 + %lim = sub i32 %length, 1 + %entry.cond = icmp sgt i32 %length, 1 + br i1 %entry.cond, label %loop, label %leave + + loop: +; CHECK: loop: + %iv = phi i32 [ 0, %entry ], [ %iv.inc, %be ] + %iv.inc = add i32 %iv, 1 + %range.check = icmp slt i32 %iv, %length + br i1 %range.check, label %be, label %leave +; CHECK: br i1 true, label %be, label %leave.loopexit +; CHECK: be: + + be: + call void @side_effect() + %be.cond = icmp slt i32 %iv.inc, %lim + br i1 %be.cond, label %loop, label %leave + + leave: + ret void +} + +define void @func_22(i32* %length.ptr) { +; CHECK-LABEL: @func_22( + +; This checks that the backedge condition, (I + 1) < Length - 1 implies +; (I + 1) < Length + entry: + %length = load i32, i32* %length.ptr, !range !0 + %lim = sub i32 %length, 1 + %entry.cond = icmp sgt i32 %length, 1 + br i1 %entry.cond, label %loop, label %leave + + loop: +; CHECK: loop: + %iv = phi i32 [ 0, %entry ], [ %iv.inc, %be ] + %iv.inc = add i32 %iv, 1 + %range.check = icmp sle i32 %iv, %length + br i1 %range.check, label %be, label %leave +; CHECK: br i1 true, label %be, label %leave.loopexit +; CHECK: be: + + be: + call void @side_effect() + %be.cond = icmp sle i32 %iv.inc, %lim + br i1 %be.cond, label %loop, label %leave + + leave: + ret void +} + define void @func_23(i32* %length.ptr) { ; CHECK-LABEL: @func_23( entry: diff --git a/llvm/test/Transforms/IndVarSimplify/pr25421.ll b/llvm/test/Transforms/IndVarSimplify/pr25421.ll new file mode 100644 index 00000000000..efb71f9c303 --- /dev/null +++ b/llvm/test/Transforms/IndVarSimplify/pr25421.ll @@ -0,0 +1,30 @@ +; RUN: opt -S -indvars < %s | FileCheck %s + +target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-apple-macosx10.11.0" + +declare void @use(i1) + +define void @f(i32 %x) { +; CHECK-LABEL: @f( + entry: + %conv = sext i32 %x to i64 + %sub = add i64 %conv, -1 + %ec = icmp sgt i32 %x, 0 + br i1 %ec, label %loop, label %leave + + loop: +; CHECK: loop: + %iv = phi i64 [ 0, %entry ], [ %iv.inc, %loop ] + %iv.inc = add i64 %iv, 1 + %cmp = icmp slt i64 %iv, %sub + call void @use(i1 %cmp) +; CHECK: call void @use(i1 %cmp) +; CHECK-NOT: call void @use(i1 true) + + %be.cond = icmp slt i64 %iv.inc, %conv + br i1 %be.cond, label %loop, label %leave + + leave: + ret void +} |