Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp98 auto CacheIter = CacheMap.find(Offset); in readBytes()
99 if (CacheIter != CacheMap.end()) { in readBytes()
112 for (auto &CacheItem : CacheMap) { in readBytes()
156 if (CacheIter != CacheMap.end()) { in readBytes()
161 CacheMap.insert(std::make_pair(Offset, List)); in readBytes()
273 void MappedBlockStream::invalidateCache() { CacheMap.shrink_and_clear(); } in invalidateCache()
281 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormatCache.h68 typedef std::map<ConstString, Entry> CacheMap; typedef
69 CacheMap m_map;
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp765 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute()
767 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute()
768 CacheMap.erase(CacheIt); in compute()
789 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_()
790 if (CacheIt != CacheMap.end()) in compute_()
826 CacheMap[V] = Result; in compute_()
909 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); in visitPHINode()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h105 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h266 CacheMapTy CacheMap; variable