|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/CodeGen/MachineBasicBlock.h 623 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
632 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
642 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
include/llvm/CodeGen/MachineInstr.h 374 return isBundledWithPred() || isBundledWithSucc();
639 if (Type == IgnoreBundle || !isBundled() || isBundledWithPred())
include/llvm/CodeGen/MachineInstrBundle.h 46 while (I->isBundledWithPred())
54 while (I->isBundledWithPred())
include/llvm/CodeGen/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 "
lib/CodeGen/MachineBasicBlock.cpp 1145 if (MI->isBundledWithSucc() && !MI->isBundledWithPred())
1148 if (MI->isBundledWithPred() && !MI->isBundledWithSucc())
1169 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
1172 if (I != instr_end() && I->isBundledWithPred()) {
lib/CodeGen/MachineInstr.cpp 569 assert(!isBundledWithPred() && "Must be called on bundle header");
733 assert(!isBundledWithPred() && "MI is already bundled with its predecessor");
746 assert(!Succ->isBundledWithPred() && "Inconsistent bundle flags");
751 assert(isBundledWithPred() && "MI isn't bundled with its predecessor");
764 assert(Succ->isBundledWithPred() && "Inconsistent bundle flags");
lib/CodeGen/MachineInstrBundle.cpp 59 while (++MII != MIE && MII->isBundledWithPred()) {
lib/CodeGen/MachineVerifier.cpp 420 if (InBundle && !MBBI->isBundledWithPred())
424 if (!InBundle && MBBI->isBundledWithPred())
lib/CodeGen/SlotIndexes.cpp 105 assert(!MI.isBundledWithPred() &&
133 assert(!MI.isBundledWithPred() && "Should have first bundle isntruction");
lib/CodeGen/VirtRegMap.cpp 406 if (MI.isBundledWithPred() && !MI.isBundledWithSucc()) {
lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp 426 while (++BI != E && BI->isBundledWithPred()) {
lib/Target/AMDGPU/R600Packetizer.cpp 124 } while ((++BI)->isBundledWithPred());
lib/Target/ARM/Thumb2SizeReduction.cpp 1071 bool NextInSameBundle = NextMII != E && NextMII->isBundledWithPred();
1079 if (NextInSameBundle && !NextMII->isBundledWithPred())
lib/Target/Hexagon/HexagonVLIWPacketizer.cpp 171 assert(MI.isBundledWithPred());
187 for (++I; I != E && I->isBundledWithPred(); ++I)