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

  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 43 virtual bool isIndirectBranch(const MCInst &Inst) const {
44 return Info->get(Inst.getOpcode()).isIndirectBranch();
MCInstrDesc.h 238 /// isIndirectBranch - Return true if this is an indirect branch, such as a
240 bool isIndirectBranch() const {
249 return isBranch() & !isBarrier() & !isIndirectBranch();
257 return isBranch() & isBarrier() & !isIndirectBranch();
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 374 /// isIndirectBranch - Return true if this is an indirect branch, such as a
376 bool isIndirectBranch(QueryType Type = AnyInBundle) const {
385 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
393 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 221 bool isIndirectBranch;
InstrInfoEmitter.cpp 301 if (Inst.isIndirectBranch) OS << "|(1<<MCID::IndirectBranch)";
CodeGenInstruction.cpp 296 isIndirectBranch = R->getValueAsBit("isIndirectBranch");
  /external/llvm/lib/Target/PTX/
PTXInstrInfo.cpp 342 return inst.isTerminator() || inst.isBranch() || inst.isIndirectBranch();
  /external/llvm/lib/CodeGen/
TailDuplication.cpp 557 HasIndirectbr = TailBB.back().isIndirectBranch();
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 96 milliseconds