[llvm] daae927 - [InstSimplify] Clean up SimplifyReplacedWithOp implementation (NFCI)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 21 07:38:05 PDT 2021
Author: Nikita Popov
Date: 2021-03-21T15:30:30+01:00
New Revision: daae927f9c130000c914a27dd1392599190d470f
URL: https://github.com/llvm/llvm-project/commit/daae927f9c130000c914a27dd1392599190d470f
DIFF: https://github.com/llvm/llvm-project/commit/daae927f9c130000c914a27dd1392599190d470f.diff
LOG: [InstSimplify] Clean up SimplifyReplacedWithOp implementation (NFCI)
Replace Op with RepOp up-front, and then always work with the new
operands, rather than checking for replacement in various places.
Added:
Modified:
llvm/lib/Analysis/InstructionSimplify.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp
index 7790255e22c4..4d7e281312ba 100644
--- a/llvm/lib/Analysis/InstructionSimplify.cpp
+++ b/llvm/lib/Analysis/InstructionSimplify.cpp
@@ -3928,9 +3928,14 @@ static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
return nullptr;
auto *I = dyn_cast<Instruction>(V);
- if (!I)
+ if (!I || !is_contained(I->operands(), Op))
return nullptr;
+ // Replace Op with RepOp in instruction operands.
+ SmallVector<Value *, 8> NewOps(I->getNumOperands());
+ transform(I->operands(), NewOps.begin(),
+ [&](Value *V) { return V == Op ? RepOp : V; });
+
// Consider:
// %cmp = icmp eq i32 %x, 2147483647
// %add = add nsw i32 %x, 1
@@ -3942,89 +3947,54 @@ static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
if (!AllowRefinement && canCreatePoison(cast<Operator>(I)))
return nullptr;
- // The simplification queries below may return the original value. Consider:
- // %div = udiv i32 %arg, %arg2
- // %mul = mul nsw i32 %div, %arg2
- // %cmp = icmp eq i32 %mul, %arg
- // %sel = select i1 %cmp, i32 %div, i32 undef
- // Replacing %arg by %mul, %div becomes "udiv i32 %mul, %arg2", which
- // simplifies back to %arg. This can only happen because %mul does not
- // dominate %div. To ensure a consistent return value contract, we make sure
- // that this case returns nullptr as well.
- auto PreventSelfSimplify = [V](Value *Simplified) {
- return Simplified != V ? Simplified : nullptr;
- };
-
- // If this is a binary operator, try to simplify it with the replaced op.
- if (auto *B = dyn_cast<BinaryOperator>(I)) {
- if (MaxRecurse) {
- if (B->getOperand(0) == Op)
- return PreventSelfSimplify(SimplifyBinOp(B->getOpcode(), RepOp,
- B->getOperand(1), Q,
- MaxRecurse - 1));
- if (B->getOperand(1) == Op)
- return PreventSelfSimplify(SimplifyBinOp(B->getOpcode(),
- B->getOperand(0), RepOp, Q,
- MaxRecurse - 1));
- }
- }
+ if (MaxRecurse) {
+ // The simplification queries below may return the original value. Consider:
+ // %div = udiv i32 %arg, %arg2
+ // %mul = mul nsw i32 %div, %arg2
+ // %cmp = icmp eq i32 %mul, %arg
+ // %sel = select i1 %cmp, i32 %div, i32 undef
+ // Replacing %arg by %mul, %div becomes "udiv i32 %mul, %arg2", which
+ // simplifies back to %arg. This can only happen because %mul does not
+ // dominate %div. To ensure a consistent return value contract, we make sure
+ // that this case returns nullptr as well.
+ auto PreventSelfSimplify = [V](Value *Simplified) {
+ return Simplified != V ? Simplified : nullptr;
+ };
- // Same for CmpInsts.
- if (CmpInst *C = dyn_cast<CmpInst>(I)) {
- if (MaxRecurse) {
- if (C->getOperand(0) == Op)
- return PreventSelfSimplify(SimplifyCmpInst(C->getPredicate(), RepOp,
- C->getOperand(1), Q,
- MaxRecurse - 1));
- if (C->getOperand(1) == Op)
- return PreventSelfSimplify(SimplifyCmpInst(C->getPredicate(),
- C->getOperand(0), RepOp, Q,
- MaxRecurse - 1));
- }
- }
+ if (auto *B = dyn_cast<BinaryOperator>(I))
+ return PreventSelfSimplify(SimplifyBinOp(B->getOpcode(), NewOps[0],
+ NewOps[1], Q, MaxRecurse - 1));
+
+ if (CmpInst *C = dyn_cast<CmpInst>(I))
+ return PreventSelfSimplify(SimplifyCmpInst(C->getPredicate(), NewOps[0],
+ NewOps[1], Q, MaxRecurse - 1));
- // Same for GEPs.
- if (auto *GEP = dyn_cast<GetElementPtrInst>(I)) {
- if (MaxRecurse) {
- SmallVector<Value *, 8> NewOps(GEP->getNumOperands());
- transform(GEP->operands(), NewOps.begin(),
- [&](Value *V) { return V == Op ? RepOp : V; });
+ if (auto *GEP = dyn_cast<GetElementPtrInst>(I))
return PreventSelfSimplify(SimplifyGEPInst(GEP->getSourceElementType(),
NewOps, Q, MaxRecurse - 1));
- }
- }
- // TODO: We could hand off more cases to instsimplify here.
+ // TODO: We could hand off more cases to instsimplify here.
+ }
// If all operands are constant after substituting Op for RepOp then we can
// constant fold the instruction.
- if (Constant *CRepOp = dyn_cast<Constant>(RepOp)) {
- // Build a list of all constant operands.
- SmallVector<Constant *, 8> ConstOps;
- for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
- if (I->getOperand(i) == Op)
- ConstOps.push_back(CRepOp);
- else if (Constant *COp = dyn_cast<Constant>(I->getOperand(i)))
- ConstOps.push_back(COp);
- else
- break;
- }
-
- // All operands were constants, fold it.
- if (ConstOps.size() == I->getNumOperands()) {
- if (CmpInst *C = dyn_cast<CmpInst>(I))
- return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0],
- ConstOps[1], Q.DL, Q.TLI);
+ SmallVector<Constant *, 8> ConstOps;
+ for (Value *NewOp : NewOps) {
+ if (Constant *ConstOp = dyn_cast<Constant>(NewOp))
+ ConstOps.push_back(ConstOp);
+ else
+ return nullptr;
+ }
- if (LoadInst *LI = dyn_cast<LoadInst>(I))
- if (!LI->isVolatile())
- return ConstantFoldLoadFromConstPtr(ConstOps[0], LI->getType(), Q.DL);
+ if (CmpInst *C = dyn_cast<CmpInst>(I))
+ return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0],
+ ConstOps[1], Q.DL, Q.TLI);
- return ConstantFoldInstOperands(I, ConstOps, Q.DL, Q.TLI);
- }
- }
+ if (LoadInst *LI = dyn_cast<LoadInst>(I))
+ if (!LI->isVolatile())
+ return ConstantFoldLoadFromConstPtr(ConstOps[0], LI->getType(), Q.DL);
- return nullptr;
+ return ConstantFoldInstOperands(I, ConstOps, Q.DL, Q.TLI);
}
Value *llvm::SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
More information about the llvm-commits
mailing list