Home
last modified time | relevance | path

Searched refs:BlockLiveness (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DStackLifetime.cpp135 BlockLiveness.try_emplace(BB, NumAllocas).first->getSecond(); in collectMarkers()
186 BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in calculateLocalLiveness()
191 LivenessMap::const_iterator I = BlockLiveness.find(PredBB); in calculateLocalLiveness()
193 if (I == BlockLiveness.end()) in calculateLocalLiveness()
234 for (auto IT : BlockLiveness) { in calculateLiveIntervals()
291 for (auto IT : BlockLiveness) { in dumpBlockLiveness()
293 const BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in dumpBlockLiveness()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DStackColoring.cpp434 LivenessMap BlockLiveness; member in __anon1be926320111::StackColoring
574 LivenessMap::const_iterator BI = BlockLiveness.find(MBB); in dumpBB()
575 assert(BI != BlockLiveness.end() && "Block not found"); in dumpBB()
762 BlockLifetimeInfo &BlockInfo = BlockLiveness[MBB]; in collectMarkers()
815 LivenessMap::iterator BI = BlockLiveness.find(BB); in calculateLocalLiveness()
816 assert(BI != BlockLiveness.end() && "Block not found"); in calculateLocalLiveness()
822 LivenessMap::const_iterator I = BlockLiveness.find(Pred); in calculateLocalLiveness()
826 if (I != BlockLiveness.end()) in calculateLocalLiveness()
871 BlockLifetimeInfo &MBBLiveness = BlockLiveness[&MBB]; in calculateLiveIntervals()
1212 BlockLiveness.clear(); in runOnMachineFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DStackLifetime.h95 LivenessMap BlockLiveness; variable