[llvm] r235558 - [InstCombine] Use a more targeted fix instead of r235544
David Majnemer
david.majnemer at gmail.com
Wed Apr 22 15:42:05 PDT 2015
Author: majnemer
Date: Wed Apr 22 17:42:05 2015
New Revision: 235558
URL: http://llvm.org/viewvc/llvm-project?rev=235558&view=rev
Log:
[InstCombine] Use a more targeted fix instead of r235544
Only clear out the NSW/NUW flags if we are optimizing 'add'/'sub' while
taking advantage that the sign bit is not set. We do this optimization
to further shrink the mask but shrinking the mask isn't NSW/NUW
preserving in this case.
Modified:
llvm/trunk/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
llvm/trunk/test/Transforms/InstCombine/cast.ll
Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp?rev=235558&r1=235557&r2=235558&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp Wed Apr 22 17:42:05 2015
@@ -88,13 +88,6 @@ bool InstCombiner::SimplifyDemandedBits(
KnownOne, Depth, UserI);
if (!NewVal) return false;
U = NewVal;
-
- // Shrinking a constant might cause a nsw/nuw violation to occur in
- // instructions which are themselves demanded.
- if (auto *UserOBO = dyn_cast<OverflowingBinaryOperator>(UserI)) {
- cast<BinaryOperator>(UserOBO)->setHasNoSignedWrap(false);
- cast<BinaryOperator>(UserOBO)->setHasNoUnsignedWrap(false);
- }
return true;
}
@@ -607,8 +600,11 @@ Value *InstCombiner::SimplifyDemandedUse
if (SimplifyDemandedBits(I->getOperandUse(0), DemandedFromOps,
LHSKnownZero, LHSKnownOne, Depth + 1) ||
SimplifyDemandedBits(I->getOperandUse(1), DemandedFromOps,
- LHSKnownZero, LHSKnownOne, Depth + 1))
+ LHSKnownZero, LHSKnownOne, Depth + 1)) {
+ cast<BinaryOperator>(I)->setHasNoSignedWrap(false);
+ cast<BinaryOperator>(I)->setHasNoUnsignedWrap(false);
return I;
+ }
}
}
break;
@@ -624,8 +620,11 @@ Value *InstCombiner::SimplifyDemandedUse
if (SimplifyDemandedBits(I->getOperandUse(0), DemandedFromOps,
LHSKnownZero, LHSKnownOne, Depth + 1) ||
SimplifyDemandedBits(I->getOperandUse(1), DemandedFromOps,
- LHSKnownZero, LHSKnownOne, Depth + 1))
+ LHSKnownZero, LHSKnownOne, Depth + 1)) {
+ cast<BinaryOperator>(I)->setHasNoSignedWrap(false);
+ cast<BinaryOperator>(I)->setHasNoUnsignedWrap(false);
return I;
+ }
}
// Otherwise just hand the sub off to computeKnownBits to fill in
Modified: llvm/trunk/test/Transforms/InstCombine/cast.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/cast.ll?rev=235558&r1=235557&r2=235558&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/cast.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/cast.ll Wed Apr 22 17:42:05 2015
@@ -1125,3 +1125,15 @@ define i1 @PR23309(i32 %A, i32 %B) {
%trunc = trunc i32 %sub to i1
ret i1 %trunc
}
+
+define i1 @PR23309v2(i32 %A, i32 %B) {
+; CHECK-LABEL: @PR23309v2(
+; CHECK-NEXT: %[[sub:.*]] = add i32 %A, %B
+; CHECK-NEXT: %[[and:.*]] = and i32 %[[sub]], 1
+; CHECK-NEXT: %[[cmp:.*]] = icmp ne i32 %[[and]], 0
+; CHECK-NEXT: ret i1 %[[cmp]]
+ %add = add i32 %A, -4
+ %sub = add nuw i32 %add, %B
+ %trunc = trunc i32 %sub to i1
+ ret i1 %trunc
+}
More information about the llvm-commits
mailing list