Searched refs:isBundledWithPred (Results 1 - 10 of 10) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineInstrBundle.h48 while (I->isBundledWithPred())
55 while (I->isBundledWithPred())
H A DMachineBasicBlock.h152 assert(!mi.isBundledWithPred() &&
156 assert((!mi || !mi->isBundledWithPred()) &&
180 while (MII->isBundledWithPred());
494 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
501 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
H A DMachineInstr.h218 return isBundledWithPred() || isBundledWithSucc();
223 bool isBundledWithPred() const { return getFlag(BundledPred); } function in class:llvm::MachineInstr
372 if (Type == IgnoreBundle || !isBundled() || isBundledWithPred())
/external/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp966 if (MI->isBundledWithSucc() && !MI->isBundledWithPred())
969 if (MI->isBundledWithPred() && !MI->isBundledWithSucc())
990 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
993 if (I != instr_end() && I->isBundledWithPred()) {
H A DMachineInstrBundle.cpp50 while (++MII != MIE && MII->isBundledWithPred()) {
H A DMachineInstr.cpp775 assert(!isBundledWithPred() && "Must be called on bundle header");
889 assert(!isBundledWithPred() && "MI is already bundled with its predecessor");
902 assert(!Succ->isBundledWithPred() && "Inconsistent bundle flags");
907 assert(isBundledWithPred() && "MI isn't bundled with its predecessor");
920 assert(Succ->isBundledWithPred() && "Inconsistent bundle flags");
H A DMachineVerifier.cpp330 if (InBundle && !MBBI->isBundledWithPred())
333 if (!InBundle && MBBI->isBundledWithPred())
/external/llvm/lib/Target/R600/
H A DR600Packetizer.cpp128 } while ((++BI)->isBundledWithPred());
H A DR600ControlFlowFinalizer.cpp400 while (++BI != E && BI->isBundledWithPred()) {
/external/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp956 bool NextInSameBundle = NextMII != E && NextMII->isBundledWithPred();
964 if (NextInSameBundle && !NextMII->isBundledWithPred())

Completed in 675 milliseconds