Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DStackLifetime.cpp130 BlockLiveness.try_emplace(BB, NumAllocas).first->getSecond(); in collectMarkers()
181 BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in calculateLocalLiveness()
186 LivenessMap::const_iterator I = BlockLiveness.find(PredBB); in calculateLocalLiveness()
188 if (I == BlockLiveness.end()) in calculateLocalLiveness()
229 for (auto IT : BlockLiveness) { in calculateLiveIntervals()
284 for (auto IT : BlockLiveness) { in dumpBlockLiveness()
286 const BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in dumpBlockLiveness()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DStackColoring.cpp432 LivenessMap BlockLiveness; member in __anon90137c370111::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()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DStackLifetime.h94 LivenessMap BlockLiveness; variable