Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp21 auto CacheIt = CachedNames.find(FuncId); in SymbolOrNumber() local
22 if (CacheIt != CachedNames.end()) in SymbolOrNumber()
23 return CacheIt->second; in SymbolOrNumber()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DCaptureTracking.cpp379 SmallDenseMap<const Value *, bool, 8>::iterator CacheIt; in isNonEscapingLocalObject() local
382 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject()
385 return CacheIt->second; in isNonEscapingLocalObject()
397 CacheIt->second = Ret; in isNonEscapingLocalObject()
H A DMemoryBuiltins.cpp884 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() local
886 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
887 CacheMap.erase(CacheIt); in compute()
912 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() local
913 if (CacheIt != CacheMap.end()) in compute_()
914 return CacheIt->second; in compute_()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1442 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() local
1447 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}}); in getSymbolInfo()
1449 return CacheIt->second; in getSymbolInfo()
1483 if (CacheIt != Cache.end()) in getSymbolInfo()
1484 CacheIt->second = Ret; in getSymbolInfo()
/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp1129 auto CacheIt = PenaltyCache.find(CacheKey); in format() local
1130 if (DryRun && CacheIt != PenaltyCache.end()) in format()
1131 return CacheIt->second; in format()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp439 auto CacheIt = Cache.find(Cond); in findLIVLoopCondition() local
440 if (CacheIt != Cache.end()) in findLIVLoopCondition()
441 return CacheIt->second; in findLIVLoopCondition()