Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/libc/benchmarks/
H A DLibcMemoryBenchmark.cpp69 const auto CacheIt = find_if(CacheInfos, IsL1DataCache); in getL1DataCacheSize() local
70 if (CacheIt != CacheInfos.end()) in getL1DataCacheSize()
71 return CacheIt->Size; in getL1DataCacheSize()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DCaptureTracking.cpp490 SmallDenseMap<const Value *, bool, 8>::iterator CacheIt; in isNonEscapingLocalObject() local
493 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject()
496 return CacheIt->second; in isNonEscapingLocalObject()
508 CacheIt->second = Ret; in isNonEscapingLocalObject()
H A DMemoryBuiltins.cpp1057 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() local
1059 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
1060 CacheMap.erase(CacheIt); in compute()
1085 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() local
1086 if (CacheIt != CacheMap.end()) in compute_()
1087 return CacheIt->second; in compute_()
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1473 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() local
1478 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}}); in getSymbolInfo()
1480 return CacheIt->second; in getSymbolInfo()
1514 if (CacheIt != Cache.end()) in getSymbolInfo()
1515 CacheIt->second = Ret; in getSymbolInfo()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineFunction.cpp1030 auto CacheIt = DbgPHICache.find(Dest); in salvageCopySSA() local
1031 if (CacheIt != DbgPHICache.end()) in salvageCopySSA()
1032 return CacheIt->second; in salvageCopySSA()
/llvm-project-15.0.7/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp1274 auto CacheIt = PenaltyCache.find(CacheKey); in format() local
1275 if (DryRun && CacheIt != PenaltyCache.end()) in format()
1276 return CacheIt->second; in format()