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.cpp1068 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute()
1070 if (CacheIt != CacheMap.end() && CacheIt->second.anyKnown()) in compute()
1071 CacheMap.erase(CacheIt); in compute()
1096 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_()
1097 if (CacheIt != CacheMap.end()) in compute_()
1133 CacheMap[V] = SizeOffsetWeakTrackingVH(Result); in compute_()
1215 CacheMap[&PHI] = SizeOffsetWeakTrackingVH(SizePHI, OffsetPHI); in visitPHINode()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h314 CacheMapTy CacheMap; variable