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

1 2

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 140 case DalvOps.IF_EQZ: return Dops.IF_NEZ;
141 case DalvOps.IF_NEZ: return Dops.IF_EQZ;
RopToDop.java 91 MAP.put(Rops.IF_NEZ_INT, Dops.IF_NEZ);
97 MAP.put(Rops.IF_NEZ_OBJECT, Dops.IF_NEZ);
DalvOps.java 91 public static final int IF_NEZ = 0x39;
Dops.java 291 public static final Dop IF_NEZ =
292 new Dop(DalvOps.IF_NEZ, DalvOps.IF_NEZ,
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 163 case Opcodes.IF_EQZ: return Dops.IF_NEZ;
164 case Opcodes.IF_NEZ: return Dops.IF_EQZ;
RopToDop.java 100 // Opcodes.IF_NEZ
262 MAP.put(Rops.IF_NEZ_INT, Dops.IF_NEZ);
268 MAP.put(Rops.IF_NEZ_OBJECT, Dops.IF_NEZ);
Dops.java 294 public static final Dop IF_NEZ =
295 new Dop(Opcodes.IF_NEZ, Opcodes.IF_NEZ,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dop.java 163 case Opcodes.IF_EQZ: return Dops.IF_NEZ;
164 case Opcodes.IF_NEZ: return Dops.IF_EQZ;
RopToDop.java 101 // Opcodes.IF_NEZ
263 MAP.put(Rops.IF_NEZ_INT, Dops.IF_NEZ);
269 MAP.put(Rops.IF_NEZ_OBJECT, Dops.IF_NEZ);
Dops.java 297 public static final Dop IF_NEZ =
298 new Dop(Opcodes.IF_NEZ, Opcodes.IF_NEZ,
    [all...]
  /art/compiler/dex/
global_value_numbering.cc 189 (last_opcode == Instruction::IF_NEZ && pred_bb->taken == succ_id));
202 // Check if the predecessor has an IF_EQZ/IF_NEZ as the last insn.
207 // IF_EQZ/IF_NEZ checks some sreg, see if that sreg contains the value_name.
mir_optimization.cc 224 COMPILE_ASSERT(ConditionCodeForIfCcZ(Instruction::IF_NEZ) == kCondNe, check_if_nez_ccode);
407 case Instruction::IF_NEZ:
474 * We'll convert the IF_EQZ/IF_NEZ to a SELECT. We need to find the
641 case Instruction::IF_EQZ: opcode = Instruction::IF_NEZ; break;
642 case Instruction::IF_NEZ: opcode = Instruction::IF_EQZ; break;
786 } else if (last_opcode == Instruction::IF_NEZ) {
    [all...]
frontend.cc 215 Instruction::IF_NEZ,
global_value_numbering_test.cc     [all...]
local_value_numbering.cc     [all...]
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 101 public static final int IF_NEZ = 0x39;
OpcodeInfo.java 290 public static final Info IF_NEZ =
291 new Info(Opcodes.IF_NEZ, "if-nez",
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java 101 public static final int IF_NEZ = 0x39;
OpcodeInfo.java 290 public static final Info IF_NEZ =
291 new Info(Opcodes.IF_NEZ, "if-nez",
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 652 case Instruction::IF_NEZ:
    [all...]
codegen_util.cc     [all...]
  /art/runtime/
dex_instruction_list.h 78 V(0x39, IF_NEZ, "if-nez", k21t, false, kNone, kContinue | kBranch, kVerifyRegA | kVerifyBranchTarget) \
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Opcode.java 93 IF_NEZ((short)0x39, "if-nez", ReferenceType.NONE, Format.Format21t, Opcode.CAN_CONTINUE),
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 647 case IF_NEZ:
    [all...]
  /art/runtime/verifier/
method_verifier.cc     [all...]

Completed in 767 milliseconds

1 2