Home
last modified time | relevance | path

Searched refs:LoopCosts (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DLoopCacheAnalysis.h201 auto IT = llvm::find_if(LoopCosts, [&L](const LoopCacheCostTy &LCC) { in getLoopCost()
204 return (IT != LoopCosts.end()) ? (*IT).second : -1; in getLoopCost()
208 ArrayRef<LoopCacheCostTy> getLoopCosts() const { return LoopCosts; } in getLoopCosts()
240 sort(LoopCosts, [](const LoopCacheCostTy &A, const LoopCacheCostTy &B) { in sortLoopCosts()
253 SmallVector<LoopCacheCostTy, 3> LoopCosts; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp474 for (const auto &LC : CC.LoopCosts) { in operator <<()
485 : Loops(Loops), TripCounts(), LoopCosts(), in CacheCost()
527 assert((std::find_if(LoopCosts.begin(), LoopCosts.end(), in calculateCacheFootprint()
530 }) == LoopCosts.end()) && in calculateCacheFootprint()
533 LoopCosts.push_back(std::make_pair(L, LoopCost)); in calculateCacheFootprint()