Home
last modified time | relevance | path

Searched refs:NextMBB (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidTrailingCall.cpp99 MachineBasicBlock *NextMBB = MBB.getNextNode(); in runOnMachineFunction() local
100 if (NextMBB && !NextMBB->isEHFuncletEntry()) in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.cpp79 void SystemZPostRASchedStrategy::enterMBB(MachineBasicBlock *NextMBB) { in enterMBB() argument
80 assert ((SchedStates.find(NextMBB) == SchedStates.end()) && in enterMBB()
82 LLVM_DEBUG(dbgs() << "** Entering " << printMBBReference(*NextMBB)); in enterMBB()
84 MBB = NextMBB; in enterMBB()
H A DSystemZFrameLowering.cpp1365 MachineBasicBlock *NextMBB; in inlineStackProbe() local
1416 NextMBB = SystemZ::splitBlockBefore(StackAllocMI, &MBB); in inlineStackProbe()
1417 MBB.addSuccessor(NextMBB); in inlineStackProbe()
1422 BuildMI(*NextMBB, StackAllocMI, DL, ZII->get(SystemZ::LGR)) in inlineStackProbe()
1430 BuildMI(*NextMBB, StackAllocMI, DL, ZII->get(SystemZ::LGR)) in inlineStackProbe()
1434 BuildMI(*NextMBB, StackAllocMI, DL, ZII->get(SystemZ::LG)) in inlineStackProbe()
1443 BuildMI(StackExtMBB, DL, ZII->get(SystemZ::J)).addMBB(NextMBB); in inlineStackProbe()
1444 StackExtMBB->addSuccessor(NextMBB); in inlineStackProbe()
1449 fullyRecomputeLiveIns({StackExtMBB, NextMBB}); in inlineStackProbe()
H A DSystemZMachineScheduler.h133 void enterMBB(MachineBasicBlock *NextMBB) override;
H A DSystemZISelLowering.cpp9041 MachineBasicBlock *NextMBB = nullptr; in emitMemMemWrapper() local
9064 NextMBB = (EndMBB ? SystemZ::emitBlockAfter(LoopMBB) : LoopMBB); in emitMemMemWrapper()
9065 DoneMBB = SystemZ::emitBlockAfter(NextMBB); in emitMemMemWrapper()
9119 NextMBB = (EndMBB ? SystemZ::emitBlockAfter(LoopMBB) : LoopMBB); in emitMemMemWrapper()
9148 .addReg(NextDestReg).addMBB(NextMBB); in emitMemMemWrapper()
9152 .addReg(NextSrcReg).addMBB(NextMBB); in emitMemMemWrapper()
9155 .addReg(NextCountReg).addMBB(NextMBB); in emitMemMemWrapper()
9168 MBB->addSuccessor(NextMBB); in emitMemMemWrapper()
9180 MBB = NextMBB; in emitMemMemWrapper()
9210 .addReg(NextDestReg).addMBB(NextMBB); in emitMemMemWrapper()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineLoopInfo.cpp108 MachineBasicBlock *NextMBB = &*std::next(BotMBB->getIterator()); in getBottomBlock() local
109 while (contains(NextMBB)) { in getBottomBlock()
110 BotMBB = NextMBB; in getBottomBlock()
113 NextMBB = &*std::next(BotMBB->getIterator()); in getBottomBlock()
H A DIfConversion.cpp1530 MachineBasicBlock &NextMBB = *NextBBI->BB; in IfConvertSimple() local
1553 Redefs.addLiveInsNoPristines(NextMBB); in IfConvertSimple()
1577 if (!canFallThroughTo(*BBI.BB, NextMBB)) { in IfConvertSimple()
1578 InsertUncondBranch(*BBI.BB, NextMBB, TII); in IfConvertSimple()
1616 MachineBasicBlock &NextMBB = *NextBBI->BB; in IfConvertTriangle() local
1654 Redefs.addLiveInsNoPristines(NextMBB); in IfConvertTriangle()
1662 CvtNext = MBPI->getEdgeProbability(&CvtMBB, &NextMBB); in IfConvertTriangle()
1664 BBNext = MBPI->getEdgeProbability(BBI.BB, &NextMBB); in IfConvertTriangle()
1716 bool isFallThrough = canFallThroughTo(*BBI.BB, NextMBB); in IfConvertTriangle()
1722 NextMBB.pred_size() == 1 && !NextBBI->HasFallThrough && in IfConvertTriangle()
[all …]
H A DMachineBlockPlacement.cpp3664 MachineFunction::iterator NextMBB = std::next(MBB.getIterator()); in assignBlockOrder() local
3670 if (FTMBB && (NextMBB == EndIt || &*NextMBB != FTMBB)) { in assignBlockOrder()
/freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp184 MachineBasicBlock *NextMBB = &*std::next(MBB); in expandBranches() local
185 assert(MBB->isSuccessor(NextMBB) && in expandBranches()
197 .addMBB(NextMBB) in expandBranches()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp1141 MachineBasicBlock *NextMBB, in emitBitTestCase() argument
1181 addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext); in emitBitTestCase()
1195 if (NextMBB != SwitchBB->getNextNode()) in emitBitTestCase()
1196 MIB.buildBr(*NextMBB); in emitBitTestCase()
1245 MachineBasicBlock *NextMBB = nullptr; in lowerSwitchWorkItem() local
1248 NextMBB = &*BBI; in lowerSwitchWorkItem()
1268 if (I->Kind == CC_Range && I->MBB == NextMBB) { in lowerSwitchWorkItem()
3585 MachineBasicBlock *NextMBB; in finalizeBasicBlock() local
3589 NextMBB = BTB.Cases[j + 1].TargetBB; in finalizeBasicBlock()
3592 NextMBB = BTB.Default; in finalizeBasicBlock()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h398 void emitBitTestCase(SwitchCG::BitTestBlock &BB, MachineBasicBlock *NextMBB,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2000 MachineBasicBlock *NextMBB; in FinishBasicBlock() local
2004 NextMBB = BTB.Cases[j + 1].TargetBB; in FinishBasicBlock()
2007 NextMBB = BTB.Default; in FinishBasicBlock()
2010 NextMBB = BTB.Cases[j + 1].ThisBB; in FinishBasicBlock()
2013 SDB->visitBitTestCase(BTB, NextMBB, UnhandledProb, BTB.Reg, BTB.Cases[j], in FinishBasicBlock()
H A DSelectionDAGBuilder.h528 void visitBitTestCase(SwitchCG::BitTestBlock &BB, MachineBasicBlock *NextMBB,
H A DSelectionDAGBuilder.cpp3260 MachineBasicBlock* NextMBB, in visitBitTestCase() argument
3299 addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext); in visitBitTestCase()
3310 if (NextMBB != NextBlock(SwitchBB)) in visitBitTestCase()
3312 DAG.getBasicBlock(NextMBB)); in visitBitTestCase()
11923 MachineBasicBlock *NextMBB = nullptr; in lowerWorkItem() local
11926 NextMBB = &*BBI; in lowerWorkItem()
12005 if (I->Kind == CC_Range && I->MBB == NextMBB) { in lowerWorkItem()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstructionSelector.cpp2166 MachineBasicBlock *NextMBB = I.getMF()->getBlockNumbered(NextMBBNum); in selectBranchCond() local
2170 .addMBB(NextMBB) in selectBranchCond()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp4245 MachineFunction::iterator NextMBB = std::next(Parent->getIterator()); in verifyCFIntrinsic() local
4246 if (NextMBB == Parent->getParent()->end()) // Illegal intrinsic use. in verifyCFIntrinsic()
4248 UncondBrTarget = &*NextMBB; in verifyCFIntrinsic()