Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
HDMappedBlockStream.cpp97 auto CacheIter = CacheMap.find(Offset); in readBytes()
98 if (CacheIter != CacheMap.end()) { in readBytes()
111 for (auto &CacheItem : CacheMap) { in readBytes()
155 if (CacheIter != CacheMap.end()) { in readBytes()
160 CacheMap.insert(std::make_pair(Offset, List)); in readBytes()
272 void MappedBlockStream::invalidateCache() { CacheMap.shrink_and_clear(); } in invalidateCache()
280 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
HDFormatCache.h48 typedef std::map<ConstString, Entry> CacheMap; typedef
49 CacheMap m_map;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDMemoryBuiltins.cpp848 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute()
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_()
877 if (CacheIt != CacheMap.end()) in compute_()
913 CacheMap[V] = Result; in compute_()
996 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); in visitPHINode()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
HDMappedBlockStream.h104 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDMemoryBuiltins.h297 CacheMapTy CacheMap; variable