Home
last modified time | relevance | path

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

/external/llvm-project/llvm/tools/llvm-xray/
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()
/external/llvm-project/llvm/lib/Analysis/
DCaptureTracking.cpp417 SmallDenseMap<const Value *, bool, 8>::iterator CacheIt; in isNonEscapingLocalObject() local
420 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject()
423 return CacheIt->second; in isNonEscapingLocalObject()
435 CacheIt->second = Ret; in isNonEscapingLocalObject()
449 CacheIt->second = Ret; in isNonEscapingLocalObject()
DMemoryBuiltins.cpp873 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() local
875 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
876 CacheMap.erase(CacheIt); in compute()
901 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() local
902 if (CacheIt != CacheMap.end()) in compute_()
903 return CacheIt->second; in compute_()
DBasicAliasAnalysis.cpp807 auto CacheIt = AAQI.AliasCache.find(Locs); in alias() local
808 if (CacheIt != AAQI.AliasCache.end()) in alias()
809 return CacheIt->second; in alias()
1386 auto CacheIt = AAQI.AliasCache.find(Locs); in aliasPHI() local
1387 assert((CacheIt != AAQI.AliasCache.end()) && in aliasPHI()
1389 OrigAliasResult = CacheIt->second; in aliasPHI()
1390 CacheIt->second = NoAlias; in aliasPHI()
/external/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_()
/external/llvm/lib/Analysis/
DMemoryBuiltins.cpp664 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() local
666 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
667 CacheMap.erase(CacheIt); in compute()
685 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() local
686 if (CacheIt != CacheMap.end()) in compute_()
687 return CacheIt->second; in compute_()
DBasicAliasAnalysis.cpp684 auto CacheIt = AliasCache.find(LocPair(LocA, LocB)); in alias() local
685 if (CacheIt != AliasCache.end()) in alias()
686 return CacheIt->second; in alias()
/external/clang/lib/Format/
DUnwrappedLineFormatter.cpp805 auto CacheIt = PenaltyCache.find(CacheKey); in format() local
806 if (DryRun && CacheIt != PenaltyCache.end()) in format()
807 return CacheIt->second; in format()
/external/llvm/lib/Transforms/Scalar/
DLoopUnswitch.cpp395 auto CacheIt = Cache.find(Cond); in FindLIVLoopCondition() local
396 if (CacheIt != Cache.end()) in FindLIVLoopCondition()
397 return CacheIt->second; in FindLIVLoopCondition()
/external/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()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp1433 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() local
1438 std::tie(CacheIt, New) = Cache.insert({*Sym, {0, 0}}); in getSymbolInfo()
1440 return CacheIt->second; in getSymbolInfo()
1474 if (CacheIt != Cache.end()) in getSymbolInfo()
1475 CacheIt->second = Ret; in getSymbolInfo()
/external/llvm-project/clang/lib/Format/
DUnwrappedLineFormatter.cpp1069 auto CacheIt = PenaltyCache.find(CacheKey); in format() local
1070 if (DryRun && CacheIt != PenaltyCache.end()) in format()
1071 return CacheIt->second; in format()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLoopUnswitch.cpp429 auto CacheIt = Cache.find(Cond); in findLIVLoopCondition() local
430 if (CacheIt != Cache.end()) in findLIVLoopCondition()
431 return CacheIt->second; in findLIVLoopCondition()
/external/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()