Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DBranchFolding.cpp313 static unsigned ComputeCommonTailLength(MachineBasicBlock *MBB1, in ComputeCommonTailLength() argument
317 I1 = MBB1->end(); in ComputeCommonTailLength()
321 while (I1 != MBB1->begin() && I2 != MBB2->begin()) { in ComputeCommonTailLength()
325 if (I1==MBB1->begin()) { in ComputeCommonTailLength()
364 if (I1 == MBB1->begin() && I2 != MBB2->begin()) { in ComputeCommonTailLength()
373 if (I2 == MBB2->begin() && I1 != MBB1->begin()) { in ComputeCommonTailLength()
376 if (I1 == MBB1->begin()) in ComputeCommonTailLength()
530 static bool ProfitableToMerge(MachineBasicBlock *MBB1, in ProfitableToMerge() argument
538 CommonTailLen = ComputeCommonTailLength(MBB1, MBB2, I1, I2); in ProfitableToMerge()
541 DEBUG(dbgs() << "Common tail length of BB#" << MBB1->getNumber() in ProfitableToMerge()
[all …]
DLiveIntervalAnalysis.cpp611 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start); in intervalIsInOneMBB() local
613 return MBB1 == MBB2 ? MBB1 : nullptr; in intervalIsInOneMBB()
/external/llvm/lib/Target/R600/
DAMDILCFGStructurizer.cpp342 MachineBasicBlock *findNearestCommonPostDom(MachineBasicBlock *MBB1,
1764 MachineBasicBlock *MBB1 = *MBB->succ_begin(); in removeRedundantConditionalBranch() local
1766 if (MBB1 != MBB2) in removeRedundantConditionalBranch()
1773 SHOWNEWBLK(MBB1, "Removing redundant successor"); in removeRedundantConditionalBranch()
1774 MBB->removeSuccessor(MBB1); in removeRedundantConditionalBranch()
1843 AMDGPUCFGStructurizer::findNearestCommonPostDom(MachineBasicBlock *MBB1, in findNearestCommonPostDom() argument
1846 if (PDT->dominates(MBB1, MBB2)) in findNearestCommonPostDom()
1847 return MBB1; in findNearestCommonPostDom()
1848 if (PDT->dominates(MBB2, MBB1)) in findNearestCommonPostDom()
1851 MachineDomTreeNode *Node1 = PDT->getNode(MBB1); in findNearestCommonPostDom()
[all …]