Searched refs:LoopDepth (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86CmovConversion.cpp | 406 DepthInfo LoopDepth[LoopIterations] = {{0, 0}, {0, 0}}; in checkForProfitableCmovCandidates() local 444 for (DepthInfo &MaxDepth : LoopDepth) { in checkForProfitableCmovCandidates() 491 unsigned Diff[LoopIterations] = {LoopDepth[0].Depth - LoopDepth[0].OptDepth, in checkForProfitableCmovCandidates() 492 LoopDepth[1].Depth - LoopDepth[1].OptDepth}; in checkForProfitableCmovCandidates() 526 WorthOptLoop = Diff[0] * 8 >= LoopDepth[0].Depth; in checkForProfitableCmovCandidates() 529 (Diff[1] - Diff[0]) * 2 >= (LoopDepth[1].Depth - LoopDepth[0].Depth) && in checkForProfitableCmovCandidates() 530 (Diff[1] * 8 >= LoopDepth[1].Depth); in checkForProfitableCmovCandidates()
|
H A D | X86LoadValueInjectionLoadHardening.cpp | 499 unsigned LoopDepth = MLI.getLoopDepth(MBB); in getGadgetGraph() local 513 Builder.addEdge(LoopDepth, GI, Ref->getSecond()); in getGadgetGraph() 523 Builder.addEdge(LoopDepth, GI, EndBB.first); in getGadgetGraph() 528 TraverseCFG(Succ, GI, LoopDepth); in getGadgetGraph()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | LoopCacheAnalysis.cpp | 242 int LoopDepth = L.getLoopDepth(); in hasTemporalReuse() local 254 if (Level != LoopDepth && !CI.isZero()) { in hasTemporalReuse() 259 } else if (Level == LoopDepth && CI.getSExtValue() > MaxDistance) { in hasTemporalReuse()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopUnrollAndJam.cpp | 766 unsigned LoopDepth = Root.getLoopDepth(); in checkDependencies() local 782 if (!checkDependency(Earlier, Later, LoopDepth, CommonLoopDepth, false, in checkDependencies() 792 LoopDepth, CurLoopDepth, true, DI)) in checkDependencies()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SelectOptimize.cpp | 338 bool checkLoopHeuristics(const Loop *L, const CostInfo LoopDepth[2]);
|