| /llvm-project-15.0.7/llvm/unittests/CodeGen/ |
| H A D | MachineInstrBundleIteratorTest.cpp | 19 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 D | MachineInstrBundleIterator.h | 55 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 D | MachineInstrBundle.h | 46 while (I->isBundledWithPred()) in getBundleStart() 54 while (I->isBundledWithPred()) in getBundleStart()
|
| H A D | MachineBasicBlock.h | 897 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() && 906 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() && 916 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
|
| H A D | MachineInstr.h | 394 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 D | SlotIndexes.cpp | 117 assert((AllowBundled || !MI.isBundledWithPred()) && in removeMachineInstrFromMaps() 145 assert(!MI.isBundledWithPred() && "Should be first bundle instruction"); in removeSingleMachineInstrFromMaps()
|
| H A D | MachineBasicBlock.cpp | 1289 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 D | MachineInstr.cpp | 550 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 D | MachineInstrBundle.cpp | 59 while (++MII != MIE && MII->isBundledWithPred()) { in runOnMachineFunction()
|
| H A D | VirtRegMap.cpp | 448 if (MI.isBundledWithPred() && !MI.isBundledWithSucc()) { in expandCopyBundle()
|
| H A D | MachineVerifier.cpp | 431 if (InBundle && !MI.isBundledWithPred()) in verify() 435 if (!InBundle && MI.isBundledWithPred()) in verify() 2324 !MI->isBundledWithPred()) { in checkLiveness()
|
| H A D | RegAllocFast.cpp | 1457 while (BundledMI->isBundledWithPred()) { in handleBundle()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUSubtarget.cpp | 813 for (++I; I != E && I->isBundledWithPred(); ++I) { in adjustSchedDependency() 826 for (++I; I != E && I->isBundledWithPred() && Lat; ++I) { in adjustSchedDependency()
|
| H A D | AMDGPUInsertDelayAlu.cpp | 372 if (Emit && !MI.isBundledWithPred()) { in runOnMachineBasicBlock()
|
| H A D | R600Packetizer.cpp | 119 } while ((++BI)->isBundledWithPred()); in getPreviousVector()
|
| H A D | AMDGPUIGroupLP.cpp | 141 while (E != MBB->end() && E->isBundledWithPred()) in canAddSU()
|
| H A D | R600ControlFlowFinalizer.cpp | 396 while (++BI != E && BI->isBundledWithPred()) { in MakeALUClause()
|
| H A D | SIMemoryLegalizer.cpp | 2317 I != E && I->isBundledWithPred(); ++I) { in runOnMachineFunction()
|
| H A D | SIInstrInfo.cpp | 8223 for (++I; I != E && I->isBundledWithPred(); ++I) { in getInstrLatency()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | Thumb2SizeReduction.cpp | 1087 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 D | HexagonVLIWPacketizer.cpp | 173 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 D | DwarfDebug.cpp | 1973 assert(Suc->isBundledWithPred() && in beginInstruction()
|