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

  /external/llvm/include/llvm/MC/
MCInstrDesc.h 239 bool isBarrier() const {
272 return isBranch() & !isBarrier() & !isIndirectBranch();
280 return isBranch() & isBarrier() & !isIndirectBranch();
  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 53 if (!LastMI->isBarrier() &&
MLxExpansionPass.cpp 345 if (MI->isBarrier()) {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 408 /// isBarrier - Returns true if the specified instruction stops control flow
411 bool isBarrier(QueryType Type = AnyInBundle) const {
444 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
452 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
    [all...]
ScheduleDAG.h 187 /// isBarrier - Test if this is an Order dependence that is marked
189 bool isBarrier() const {
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 231 bool isBarrier : 1;
InstrInfoEmitter.cpp 487 if (Inst.isBarrier) OS << "|(1<<MCID::Barrier)";
CodeGenInstruction.cpp 304 isBarrier = R->getValueAsBit("isBarrier");
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 165 if (MI->isBranch() && !MI->isBarrier())
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 45 if (!SU->Preds[i].isNormalMemory() && !SU->Preds[i].isBarrier())
PPCInstrInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 580 if (!MBB->empty() && MBB->back().isBarrier() &&
601 } else if (!MBB->back().isBarrier()) {
632 } else if (MBB->back().isBarrier()) {
660 } else if (!MBB->back().isBarrier()) {
    [all...]
BranchFolding.cpp 568 !MBB1->back().isBarrier() &&
569 !MBB2->back().isBarrier())
    [all...]
TargetInstrInfo.cpp 206 if (MI->isBranch() && !MI->isBarrier())
MachineBasicBlock.cpp 655 return empty() || !back().isBarrier() || TII->isPredicated(&back());
    [all...]
ScheduleDAGInstrs.cpp 217 (ExitMI->isCall() || ExitMI->isBarrier());
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 434 return !I->isBarrier();
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 852 bool isBarrier() const { return Kind == k_Barrier; }
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 705 milliseconds