HomeSort by relevance Sort by last modified time
    Searched refs:isBranch (Results 1 - 25 of 32) sorted by null

1 2

  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 31 virtual bool isBranch(const MCInst &Inst) const {
32 return Info->get(Inst.getOpcode()).isBranch();
MCInstrDesc.h 231 /// isBranch - Returns true if this is a conditional, unconditional, or
235 bool isBranch() const {
250 return isBranch() & !isBarrier() & !isIndirectBranch();
258 return isBranch() & isBarrier() & !isIndirectBranch();
344 /// 3. Calling, branching, returning: use isCall/isReturn/isBranch.
  /dalvik/vm/analysis/
CodeVerify.h 289 bool isBranch)
291 assert(isBranch);
292 //if (isBranch)
  /external/llvm/lib/MC/MCDisassembler/
EDInst.h 127 /// isBranch - Returns true if the instruction is a branch
128 bool isBranch();
EDInst.cpp 84 bool EDInst::isBranch() {
111 if (isBranch() &&
EDMain.cpp 107 return ((EDInst*)inst)->isBranch();
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 182 /// @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,
214 if (isBranch)
226 else if (isBranch) {
231 if (!Name && !isBranch)
325 bool isBranch = false;
328 isBranch = true;
391 isBranch = true;
404 isBranch = true
    [all...]
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 58 if (Ana->isBranch(Inst)) {
118 if (Ana->isBranch(Inst.Inst)) {
  /external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.cpp 113 if (node.isBranch() || node.isJump()) {
117 if (node.isBranch()) {
DFGNode.h 313 bool isBranch()
320 ASSERT(isBranch() || isJump());
326 ASSERT(isBranch());
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 367 /// isBranch - Returns true if this is a conditional, unconditional, or
371 bool isBranch(QueryType Type = AnyInBundle) const {
386 return isBranch(Type) & !isBarrier(Type) & !isIndirectBranch(Type);
394 return isBranch(Type) & isBarrier(Type) & !isIndirectBranch(Type);
    [all...]
  /sdk/emulator/qtools/
opcode.h 133 inline bool isBranch(Opcode op) { return (opcode_flags[op] & kCatBranch) != 0; }
callstack.h 367 if (!isBranch(op) || op == OP_BX || op == OP_THUMB_BX) {
369 } else if (isBranch(op) && !isBranchLink(op)) {
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 162 if (MI->isBranch() && !MI->isBarrier())
189 if (!I->isBranch())
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 198 (!MI->isBranch() && !MI->isReturn()) ; ++MBBI) {
  /external/llvm/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 211 if (I->hasDelaySlot() || I->isBranch() || isDelayFiller(MBB,I) ||
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 308 if (inst->isBranch())
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 220 bool isBranch;
InstrInfoEmitter.cpp 317 if (Inst.isBranch) OS << "|(1<<MCID::Branch)";
CodeGenInstruction.cpp 296 isBranch = R->getValueAsBit("isBranch");
  /external/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 164 && MI.isBranch())
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.cpp 147 if (!I->isBranch())
  /external/llvm/lib/CodeGen/
IfConversion.cpp 584 if (!TIE->isBranch())
589 if (!FIE->isBranch())
    [all...]
TwoAddressInstructionPass.cpp 742 KillMI->isBranch() || KillMI->isTerminator())
798 OtherMI->isBranch() || OtherMI->isTerminator())
    [all...]
TargetInstrInfoImpl.cpp 148 if (MI->isBranch() && !MI->isBarrier())

Completed in 593 milliseconds

1 2