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

  /external/llvm/include/llvm/MC/
MCInstrDesc.h 213 /// isBarrier - Returns true if the specified instruction stops control flow
216 bool isBarrier() const {
249 return isBranch() & !isBarrier() & !isIndirectBranch();
257 return isBranch() & isBarrier() & !isIndirectBranch();
  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 48 if (!LastMI->isBarrier() &&
MLxExpansionPass.cpp 277 if (MI->isBarrier()) {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 349 /// isBarrier - Returns true if the specified instruction stops control flow
352 bool isBarrier(QueryType Type = AnyInBundle) const {
385 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
393 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeAsmPrinter.cpp 314 return I == Pred->end() || !I->isBarrier();
MBlazeDelaySlotFiller.cpp 212 I->isCall() || I->isReturn() || I->isBarrier() ||
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 243 return I == Pred->end() || !I->isBarrier();
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 225 bool isBarrier;
InstrInfoEmitter.cpp 305 if (Inst.isBarrier) OS << "|(1<<MCID::Barrier)";
CodeGenInstruction.cpp 300 isBarrier = R->getValueAsBit("isBarrier");
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 469 if (!MBB->empty() && MBB->back().isBarrier() &&
490 } else if (!MBB->back().isBarrier()) {
513 } else if (MBB->back().isBarrier()) {
533 } else if (!MBB->back().isBarrier()) {
    [all...]
TargetInstrInfoImpl.cpp 157 if (MI->isBranch() && !MI->isBarrier())
BranchFolding.cpp 564 !MBB1->back().isBarrier() &&
565 !MBB2->back().isBarrier())
    [all...]
MachineBasicBlock.cpp 576 return empty() || !back().isBarrier() || TII->isPredicated(&back());
    [all...]
ScheduleDAGInstrs.cpp 192 (ExitMI->isCall() || ExitMI->isBarrier());
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 162 if (MI->isBranch() && !MI->isBarrier())
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 381 return !I->isBarrier();
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 537 milliseconds