HomeSort by relevance Sort by last modified time
    Searched refs:IF_NEZ (Results 1 - 25 of 27) 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/
mir_optimization.cc 242 case Instruction::IF_NEZ:
308 case Instruction::IF_NEZ:
330 (mir->dalvikInsn.opcode == Instruction::IF_NEZ))) {
370 * We'll convert the IF_EQZ/IF_NEZ to a SELECT. We need to find the
377 if (opcode == Instruction::IF_NEZ) {
530 case Instruction::IF_EQZ: opcode = Instruction::IF_NEZ; break;
531 case Instruction::IF_NEZ: opcode = Instruction::IF_EQZ; break;
646 } else if (last_opcode == Instruction::IF_NEZ) {
648 // The taken block following a IF_NEZ, set the vA of the IF_NEZ to show that it can't b
    [all...]
local_value_numbering.cc 50 case Instruction::IF_NEZ:
mir_graph.cc 298 case Instruction::IF_NEZ:
    [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 296 case Instruction::IF_NEZ:
codegen_util.cc     [all...]
gen_common.cc 147 case Instruction::IF_NEZ:
    [all...]
  /art/runtime/
dex_instruction_list.h 78 V(0x39, IF_NEZ, "if-nez", k21t, false, kNone, kContinue | kBranch, kVerifyRegA | kVerifyBranchTarget) \
  /art/runtime/verifier/
method_verifier.cc     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
Opcode.java 94 IF_NEZ((short)0x39, "if-nez", ReferenceType.none, Format.Format21t, Opcode.CAN_CONTINUE),
    [all...]

Completed in 80 milliseconds

1 2