Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp996 auto CacheIt = DbgPHICache.find(Dest); in salvageCopySSA() local
997 if (CacheIt != DbgPHICache.end()) in salvageCopySSA()
998 return CacheIt->second; in salvageCopySSA()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1917 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() local
1922 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}}); in getSymbolInfo()
1924 return CacheIt->second; in getSymbolInfo()
1958 if (CacheIt != Cache.end()) in getSymbolInfo()
1959 CacheIt->second = Ret; in getSymbolInfo()
/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp1332 auto CacheIt = PenaltyCache.find(CacheKey); in format() local
1333 if (DryRun && CacheIt != PenaltyCache.end()) in format()
1334 return CacheIt->second; in format()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp966 auto CacheIt = [&DIVarCache, V](const auto &Container) { in cacheDIVar() local
973 CacheIt(findDbgDeclares(V)); in cacheDIVar()
974 CacheIt(findDPVDeclares(V)); in cacheDIVar()