Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp95 auto CacheIter = CacheMap.find(Offset); in readBytes()
96 if (CacheIter != CacheMap.end()) { in readBytes()
109 for (auto &CacheItem : CacheMap) { in readBytes()
153 if (CacheIter != CacheMap.end()) { in readBytes()
158 CacheMap.insert(std::make_pair(Offset, List)); in readBytes()
270 void MappedBlockStream::invalidateCache() { CacheMap.shrink_and_clear(); }
278 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp1204 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute()
1206 if (CacheIt != CacheMap.end() && CacheIt->second.anyKnown()) in compute()
1207 CacheMap.erase(CacheIt); in compute()
1238 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_()
1239 if (CacheIt != CacheMap.end()) in compute_()
1275 CacheMap[V] = SizeOffsetWeakTrackingVH(Result); in compute_()
1357 CacheMap[&PHI] = SizeOffsetWeakTrackingVH(SizePHI, OffsetPHI); in visitPHINode()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h103 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h350 CacheMapTy CacheMap; variable