Searched refs:MBB2 (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | BranchFolding.cpp | 326 MachineBasicBlock *MBB2, in ComputeCommonTailLength() argument 330 I2 = MBB2->end(); in ComputeCommonTailLength() 333 while (I1 != MBB1->begin() && I2 != MBB2->begin()) { in ComputeCommonTailLength() 339 if (I2==MBB2->begin()) in ComputeCommonTailLength() 352 if (I2==MBB2->begin()) { in ComputeCommonTailLength() 376 if (I1 == MBB1->begin() && I2 != MBB2->begin()) { in ComputeCommonTailLength() 379 if (I2 == MBB2->begin()) in ComputeCommonTailLength() 385 if (I2 == MBB2->begin() && I1 != MBB1->begin()) { in ComputeCommonTailLength() 564 ProfitableToMerge(MachineBasicBlock *MBB1, MachineBasicBlock *MBB2, in ProfitableToMerge() argument 574 auto Funclet2 = FuncletMembership.find(MBB2); in ProfitableToMerge() [all …]
|
D | MachineSink.cpp | 529 if (MachineBasicBlock *MBB2 = in isProfitableToSinkTo() local 531 return isProfitableToSinkTo(Reg, MI, SuccToSinkTo, MBB2, AllSuccessors); in isProfitableToSinkTo()
|
D | LiveIntervalAnalysis.cpp | 819 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop); in intervalIsInOneMBB() local 820 return MBB1 == MBB2 ? MBB1 : nullptr; in intervalIsInOneMBB()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDILCFGStructurizer.cpp | 346 MachineBasicBlock *MBB2); 1751 MachineBasicBlock *MBB2 = *std::next(MBB->succ_begin()); in removeRedundantConditionalBranch() local 1752 if (MBB1 != MBB2) in removeRedundantConditionalBranch() 1830 MachineBasicBlock *MBB2) { in findNearestCommonPostDom() argument 1832 if (PDT->dominates(MBB1, MBB2)) in findNearestCommonPostDom() 1834 if (PDT->dominates(MBB2, MBB1)) in findNearestCommonPostDom() 1835 return MBB2; in findNearestCommonPostDom() 1838 MachineDomTreeNode *Node2 = PDT->getNode(MBB2); in findNearestCommonPostDom() 1842 return findNearestCommonPostDom(*MBB1->succ_begin(), MBB2); in findNearestCommonPostDom() 1843 if (!Node2 && MBB2->succ_size() == 1) in findNearestCommonPostDom() [all …]
|