Searched refs:isBranch (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/include/llvm/MC/
H A DMCInstrAnalysis.h31 virtual bool isBranch(const MCInst &Inst) const { function in class:llvm::MCInstrAnalysis
32 return Info->get(Inst.getOpcode()).isBranch();
H A DMCInstrDesc.h323 /// isBranch - Returns true if this is a conditional, unconditional, or
327 bool isBranch() const { function in class:llvm::MCInstrDesc
342 return isBranch() & !isBarrier() & !isIndirectBranch();
350 return isBranch() & isBarrier() & !isIndirectBranch();
430 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
/external/llvm/lib/MC/MCDisassembler/
H A DEDInst.h127 /// isBranch - Returns true if the instruction is a branch
128 bool isBranch();
H A DEDInst.cpp84 bool EDInst::isBranch() { function in class:EDInst
111 if (isBranch() &&
/external/llvm/tools/llvm-objdump/
H A DMCFunction.cpp58 if (Ana->isBranch(Inst)) {
118 if (Ana->isBranch(Inst.Inst)) {
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGGraph.cpp113 if (node.isBranch() || node.isJump()) {
117 if (node.isBranch()) {
H A DDFGNode.h313 bool isBranch() function in struct:JSC::DFG::Node
320 ASSERT(isBranch() || isJump());
326 ASSERT(isBranch());
/external/llvm/lib/Target/
H A DTargetInstrInfo.cpp137 if (MCID.isBranch() && !MCID.isBarrier())
/external/llvm/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp168 if (MCID.isBranch() && !MCID.isBarrier())
195 if (!I->getDesc().isBranch())
/external/llvm/lib/Target/ARM/
H A DThumb2ITBlockPass.cpp201 (!MI->getDesc().isBranch() && !MI->getDesc().isReturn()) ; ++MBBI) {
H A DARMConstantIslandPass.cpp471 if (I->getDesc().isBranch() && I->getOpcode() == ARM::t2BR_JT)
513 if (I->getDesc().isBranch()) {
/external/llvm/lib/Target/MBlaze/
H A DMBlazeDelaySlotFiller.cpp215 if (desc.hasDelaySlot() || desc.isBranch() || isDelayFiller(MBB,I) ||
/external/llvm/lib/Target/Mips/
H A DMipsCodeEmitter.cpp152 && MI.getDesc().isBranch())
/external/llvm/tools/edis/
H A DEDMain.cpp111 return ((EDInst*)inst)->isBranch();
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp334 if (inst->isBranch())
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h220 bool isBranch; member in class:llvm::CodeGenInstruction
H A DInstrInfoEmitter.cpp273 if (Inst.isBranch) OS << "|(1<<MCID::Branch)";
H A DCodeGenInstruction.cpp295 isBranch = R->getValueAsBit("isBranch");
/external/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp210 if (MCID.isBranch() && !MCID.isBarrier())
236 if (!I->getDesc().isBranch())
/external/llvm/lib/Target/PTX/
H A DPTXInstrInfo.cpp345 return desc.isTerminator() || desc.isBranch() || desc.isIndirectBranch();
/external/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.cpp136 if (!I->getDesc().isBranch())
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp576 if (!TIE->getDesc().isBranch())
581 if (!FIE->getDesc().isBranch())
1400 if (IgnoreBr && MCID.isBranch())
H A DBranchFolding.cpp983 return (MBBI->getDesc().isBranch());
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2068 if (!MI.getDesc().isBranch() || MI.getDesc().isIndirectBranch())
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp424 /// then isBranch is true, else false. If the getOpInfo() function was set as
429 /// getOpInfo() returns zero and isBranch is true then a symbol look up for
434 bool isBranch, uint64_t InstSize,
445 if (isBranch) {
433 tryAddingSymbolicOperand(uint64_t Address, int32_t Value, bool isBranch, uint64_t InstSize, MCInst &MI, const void *Decoder) argument

Completed in 283 milliseconds

12