Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp96 auto CacheIter = CacheMap.find(Offset); in readBytes()
97 if (CacheIter != CacheMap.end()) { in readBytes()
110 for (auto &CacheItem : CacheMap) { in readBytes()
154 if (CacheIter != CacheMap.end()) { in readBytes()
159 CacheMap.insert(std::make_pair(Offset, List)); in readBytes()
271 void MappedBlockStream::invalidateCache() { CacheMap.shrink_and_clear(); } in invalidateCache()
279 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite()
/openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DFormatCache.h48 typedef std::map<ConstString, Entry> CacheMap; typedef
49 CacheMap m_map;
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp1026 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute()
1028 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
1029 CacheMap.erase(CacheIt); in compute()
1054 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_()
1055 if (CacheIt != CacheMap.end()) in compute_()
1091 CacheMap[V] = Result; in compute_()
1173 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); in visitPHINode()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h270 CacheMapTy CacheMap; variable