Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DMemory.h47 typedef std::map<lldb::addr_t, lldb::DataBufferSP> BlockMap; typedef
52 BlockMap m_L1_cache; // A first level memory cache whose chunk sizes vary that
55 BlockMap m_L2_cache; // A memory cache of fixed size chinks
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DSafepointIRVerifier.cpp448 DenseMap<const BasicBlock *, BasicBlockState *> BlockMap; member in __anon0a15d7ce0311::GCPtrTracker
480 return BlockMap.find(BB) != BlockMap.end(); in isMapped()
546 BlockMap[&BB] = BBS; in GCPtrTracker()
551 for (auto &BBI : BlockMap) { in GCPtrTracker()
563 return BlockMap.lookup(BB); in getBasicBlockState()
609 for (auto &BBI : BlockMap) in recalculateBBsStates()
678 if (BlockMap[InBB]->AvailableOut.count(InValue)) in removeValidUnrelocatedDefs()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DMemory.cpp61 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Flush()
93 BlockMap::iterator pos = m_L2_cache.find(curr_addr); in Flush()
139 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Read()
181 BlockMap::const_iterator pos = m_L2_cache.find(curr_addr); in Read()
182 BlockMap::const_iterator end = m_L2_cache.end(); in Read()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h385 return BlockMap[B->getBlockID()]; in lookupBlock()
501 std::vector<til::BasicBlock *> BlockMap; variable
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp818 BlockMap.resize(NBlocks, nullptr); in enterCFG()
823 BlockMap[B->getBlockID()] = BB; in enterCFG()
859 CurrentBB->addPredecessor(BlockMap[Pred->getBlockID()]); in handlePredecessor()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp3783 DenseMap<MachineBasicBlock *, LDVSSABlock *> BlockMap; member in __anon36b66d1c1111::LDVSSAUpdater
3792 for (auto &Block : BlockMap) in reset()
3797 BlockMap.clear(); in reset()
3805 auto it = BlockMap.find(BB); in getSSALDVBlock()
3806 if (it == BlockMap.end()) { in getSSALDVBlock()
3807 BlockMap[BB] = new LDVSSABlock(*BB, *this); in getSSALDVBlock()
3808 it = BlockMap.find(BB); in getSSALDVBlock()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1519 NonLocalDepInfo &BlockMap = NLDI->second.first; in removeInstruction() local
1520 for (auto &Entry : BlockMap) in removeInstruction()