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

1234

/external/swiftshader/third_party/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();
36 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/include/llvm/MC/
H A DMCInstrAnalysis.h34 virtual bool isBranch(const MCInst &Inst) const { function in class:llvm::MCInstrAnalysis
35 return Info->get(Inst.getOpcode()).isBranch();
H A DMCInstrDesc.h233 bool isBranch() const { return Flags & (1 << MCID::Branch); } function in class:llvm::MCInstrDesc
244 return isBranch() & !isBarrier() & !isIndirectBranch();
252 return isBranch() & isBarrier() & !isIndirectBranch();
365 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
/external/llvm/lib/MC/
H A DMCInstrDesc.cpp35 if (isBranch() || isCall() || isReturn() || isIndirectBranch())
/external/swiftshader/third_party/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/lib/Target/Hexagon/
H A DHexagonBranchRelaxation.cpp167 (SecondTerm->isBranch() || SecondTerm->isCall()) &&
186 if (!MI.isBranch() || !isJumpOutOfRange(MI, BlockToInstOffset))
H A DRDFDeadCode.cpp59 if (MI->mayStore() || MI->isBranch() || MI->isCall() || MI->isReturn())
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
H A DMCFunction.cpp58 if (Ana->isBranch(Inst)) {
118 if (Ana->isBranch(Inst.Inst)) {
/external/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp61 if (!MCID->isBranch())
179 if (CurSlots == 5 || (MCID->isBranch() && CurBranches == 1)) {
200 if (MCID->isBranch())
H A DPPCEarlyReturn.cpp122 } else if (J->isBranch()) {
/external/llvm/lib/Target/BPF/
H A DBPFInstrInfo.cpp98 if (!I->isBranch())
/external/llvm/lib/Target/SystemZ/Disassembler/
H A DSystemZDisassembler.cpp54 /// @param isBranch - If the instruction is a branch instruction
64 /// returns zero and isBranch is true then a symbol look up for immediate Value
68 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, argument
73 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
238 bool isBranch,
243 if (!tryAddingSymbolicOperand(Value, isBranch, Address, 2, N / 8,
/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetInstrInfo.cpp137 if (MCID.isBranch() && !MCID.isBarrier())
/external/llvm/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp166 if (MI.isBranch() && !MI.isBarrier())
193 if (!I->isBranch())
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp265 /// @param isBranch - If the instruction is a branch instruction
275 /// returns zero and isBranch is true then a symbol look up for immediate Value
279 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, argument
283 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
369 bool isBranch = false; local
372 isBranch = true;
627 isBranch = true;
633 isBranch = true;
640 isBranch = true;
650 if(!tryAddingSymbolicOperand(immediate + pcrel, isBranch, ins
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp168 if (MCID.isBranch() && !MCID.isBarrier())
195 if (!I->getDesc().isBranch())
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h461 bool isBranch(QueryType Type = AnyInBundle) const {
476 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
484 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp255 if (HexagonMCInstrInfo::getDesc(MCII, *ID).isBranch())
304 if (HexagonMCInstrInfo::getDesc(MCII, *ID).isBranch() ||
H A DHexagonMCCodeEmitter.cpp320 if (MCID.isBranch())
327 } else if (MCID.isBranch())
715 if (MCID.isBranch() ||
733 if (MCID.isBranch() ||
/external/llvm/lib/Target/ARM/
H A DThumb2ITBlockPass.cpp222 (!MI->isBranch() && !MI->isReturn()) ; ++MBBI) {
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h225 bool isBranch : 1;
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DThumb2ITBlockPass.cpp201 (!MI->getDesc().isBranch() && !MI->getDesc().isReturn()) ; ++MBBI) {
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeDelaySlotFiller.cpp215 if (desc.hasDelaySlot() || desc.isBranch() || isDelayFiller(MBB,I) ||

Completed in 530 milliseconds

1234