Home
last modified time | relevance | path

Searched refs:isBundledWithPred (Results 1 – 22 of 22) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DMachineInstrBundleIteratorTest.cpp19 bool isBundledWithPred() const { return true; } in isBundledWithPred() function
37 EXPECT_TRUE(MBI.isBundledWithPred()); in TEST()
76 EXPECT_TRUE(MBI.isBundledWithPred()); in TEST()
134 bool isBundledWithPred() const { return false; } in isBundledWithPred() function
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineInstrBundleIterator.h55 while (I->isBundledWithPred())
133 assert((!MI.getNodePtr() || MI.isEnd() || !MI->isBundledWithPred()) &&
139 assert(!MI.isBundledWithPred() && "It's not legal to initialize "
146 assert((!MI || !MI->isBundledWithPred()) && "It's not legal to initialize "
H A DMachineInstrBundle.h46 while (I->isBundledWithPred()) in getBundleStart()
54 while (I->isBundledWithPred()) in getBundleStart()
H A DMachineBasicBlock.h897 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
906 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
916 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
H A DMachineInstr.h394 return isBundledWithPred() || isBundledWithSucc();
399 bool isBundledWithPred() const { return getFlag(BundledPred); }
778 if (Type == IgnoreBundle || !isBundled() || isBundledWithPred())
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DSlotIndexes.cpp117 assert((AllowBundled || !MI.isBundledWithPred()) && in removeMachineInstrFromMaps()
145 assert(!MI.isBundledWithPred() && "Should be first bundle instruction"); in removeSingleMachineInstrFromMaps()
H A DMachineBasicBlock.cpp1289 if (MI->isBundledWithSucc() && !MI->isBundledWithPred()) in unbundleSingleMI()
1292 if (MI->isBundledWithPred() && !MI->isBundledWithSucc()) in unbundleSingleMI()
1313 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() && in insert()
1316 if (I != instr_end() && I->isBundledWithPred()) { in insert()
H A DMachineInstr.cpp550 assert(!isBundledWithPred() && "Must be called on bundle header"); in hasPropertyInBundle()
713 assert(!isBundledWithPred() && "MI is already bundled with its predecessor"); in bundleWithPred()
726 assert(!Succ->isBundledWithPred() && "Inconsistent bundle flags"); in bundleWithSucc()
731 assert(isBundledWithPred() && "MI isn't bundled with its predecessor"); in unbundleFromPred()
744 assert(Succ->isBundledWithPred() && "Inconsistent bundle flags"); in unbundleFromSucc()
H A DMachineInstrBundle.cpp59 while (++MII != MIE && MII->isBundledWithPred()) { in runOnMachineFunction()
H A DVirtRegMap.cpp448 if (MI.isBundledWithPred() && !MI.isBundledWithSucc()) { in expandCopyBundle()
H A DMachineVerifier.cpp431 if (InBundle && !MI.isBundledWithPred()) in verify()
435 if (!InBundle && MI.isBundledWithPred()) in verify()
2324 !MI->isBundledWithPred()) { in checkLiveness()
H A DRegAllocFast.cpp1457 while (BundledMI->isBundledWithPred()) { in handleBundle()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUSubtarget.cpp813 for (++I; I != E && I->isBundledWithPred(); ++I) { in adjustSchedDependency()
826 for (++I; I != E && I->isBundledWithPred() && Lat; ++I) { in adjustSchedDependency()
H A DAMDGPUInsertDelayAlu.cpp372 if (Emit && !MI.isBundledWithPred()) { in runOnMachineBasicBlock()
H A DR600Packetizer.cpp119 } while ((++BI)->isBundledWithPred()); in getPreviousVector()
H A DAMDGPUIGroupLP.cpp141 while (E != MBB->end() && E->isBundledWithPred()) in canAddSU()
H A DR600ControlFlowFinalizer.cpp396 while (++BI != E && BI->isBundledWithPred()) { in MakeALUClause()
H A DSIMemoryLegalizer.cpp2317 I != E && I->isBundledWithPred(); ++I) { in runOnMachineFunction()
H A DSIInstrInfo.cpp8223 for (++I; I != E && I->isBundledWithPred(); ++I) { in getInstrLatency()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp1087 bool NextInSameBundle = NextMII != E && NextMII->isBundledWithPred(); in ReduceMBB()
1095 if (NextInSameBundle && !NextMII->isBundledWithPred()) in ReduceMBB()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp173 assert(MI.isBundledWithPred()); in moveInstrOut()
189 for (++I; I != E && I->isBundledWithPred(); ++I) in moveInstrOut()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1973 assert(Suc->isBundledWithPred() && in beginInstruction()