Home
last modified time | relevance | path

Searched refs:CacheIt (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp22 auto CacheIt = CachedNames.find(FuncId); in SymbolOrNumber() local
23 if (CacheIt != CachedNames.end()) in SymbolOrNumber()
24 return CacheIt->second; in SymbolOrNumber()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp765 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() local
767 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
768 CacheMap.erase(CacheIt); in compute()
789 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() local
790 if (CacheIt != CacheMap.end()) in compute_()
791 return CacheIt->second; in compute_()
H A DBasicAliasAnalysis.cpp809 auto CacheIt = AliasCache.find(LocPair(LocA, LocB)); in alias() local
810 if (CacheIt != AliasCache.end()) in alias()
811 return CacheIt->second; in alias()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1170 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() local
1175 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}}); in getSymbolInfo()
1177 return CacheIt->second; in getSymbolInfo()
1211 if (CacheIt != Cache.end()) in getSymbolInfo()
1212 CacheIt->second = Ret; in getSymbolInfo()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp425 auto CacheIt = Cache.find(Cond); in FindLIVLoopCondition() local
426 if (CacheIt != Cache.end()) in FindLIVLoopCondition()
427 return CacheIt->second; in FindLIVLoopCondition()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp1024 auto CacheIt = PenaltyCache.find(CacheKey); in format() local
1025 if (DryRun && CacheIt != PenaltyCache.end()) in format()
1026 return CacheIt->second; in format()