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

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp21 auto CacheIt = CachedNames.find(FuncId); local
22 if (CacheIt != CachedNames.end())
23 return CacheIt->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp123 SmallDenseMap<const Value *, bool, 8>::iterator CacheIt; local
126 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false});
129 return CacheIt->second;
141 CacheIt->second = Ret;
155 CacheIt->second = Ret;
849 auto CacheIt = AAQI.AliasCache.find(AAQueryInfo::LocPair(LocA, LocB)); local
850 if (CacheIt != AAQI.AliasCache.end())
851 return CacheIt->second;
853 CacheIt = AAQI.AliasCache.find(AAQueryInfo::LocPair(LocB, LocA));
854 if (CacheIt !
1612 auto CacheIt = AAQI.AliasCache.find(Locs); local
[all...]
H A DMemoryBuiltins.cpp848 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); local
850 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second))
851 CacheMap.erase(CacheIt);
876 CacheMapTy::iterator CacheIt = CacheMap.find(V); local
877 if (CacheIt != CacheMap.end())
878 return CacheIt->second;
912 // Don't reuse CacheIt since it may be invalid at this point.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp1076 auto CacheIt = PenaltyCache.find(CacheKey);
1077 if (DryRun && CacheIt != PenaltyCache.end())
1078 return CacheIt->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp426 auto CacheIt = Cache.find(Cond); local
427 if (CacheIt != Cache.end())
428 return CacheIt->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1363 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); local
1368 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}});
1370 return CacheIt->second;
1404 if (CacheIt != Cache.end())
1405 CacheIt->second = Ret;

Completed in 84 milliseconds