diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2016-07-15 22:13:16 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2016-07-15 22:13:16 +0000 |
commit | 93be6e8c0ada7f77b93db16c81b2160f82780ae6 (patch) | |
tree | 5c422117c761fc90f08c37cd9f52d4968666c39d /llvm | |
parent | 408e300933f2c5e8aaffb2539e47b89a2112b81b (diff) | |
download | bcm5719-llvm-93be6e8c0ada7f77b93db16c81b2160f82780ae6.tar.gz bcm5719-llvm-93be6e8c0ada7f77b93db16c81b2160f82780ae6.zip |
StructurizeCFG: Fix inverting constantexpr conditions
llvm-svn: 275626
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Transforms/Scalar/StructurizeCFG.cpp | 10 | ||||
-rw-r--r-- | llvm/test/Transforms/StructurizeCFG/invert-constantexpr.ll | 30 |
2 files changed, 32 insertions, 8 deletions
diff --git a/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp b/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp index be9b6e4534c..e9ac39beae5 100644 --- a/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp +++ b/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp @@ -377,14 +377,8 @@ void StructurizeCFG::analyzeLoops(RegionNode *N) { /// \brief Invert the given condition Value *StructurizeCFG::invert(Value *Condition) { // First: Check if it's a constant - if (Condition == BoolTrue) - return BoolFalse; - - if (Condition == BoolFalse) - return BoolTrue; - - if (Condition == BoolUndef) - return BoolUndef; + if (Constant *C = dyn_cast<Constant>(Condition)) + return ConstantExpr::getNot(C); // Second: If the condition is already inverted, return the original value if (match(Condition, m_Not(m_Value(Condition)))) diff --git a/llvm/test/Transforms/StructurizeCFG/invert-constantexpr.ll b/llvm/test/Transforms/StructurizeCFG/invert-constantexpr.ll new file mode 100644 index 00000000000..fc50a5a90a7 --- /dev/null +++ b/llvm/test/Transforms/StructurizeCFG/invert-constantexpr.ll @@ -0,0 +1,30 @@ +; RUN: opt -S -o - -structurizecfg < %s | FileCheck %s + +; CHECK-LABEL: @invert_constantexpr_condition( +; CHECK: %tmp5 = or i1 %tmp4, icmp eq (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0) +; CHECK: [ icmp ne (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0), %bb ] +define void @invert_constantexpr_condition(i32 %arg, i32 %arg1) #0 { +bb: + %tmp = icmp eq i32 %arg, 0 + br i1 icmp eq (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0), label %bb2, label %bb6 + +bb2: + br i1 %tmp, label %bb3, label %bb6 + +bb3: + %tmp4 = phi i1 [ %tmp7, %bb6 ], [ undef, %bb2 ] + %tmp5 = or i1 %tmp4, icmp eq (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0) + br i1 %tmp5, label %bb8, label %bb8 + +bb6: + %tmp7 = icmp slt i32 %arg, %arg1 + br label %bb3 + +bb8: + ret void +} + +declare i32 @llvm.amdgcn.workitem.id.x() #1 + +attributes #0 = { nounwind } +attributes #1 = { nounwind readnone } |