Home
last modified time | relevance | path

Searched refs:CacheMap (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/DebugInfo/PDB/Raw/
DMappedBlockStream.cpp53 auto CacheIter = CacheMap.find(Offset); in readBytes()
54 if (CacheIter != CacheMap.end()) { in readBytes()
67 for (auto &CacheItem : CacheMap) { in readBytes()
111 if (CacheIter != CacheMap.end()) { in readBytes()
116 CacheMap.insert(std::make_pair(Offset, List)); in readBytes()
260 for (const auto &MapEntry : CacheMap) { in writeBytes()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineLoopRanges.h87 typedef DenseMap<const MachineLoop*, MachineLoopRange*> CacheMap; typedef
92 CacheMap Cache;
/external/llvm/lib/Analysis/
DMemoryBuiltins.cpp664 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute()
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_()
686 if (CacheIt != CacheMap.end()) in compute_()
721 CacheMap[V] = Result; in compute_()
805 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); in visitPHINode()
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DMappedBlockStream.h62 mutable DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
/external/llvm/include/llvm/Analysis/
DMemoryBuiltins.h222 CacheMapTy CacheMap; variable