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

/freebsd-10.0-release/contrib/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());
468 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
475 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
H A DMachineInstr.h217 return isBundledWithPred() || isBundledWithSucc();
222 bool isBundledWithPred() const { return getFlag(BundledPred); } function in class:llvm::MachineInstr
317 if (Type == IgnoreBundle || !isBundled() || isBundledWithPred())
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp955 if (MI->isBundledWithSucc() && !MI->isBundledWithPred())
958 if (MI->isBundledWithPred() && !MI->isBundledWithSucc())
979 assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
982 if (I != instr_end() && I->isBundledWithPred()) {
H A DMachineInstrBundle.cpp50 while (++MII != MIE && MII->isBundledWithPred()) {
H A DMachineInstr.cpp755 assert(!isBundledWithPred() && "Must be called on bundle header");
869 assert(!isBundledWithPred() && "MI is already bundled with its predecessor");
882 assert(!Succ->isBundledWithPred() && "Inconsistent bundle flags");
887 assert(isBundledWithPred() && "MI isn't bundled with its predecessor");
900 assert(Succ->isBundledWithPred() && "Inconsistent bundle flags");
H A DMachineVerifier.cpp322 if (InBundle && !MBBI->isBundledWithPred())
325 if (!InBundle && MBBI->isBundledWithPred())
/freebsd-10.0-release/contrib/llvm/lib/Target/R600/
H A DR600Packetizer.cpp120 } while ((++BI)->isBundledWithPred());
H A DR600ControlFlowFinalizer.cpp228 while (++BI != E && BI->isBundledWithPred()) {
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp961 bool NextInSameBundle = NextMII != E && NextMII->isBundledWithPred();
969 if (NextInSameBundle && !NextMII->isBundledWithPred())

Completed in 176 milliseconds