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

  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 53 if (!LastMI->isBarrier() &&
MLxExpansionPass.cpp 344 if (MI->isBarrier()) {
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 220 bool isBarrier() const {
253 return isBranch() & !isBarrier() & !isIndirectBranch();
261 return isBranch() & isBarrier() & !isIndirectBranch();
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 353 /// isBarrier - Returns true if the specified instruction stops control flow
356 bool isBarrier(QueryType Type = AnyInBundle) const {
389 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
397 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 264 return I == Pred->end() || !I->isBarrier();
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 225 bool isBarrier;
CodeGenInstruction.cpp 303 isBarrier = R->getValueAsBit("isBarrier");
InstrInfoEmitter.cpp 461 if (Inst.isBarrier) OS << "|(1<<MCID::Barrier)";
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 162 if (MI->isBranch() && !MI->isBarrier())
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 573 if (!MBB->empty() && getBundleStart(&MBB->back())->isBarrier() &&
594 } else if (!getBundleStart(&MBB->back())->isBarrier()) {
625 } else if (getBundleStart(&MBB->back())->isBarrier()) {
653 } else if (!getBundleStart(&MBB->back())->isBarrier()) {
    [all...]
TargetInstrInfo.cpp 205 if (MI->isBranch() && !MI->isBarrier())
BranchFolding.cpp 560 !MBB1->back().isBarrier() &&
561 !MBB2->back().isBarrier())
    [all...]
MachineBasicBlock.cpp 649 return empty() || !back().isBarrier() || TII->isPredicated(&back());
    [all...]
ScheduleDAGInstrs.cpp 209 (ExitMI->isCall() || ExitMI->isBarrier());
    [all...]
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 328 return !I->isBarrier();
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 243 milliseconds