Searched refs:getSetupCost (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1206 static unsigned getSetupCost(const SCEV *Reg, unsigned Depth) { function
1212 return getSetupCost(S->getStart(), Depth - 1);
1214 return getSetupCost(S->getOperand(), Depth - 1);
1218 return i + getSetupCost(Reg, Depth - 1);
1221 return getSetupCost(S->getLHS(), Depth - 1) +
1222 getSetupCost(S->getRHS(), Depth - 1);
1288 C.SetupCost += getSetupCost(Reg, SetupCostDepthLimit);

Completed in 183 milliseconds