Searched defs:isBranch (Results 1 - 7 of 7) sorted by relevance

/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.h231 /// isBranch - Returns true if this is a conditional, unconditional, or
235 bool isBranch() const { function in class:llvm::MCInstrDesc
250 return isBranch() & !isBarrier() & !isIndirectBranch();
258 return isBranch() & isBarrier() & !isIndirectBranch();
344 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
/external/llvm/lib/MC/MCDisassembler/
H A DEDInst.cpp84 bool EDInst::isBranch() { function in class:EDInst
111 if (isBranch() &&
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGNode.h313 bool isBranch() function in struct:JSC::DFG::Node
320 ASSERT(isBranch() || isJump());
326 ASSERT(isBranch());
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp182 /// @param isBranch - If the instruction is a branch instruction
192 /// returns zero and isBranch is true then a symbol look up for immediate Value
196 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, argument
214 if (isBranch)
226 else if (isBranch) {
231 if (!Name && !isBranch)
325 bool isBranch = false; local
328 isBranch = true;
391 isBranch = true;
404 isBranch
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h220 bool isBranch; member in class:llvm::CodeGenInstruction
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp496 /// then isBranch is true, else false. If the getOpInfo() function was set as
501 /// getOpInfo() returns zero and isBranch is true then a symbol look up for
506 bool isBranch, uint64_t InstSize,
523 if (isBranch)
535 else if (isBranch) {
540 if (!Name && !isBranch)
505 tryAddingSymbolicOperand(uint64_t Address, int32_t Value, bool isBranch, uint64_t InstSize, MCInst &MI, const void *Decoder) argument

Completed in 169 milliseconds