Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DMachineLoopInfo.cpp69 MachineBasicBlock *NextMBB = &*std::next(BotMBB->getIterator()); in getBottomBlock() local
70 while (contains(NextMBB)) { in getBottomBlock()
71 BotMBB = NextMBB; in getBottomBlock()
74 NextMBB = &*std::next(BotMBB->getIterator()); in getBottomBlock()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineLoopInfo.cpp71 MachineBasicBlock *NextMBB = llvm::next(MachineFunction::iterator(BotMBB)); in getBottomBlock() local
72 while (contains(NextMBB)) { in getBottomBlock()
73 BotMBB = NextMBB; in getBottomBlock()
75 NextMBB = llvm::next(MachineFunction::iterator(BotMBB)); in getBottomBlock()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineLoopInfo.cpp70 MachineBasicBlock *NextMBB = &*std::next(BotMBB->getIterator()); in getBottomBlock() local
71 while (contains(NextMBB)) { in getBottomBlock()
72 BotMBB = NextMBB; in getBottomBlock()
75 NextMBB = &*std::next(BotMBB->getIterator()); in getBottomBlock()
DIfConversion.cpp1427 MachineBasicBlock &NextMBB = *NextBBI->BB; in IfConvertSimple() local
1450 Redefs.addLiveIns(NextMBB); in IfConvertSimple()
1474 if (!canFallThroughTo(*BBI.BB, NextMBB)) { in IfConvertSimple()
1475 InsertUncondBranch(*BBI.BB, NextMBB, TII); in IfConvertSimple()
1513 MachineBasicBlock &NextMBB = *NextBBI->BB; in IfConvertTriangle() local
1551 Redefs.addLiveIns(NextMBB); in IfConvertTriangle()
1559 CvtNext = MBPI->getEdgeProbability(&CvtMBB, &NextMBB); in IfConvertTriangle()
1561 BBNext = MBPI->getEdgeProbability(BBI.BB, &NextMBB); in IfConvertTriangle()
1613 bool isFallThrough = canFallThroughTo(*BBI.BB, NextMBB); in IfConvertTriangle()
1619 NextMBB.pred_size() == 1 && !NextBBI->HasFallThrough && in IfConvertTriangle()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZMachineScheduler.cpp78 void SystemZPostRASchedStrategy::enterMBB(MachineBasicBlock *NextMBB) { in enterMBB() argument
79 assert ((SchedStates.find(NextMBB) == SchedStates.end()) && in enterMBB()
81 LLVM_DEBUG(dbgs() << "** Entering " << printMBBReference(*NextMBB)); in enterMBB()
83 MBB = NextMBB; in enterMBB()
DSystemZMachineScheduler.h134 void enterMBB(MachineBasicBlock *NextMBB) override;
DSystemZISelLowering.cpp6746 MachineBasicBlock *NextMBB = (EndMBB ? emitBlockAfter(LoopMBB) : LoopMBB); in emitMemMemWrapper() local
6768 .addReg(NextDestReg).addMBB(NextMBB); in emitMemMemWrapper()
6772 .addReg(NextSrcReg).addMBB(NextMBB); in emitMemMemWrapper()
6775 .addReg(NextCountReg).addMBB(NextMBB); in emitMemMemWrapper()
6788 MBB->addSuccessor(NextMBB); in emitMemMemWrapper()
6800 MBB = NextMBB; in emitMemMemWrapper()
6862 MachineBasicBlock *NextMBB = splitBlockBefore(MI, MBB); in emitMemMemWrapper() local
6867 MBB->addSuccessor(NextMBB); in emitMemMemWrapper()
6868 MBB = NextMBB; in emitMemMemWrapper()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/MSP430/
DMSP430BranchSelector.cpp184 MachineBasicBlock *NextMBB = &*std::next(MBB); in expandBranches() local
185 assert(MBB->isSuccessor(NextMBB) && in expandBranches()
197 .addMBB(NextMBB) in expandBranches()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp1686 MachineBasicBlock *NextMBB; in FinishBasicBlock() local
1690 NextMBB = BTB.Cases[j + 1].TargetBB; in FinishBasicBlock()
1693 NextMBB = BTB.Default; in FinishBasicBlock()
1696 NextMBB = BTB.Cases[j + 1].ThisBB; in FinishBasicBlock()
1699 SDB->visitBitTestCase(BTB, NextMBB, UnhandledProb, BTB.Reg, BTB.Cases[j], in FinishBasicBlock()
DSelectionDAGBuilder.h813 MachineBasicBlock* NextMBB,
DSelectionDAGBuilder.cpp2194 MachineBasicBlock* NextMBB, in visitBitTestCase() argument
2234 addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext); in visitBitTestCase()
2245 if (NextMBB != NextBlock(SwitchBB)) in visitBitTestCase()
2247 DAG.getBasicBlock(NextMBB)); in visitBitTestCase()
8667 MachineBasicBlock *NextMBB = nullptr; in lowerWorkItem() local
8670 NextMBB = &*BBI; in lowerWorkItem()
8744 if (I->Kind == CC_Range && I->MBB == NextMBB) { in lowerWorkItem()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp1950 MachineBasicBlock *NextMBB; in FinishBasicBlock() local
1954 NextMBB = BTB.Cases[j + 1].TargetBB; in FinishBasicBlock()
1957 NextMBB = BTB.Default; in FinishBasicBlock()
1960 NextMBB = BTB.Cases[j + 1].ThisBB; in FinishBasicBlock()
1963 SDB->visitBitTestCase(BTB, NextMBB, UnhandledProb, BTB.Reg, BTB.Cases[j], in FinishBasicBlock()
DSelectionDAGBuilder.h843 MachineBasicBlock* NextMBB,
DSelectionDAGBuilder.cpp2379 MachineBasicBlock* NextMBB, in visitBitTestCase() argument
2419 addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext); in visitBitTestCase()
2430 if (NextMBB != NextBlock(SwitchBB)) in visitBitTestCase()
2432 DAG.getBasicBlock(NextMBB)); in visitBitTestCase()
9775 MachineBasicBlock *NextMBB = nullptr; in lowerWorkItem() local
9778 NextMBB = &*BBI; in lowerWorkItem()
9857 if (I->Kind == CC_Range && I->MBB == NextMBB) { in lowerWorkItem()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h462 MachineBasicBlock* NextMBB,
DSelectionDAGBuilder.cpp1737 MachineBasicBlock* NextMBB, in visitBitTestCase() argument
1776 addSuccessorWithWeight(SwitchBB, NextMBB); in visitBitTestCase()
1789 if (NextMBB != NextBlock) in visitBitTestCase()
1791 DAG.getBasicBlock(NextMBB)); in visitBitTestCase()
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp5732 MachineBasicBlock *NextMBB = (EndMBB ? emitBlockAfter(LoopMBB) : LoopMBB); in emitMemMemWrapper() local
5754 .addReg(NextDestReg).addMBB(NextMBB); in emitMemMemWrapper()
5758 .addReg(NextSrcReg).addMBB(NextMBB); in emitMemMemWrapper()
5761 .addReg(NextCountReg).addMBB(NextMBB); in emitMemMemWrapper()
5774 MBB->addSuccessor(NextMBB); in emitMemMemWrapper()
5786 MBB = NextMBB; in emitMemMemWrapper()
5840 MachineBasicBlock *NextMBB = splitBlockBefore(MI, MBB); in emitMemMemWrapper() local
5845 MBB->addSuccessor(NextMBB); in emitMemMemWrapper()
5846 MBB = NextMBB; in emitMemMemWrapper()