Home
last modified time | relevance | path

Searched refs:BlockMap (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/IR/
H A DSafepointIRVerifier.cpp437 DenseMap<const BasicBlock *, BasicBlockState *> BlockMap; member in __anon18b6e8ff0311::GCPtrTracker
469 return BlockMap.find(BB) != BlockMap.end(); in isMapped()
535 BlockMap[&BB] = BBS; in GCPtrTracker()
540 for (auto &BBI : BlockMap) { in GCPtrTracker()
552 auto it = BlockMap.find(BB); in getBasicBlockState()
553 return it != BlockMap.end() ? it->second : nullptr; in getBasicBlockState()
599 for (auto &BBI : BlockMap) in recalculateBBsStates()
668 if (BlockMap[InBB]->AvailableOut.count(InValue)) in removeValidUnrelocatedDefs()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h54 typedef std::map<lldb::addr_t, lldb::DataBufferSP> BlockMap; typedef
61 BlockMap m_L1_cache; // A first level memory cache whose chunk sizes vary that
64 BlockMap m_L2_cache; // A memory cache of fixed size chinks
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DMemory.cpp64 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Flush()
96 BlockMap::iterator pos = m_L2_cache.find(curr_addr); in Flush()
142 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Read()
184 BlockMap::const_iterator pos = m_L2_cache.find(curr_addr); in Read()
185 BlockMap::const_iterator end = m_L2_cache.end(); in Read()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h386 return BlockMap[B->getBlockID()]; in lookupBlock()
502 std::vector<til::BasicBlock *> BlockMap; variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp814 BlockMap.resize(NBlocks, nullptr); in enterCFG()
819 BlockMap[B->getBlockID()] = BB; in enterCFG()
855 CurrentBB->addPredecessor(BlockMap[Pred->getBlockID()]); in handlePredecessor()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1542 NonLocalDepInfo &BlockMap = NLDI->second.first; in removeInstruction() local
1543 for (auto &Entry : BlockMap) in removeInstruction()