Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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/contrib/llvm-project/clang/lib/Rewrite/
H A DHTMLRewrite.cpp571 auto CacheIt = Cache->SyntaxHighlights.find(FID); in SyntaxHighlight() local
572 if (CacheIt != Cache->SyntaxHighlights.end()) { in SyntaxHighlight()
573 for (const RelexRewriteCache::RawHighlight &H : CacheIt->second) { in SyntaxHighlight()
743 auto CacheIt = Cache->MacroHighlights.find(FID); in HighlightMacros() local
744 if (CacheIt != Cache->MacroHighlights.end()) { in HighlightMacros()
745 for (const RelexRewriteCache::Highlight &H : CacheIt->second) { in HighlightMacros()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCaptureTracking.cpp460 SmallDenseMap<const Value *, bool, 8>::iterator CacheIt; in isNonEscapingLocalObject() local
463 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject()
466 return CacheIt->second; in isNonEscapingLocalObject()
478 CacheIt->second = Ret; in isNonEscapingLocalObject()
H A DMemoryBuiltins.cpp1068 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() local
1070 if (CacheIt != CacheMap.end() && CacheIt->second.anyKnown()) in compute()
1071 CacheMap.erase(CacheIt); in compute()
1096 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() local
1097 if (CacheIt != CacheMap.end()) in compute_()
1098 return CacheIt->second; in compute_()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp275 auto CacheIt = Cache.find(D); in IsFunctionTrivial() local
276 if (CacheIt != Cache.end()) in IsFunctionTrivial()
277 return CacheIt->second; in IsFunctionTrivial()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp1008 auto CacheIt = DbgPHICache.find(Dest); in salvageCopySSA() local
1009 if (CacheIt != DbgPHICache.end()) in salvageCopySSA()
1010 return CacheIt->second; in salvageCopySSA()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1919 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() local
1924 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}}); in getSymbolInfo()
1926 return CacheIt->second; in getSymbolInfo()
1960 if (CacheIt != Cache.end()) in getSymbolInfo()
1961 CacheIt->second = Ret; in getSymbolInfo()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp1341 auto CacheIt = PenaltyCache.find(CacheKey); in format() local
1342 if (DryRun && CacheIt != PenaltyCache.end()) in format()
1343 return CacheIt->second; in format()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp969 auto CacheIt = [&DIVarCache, V](const auto &Container) { in cacheDIVar() local
976 CacheIt(findDbgDeclares(V)); in cacheDIVar()
977 CacheIt(findDVRDeclares(V)); in cacheDIVar()