[llvm] r279271 - Fix regression in InstCombine introduced by r278944
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 19 09:53:19 PDT 2016
Author: rnk
Date: Fri Aug 19 11:53:18 2016
New Revision: 279271
URL: http://llvm.org/viewvc/llvm-project?rev=279271&view=rev
Log:
Fix regression in InstCombine introduced by r278944
The intended transform is:
// Simplify icmp eq (or (ptrtoint P), (ptrtoint Q)), 0
// -> and (icmp eq P, null), (icmp eq Q, null).
P and Q are both pointer types, but may have different types. We need
two calls to getNullValue() to make the icmps.
Modified:
llvm/trunk/lib/Transforms/InstCombine/InstCombineCompares.cpp
llvm/trunk/test/Transforms/InstCombine/icmp.ll
Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineCompares.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineCompares.cpp?rev=279271&r1=279270&r2=279271&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineCompares.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineCompares.cpp Fri Aug 19 11:53:18 2016
@@ -1893,9 +1893,10 @@ Instruction *InstCombiner::foldICmpOrCon
if (match(Or, m_Or(m_PtrToInt(m_Value(P)), m_PtrToInt(m_Value(Q))))) {
// Simplify icmp eq (or (ptrtoint P), (ptrtoint Q)), 0
// -> and (icmp eq P, null), (icmp eq Q, null).
- Constant *NullVal = ConstantInt::getNullValue(P->getType());
- Value *CmpP = Builder->CreateICmp(Pred, P, NullVal);
- Value *CmpQ = Builder->CreateICmp(Pred, Q, NullVal);
+ Value *CmpP =
+ Builder->CreateICmp(Pred, P, ConstantInt::getNullValue(P->getType()));
+ Value *CmpQ =
+ Builder->CreateICmp(Pred, Q, ConstantInt::getNullValue(Q->getType()));
auto LogicOpc = Pred == ICmpInst::Predicate::ICMP_EQ ? Instruction::And
: Instruction::Or;
return BinaryOperator::Create(LogicOpc, CmpP, CmpQ);
Modified: llvm/trunk/test/Transforms/InstCombine/icmp.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/icmp.ll?rev=279271&r1=279270&r2=279271&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/icmp.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/icmp.ll Fri Aug 19 11:53:18 2016
@@ -2605,3 +2605,16 @@ define <2 x i1> @ugtKnownBitsVec(<2 x i8
ret <2 x i1> %cmp
}
+define i1 @or_ptrtoint_mismatch(i8* %p, i32* %q) {
+; CHECK-LABEL: define i1 @or_ptrtoint_mismatch(i8* %p, i32* %q)
+; CHECK: [[pc:%.*]] = icmp eq i8* %p, null
+; CHECK: [[qc:%.*]] = icmp eq i32* %q, null
+; CHECK: [[b:%.*]] = and i1 [[pc]], [[qc]]
+; CHECK: ret i1 [[b]]
+
+ %pp = ptrtoint i8* %p to i64
+ %qq = ptrtoint i32* %q to i64
+ %o = or i64 %pp, %qq
+ %b = icmp eq i64 %o, 0
+ ret i1 %b
+}
More information about the llvm-commits
mailing list