HomeSort by relevance Sort by last modified time
    Searched refs:isBarrier (Results 1 - 19 of 19) sorted by null

  /external/llvm/include/llvm/MC/
MCInstrDesc.h 214 /// isBarrier - Returns true if the specified instruction stops control flow
217 bool isBarrier() const {
250 return isBranch() & !isBarrier() & !isIndirectBranch();
258 return isBranch() & isBarrier() & !isIndirectBranch();
  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 48 if (!LastMI->isBarrier() &&
MLxExpansionPass.cpp 279 if (MI->isBarrier()) {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 350 /// isBarrier - Returns true if the specified instruction stops control flow
353 bool isBarrier(QueryType Type = AnyInBundle) const {
386 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
394 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeAsmPrinter.cpp 320 return I == Pred->end() || !I->isBarrier();
MBlazeDelaySlotFiller.cpp 212 I->isCall() || I->isReturn() || I->isBarrier() ||
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 245 return I == Pred->end() || !I->isBarrier();
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 226 bool isBarrier;
InstrInfoEmitter.cpp 323 if (Inst.isBarrier) OS << "|(1<<MCID::Barrier)";
CodeGenInstruction.cpp 302 isBarrier = R->getValueAsBit("isBarrier");
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 162 if (MI->isBranch() && !MI->isBarrier())
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 552 if (!MBB->empty() && getBundleStart(&MBB->back())->isBarrier() &&
573 } else if (!getBundleStart(&MBB->back())->isBarrier()) {
604 } else if (getBundleStart(&MBB->back())->isBarrier()) {
632 } else if (!getBundleStart(&MBB->back())->isBarrier()) {
    [all...]
TargetInstrInfoImpl.cpp 148 if (MI->isBranch() && !MI->isBarrier())
BranchFolding.cpp 563 !MBB1->back().isBarrier() &&
564 !MBB2->back().isBarrier())
    [all...]
MachineBasicBlock.cpp 609 return empty() || !back().isBarrier() || TII->isPredicated(&back());
    [all...]
ScheduleDAGInstrs.cpp 201 (ExitMI->isCall() || ExitMI->isBarrier());
    [all...]
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 308 return !I->isBarrier();
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 901 milliseconds