Searched refs:isBarrier (Results 1 - 25 of 44) sorted by relevance

12

/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCInstrDesc.h294 /// isBarrier - Returns true if the specified instruction stops control flow
297 bool isBarrier() const { function in class:llvm::MCInstrDesc
342 return isBranch() & !isBarrier() & !isIndirectBranch();
350 return isBranch() & isBarrier() & !isIndirectBranch();
/external/llvm/lib/Target/ARM/
H A DARMHazardRecognizer.cpp52 if (!LastMI->isBarrier() &&
H A DMLxExpansionPass.cpp345 if (MI->isBarrier()) {
/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h219 bool isBarrier() const { return Flags & (1 << MCID::Barrier); } function in class:llvm::MCInstrDesc
244 return isBranch() & !isBarrier() & !isIndirectBranch();
252 return isBranch() & isBarrier() & !isIndirectBranch();
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMHazardRecognizer.cpp51 if (!LastMCID.isBarrier() &&
H A DMLxExpansionPass.cpp277 if (MCID.isBarrier()) {
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrInfo.cpp138 if (MI.isBarrier())
H A DWebAssemblyCFGStackify.cpp90 AnyBarrier |= Term.isBarrier();
/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetInstrInfo.cpp137 if (MCID.isBranch() && !MCID.isBarrier())
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h444 bool isBarrier(QueryType Type = AnyInBundle) const {
476 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
484 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
H A DScheduleDAG.h170 /// isBarrier - Test if this is an Order dependence that is marked
172 bool isBarrier() const { function in class:llvm::SDep
179 return (isNormalMemory() || isBarrier());
/external/llvm/lib/Target/Lanai/
H A DLanaiAsmPrinter.cpp238 return !I->isBarrier();
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h231 bool isBarrier : 1;
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeAsmPrinter.cpp316 return I == Pred->end() || !I->getDesc().isBarrier();
H A DMBlazeDelaySlotFiller.cpp216 desc.isCall() || desc.isReturn() || desc.isBarrier() ||
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp242 return I == Pred->end() || !I->getDesc().isBarrier();
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenInstruction.h225 bool isBarrier; member in class:llvm::CodeGenInstruction
H A DInstrInfoEmitter.cpp278 if (Inst.isBarrier) OS << "|(1<<MCID::Barrier)";
/external/llvm/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp166 if (MI.isBranch() && !MI.isBarrier())
/external/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp45 if (!SU->Preds[i].isNormalMemory() && !SU->Preds[i].isBarrier())
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineVerifier.cpp438 if (!MBB->empty() && MBB->back().getDesc().isBarrier() &&
459 } else if (!MBB->back().getDesc().isBarrier()) {
482 } else if (MBB->back().getDesc().isBarrier()) {
502 } else if (!MBB->back().getDesc().isBarrier()) {
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp168 if (MCID.isBranch() && !MCID.isBarrier())
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsAsmPrinter.cpp282 return !I->getDesc().isBarrier();
/external/llvm/lib/Target/Hexagon/
H A DHexagonEarlyIfConv.cpp328 if (I->isBarrier())
645 if (MI->isCall() || MI->isBarrier() || MI->isBranch())
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp648 if (!MBB->empty() && MBB->back().isBarrier() &&
673 } else if (!MBB->back().isBarrier()) {
704 } else if (MBB->back().isBarrier()) {
732 } else if (!MBB->back().isBarrier()) {

Completed in 375 milliseconds

12