Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DStackLifetime.cpp129 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()
237 for (auto &[BB, BlockInfo] : BlockLiveness) { in calculateLocalLiveness()
245 for (auto IT : BlockLiveness) { in calculateLiveIntervals()
300 for (auto IT : BlockLiveness) { in dumpBlockLiveness()
302 const BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in dumpBlockLiveness()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DStackColoring.cpp432 LivenessMap BlockLiveness; member in __anon23f2cc7e0111::StackColoring
572 LivenessMap::const_iterator BI = BlockLiveness.find(MBB); in dumpBB()
573 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()
1215 BlockLiveness.clear(); in runOnMachineFunction()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DStackLifetime.h94 LivenessMap BlockLiveness; variable