Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp123 SmallDenseMap<const Value *, bool, 8>::iterator CacheIt; in isNonEscapingLocalObject() local
126 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject()
129 return CacheIt->second; in isNonEscapingLocalObject()
141 CacheIt->second = Ret; in isNonEscapingLocalObject()
155 CacheIt->second = Ret; in isNonEscapingLocalObject()
849 auto CacheIt = AAQI.AliasCache.find(AAQueryInfo::LocPair(LocA, LocB)); in alias() local
850 if (CacheIt != AAQI.AliasCache.end()) in alias()
851 return CacheIt->second; in alias()
853 CacheIt = AAQI.AliasCache.find(AAQueryInfo::LocPair(LocB, LocA)); in alias()
854 if (CacheIt != AAQI.AliasCache.end()) in alias()
[all …]
DMemoryBuiltins.cpp848 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() local
850 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
851 CacheMap.erase(CacheIt); in compute()
876 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() local
877 if (CacheIt != CacheMap.end()) in compute_()
878 return CacheIt->second; in compute_()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp1363 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() local
1368 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}}); in getSymbolInfo()
1370 return CacheIt->second; in getSymbolInfo()
1404 if (CacheIt != Cache.end()) in getSymbolInfo()
1405 CacheIt->second = Ret; in getSymbolInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopUnswitch.cpp426 auto CacheIt = Cache.find(Cond); in FindLIVLoopCondition() local
427 if (CacheIt != Cache.end()) in FindLIVLoopCondition()
428 return CacheIt->second; in FindLIVLoopCondition()