forked from OSchip/llvm-project
[NFCI][SCEV] Avoid recursion in SCEVExpander::isHighCostExpansion*()
Summary: As noted in [[ https://bugs.llvm.org/show_bug.cgi?id=45201 | PR45201 ]], [[ https://bugs.llvm.org/show_bug.cgi?id=10090 | PR10090 ]] SCEV doesn't always avoid recursive algorithms, and that causes issues with large expression depths and/or smaller stack sizes. In `SCEVExpander::isHighCostExpansion*()` case, the refactoring to avoid recursion is rather idiomatic. We simply need to place the root expr into a vector, and iterate over vector elements accounting for the cost of each one, adding new exprs at the end of the vector, thus achieving recursion-less traversal. The order in which we will visit exprs doesn't matter here, so we will be fine with the most basic approach of using SmallVector and inserting/extracting from the back, which accidentally is the same depth-first traversal that we were doing previously recursively. Reviewers: mkazantsev, reames, wmi, ekatz Reviewed By: mkazantsev Subscribers: hiraditya, javed.absar, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D76273
This commit is contained in:
parent
73cea83a6f
commit
85334b030a
|
@ -16,6 +16,7 @@
|
|||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
#include "llvm/ADT/Optional.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Analysis/ScalarEvolutionExpressions.h"
|
||||
#include "llvm/Analysis/ScalarEvolutionNormalization.h"
|
||||
#include "llvm/Analysis/TargetFolder.h"
|
||||
|
@ -186,10 +187,18 @@ namespace llvm {
|
|||
assert(At && "This function requires At instruction to be provided.");
|
||||
if (!TTI) // In assert-less builds, avoid crashing
|
||||
return true; // by always claiming to be high-cost.
|
||||
SmallVector<const SCEV *, 8> Worklist;
|
||||
SmallPtrSet<const SCEV *, 8> Processed;
|
||||
int BudgetRemaining = Budget * TargetTransformInfo::TCC_Basic;
|
||||
return isHighCostExpansionHelper(Expr, L, *At, BudgetRemaining, *TTI,
|
||||
Processed);
|
||||
Worklist.emplace_back(Expr);
|
||||
while (!Worklist.empty()) {
|
||||
const SCEV *S = Worklist.pop_back_val();
|
||||
if (isHighCostExpansionHelper(S, L, *At, BudgetRemaining, *TTI,
|
||||
Processed, Worklist))
|
||||
return true;
|
||||
}
|
||||
assert(BudgetRemaining >= 0 && "Should have returned from inner loop.");
|
||||
return false;
|
||||
}
|
||||
|
||||
/// This method returns the canonical induction variable of the specified
|
||||
|
@ -334,7 +343,8 @@ namespace llvm {
|
|||
bool isHighCostExpansionHelper(const SCEV *S, Loop *L,
|
||||
const Instruction &At, int &BudgetRemaining,
|
||||
const TargetTransformInfo &TTI,
|
||||
SmallPtrSetImpl<const SCEV *> &Processed);
|
||||
SmallPtrSetImpl<const SCEV *> &Processed,
|
||||
SmallVectorImpl<const SCEV *> &Worklist);
|
||||
|
||||
/// Insert the specified binary operator, doing a small amount of work to
|
||||
/// avoid inserting an obviously redundant operation, and hoisting to an
|
||||
|
|
|
@ -2137,7 +2137,8 @@ SCEVExpander::getRelatedExistingExpansion(const SCEV *S, const Instruction *At,
|
|||
|
||||
bool SCEVExpander::isHighCostExpansionHelper(
|
||||
const SCEV *S, Loop *L, const Instruction &At, int &BudgetRemaining,
|
||||
const TargetTransformInfo &TTI, SmallPtrSetImpl<const SCEV *> &Processed) {
|
||||
const TargetTransformInfo &TTI, SmallPtrSetImpl<const SCEV *> &Processed,
|
||||
SmallVectorImpl<const SCEV *> &Worklist) {
|
||||
if (BudgetRemaining < 0)
|
||||
return true; // Already run out of budget, give up.
|
||||
|
||||
|
@ -2172,13 +2173,12 @@ bool SCEVExpander::isHighCostExpansionHelper(
|
|||
llvm_unreachable("There are no other cast types.");
|
||||
}
|
||||
const SCEV *Op = CastExpr->getOperand();
|
||||
BudgetRemaining -=
|
||||
TTI.getCastInstrCost(Opcode, S->getType(), Op->getType());
|
||||
return isHighCostExpansionHelper(Op, L, At, BudgetRemaining, TTI,
|
||||
Processed);
|
||||
BudgetRemaining -= TTI.getCastInstrCost(Opcode, /*Dst=*/S->getType(),
|
||||
/*Src=*/Op->getType());
|
||||
Worklist.emplace_back(Op);
|
||||
return false; // Will answer upon next entry into this function.
|
||||
}
|
||||
|
||||
|
||||
if (auto *UDivExpr = dyn_cast<SCEVUDivExpr>(S)) {
|
||||
// If the divisor is a power of two count this as a logical right-shift.
|
||||
if (auto *SC = dyn_cast<SCEVConstant>(UDivExpr->getRHS())) {
|
||||
|
@ -2188,8 +2188,8 @@ bool SCEVExpander::isHighCostExpansionHelper(
|
|||
// Note that we don't count the cost of RHS, because it is a constant,
|
||||
// and we consider those to be free. But if that changes, we would need
|
||||
// to log2() it first before calling isHighCostExpansionHelper().
|
||||
return isHighCostExpansionHelper(UDivExpr->getLHS(), L, At,
|
||||
BudgetRemaining, TTI, Processed);
|
||||
Worklist.emplace_back(UDivExpr->getLHS());
|
||||
return false; // Will answer upon next entry into this function.
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2208,10 +2208,8 @@ bool SCEVExpander::isHighCostExpansionHelper(
|
|||
// Need to count the cost of this UDiv.
|
||||
BudgetRemaining -=
|
||||
TTI.getArithmeticInstrCost(Instruction::UDiv, S->getType());
|
||||
return isHighCostExpansionHelper(UDivExpr->getLHS(), L, At, BudgetRemaining,
|
||||
TTI, Processed) ||
|
||||
isHighCostExpansionHelper(UDivExpr->getRHS(), L, At, BudgetRemaining,
|
||||
TTI, Processed);
|
||||
Worklist.insert(Worklist.end(), {UDivExpr->getLHS(), UDivExpr->getRHS()});
|
||||
return false; // Will answer upon next entry into this function.
|
||||
}
|
||||
|
||||
if (const auto *NAry = dyn_cast<SCEVAddRecExpr>(S)) {
|
||||
|
@ -2264,12 +2262,9 @@ bool SCEVExpander::isHighCostExpansionHelper(
|
|||
return true;
|
||||
|
||||
// And finally, the operands themselves should fit within the budget.
|
||||
for (const SCEV *Op : NAry->operands()) {
|
||||
if (isHighCostExpansionHelper(Op, L, At, BudgetRemaining, TTI, Processed))
|
||||
return true;
|
||||
}
|
||||
|
||||
return BudgetRemaining < 0;
|
||||
Worklist.insert(Worklist.end(), NAry->operands().begin(),
|
||||
NAry->operands().end());
|
||||
return false; // So far so good, though ops may be too costly?
|
||||
}
|
||||
|
||||
if (const SCEVNAryExpr *NAry = dyn_cast<SCEVNAryExpr>(S)) {
|
||||
|
@ -2301,15 +2296,16 @@ bool SCEVExpander::isHighCostExpansionHelper(
|
|||
|
||||
assert(NAry->getNumOperands() > 1 &&
|
||||
"Nary expr should have more than 1 operand.");
|
||||
for (const SCEV *Op : NAry->operands()) {
|
||||
if (isHighCostExpansionHelper(Op, L, At, BudgetRemaining, TTI, Processed))
|
||||
return true;
|
||||
if (Op == *NAry->op_begin())
|
||||
continue;
|
||||
BudgetRemaining -= PairCost;
|
||||
}
|
||||
// The simple nary expr will require one less op (or pair of ops)
|
||||
// than the number of it's terms.
|
||||
BudgetRemaining -= PairCost * (NAry->getNumOperands() - 1);
|
||||
if (BudgetRemaining < 0)
|
||||
return true;
|
||||
|
||||
return BudgetRemaining < 0;
|
||||
// And finally, the operands themselves should fit within the budget.
|
||||
Worklist.insert(Worklist.end(), NAry->operands().begin(),
|
||||
NAry->operands().end());
|
||||
return false; // So far so good, though ops may be too costly?
|
||||
}
|
||||
|
||||
llvm_unreachable("No other scev expressions possible.");
|
||||
|
|
Loading…
Reference in New Issue