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

1 2

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 142 case DalvOps.IF_LTZ: return Dops.IF_GEZ;
143 case DalvOps.IF_GEZ: return Dops.IF_LTZ;
DalvOps.java 93 public static final int IF_GEZ = 0x3b;
Dops.java 299 public static final Dop IF_GEZ =
300 new Dop(DalvOps.IF_GEZ, DalvOps.IF_GEZ,
    [all...]
RopToDop.java 93 MAP.put(Rops.IF_GEZ_INT, Dops.IF_GEZ);
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 165 case Opcodes.IF_LTZ: return Dops.IF_GEZ;
166 case Opcodes.IF_GEZ: return Dops.IF_LTZ;
Dops.java 302 public static final Dop IF_GEZ =
303 new Dop(Opcodes.IF_GEZ, Opcodes.IF_GEZ,
    [all...]
RopToDop.java 102 // Opcodes.IF_GEZ
264 MAP.put(Rops.IF_GEZ_INT, Dops.IF_GEZ);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dop.java 165 case Opcodes.IF_LTZ: return Dops.IF_GEZ;
166 case Opcodes.IF_GEZ: return Dops.IF_LTZ;
Dops.java 305 public static final Dop IF_GEZ =
306 new Dop(Opcodes.IF_GEZ, Opcodes.IF_GEZ,
    [all...]
RopToDop.java 103 // Opcodes.IF_GEZ
265 MAP.put(Rops.IF_GEZ_INT, Dops.IF_GEZ);
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 103 public static final int IF_GEZ = 0x3b;
OpcodeInfo.java 298 public static final Info IF_GEZ =
299 new Info(Opcodes.IF_GEZ, "if-gez",
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java 103 public static final int IF_GEZ = 0x3b;
OpcodeInfo.java 298 public static final Info IF_GEZ =
299 new Info(Opcodes.IF_GEZ, "if-gez",
    [all...]
  /art/compiler/dex/
mir_optimization.cc 226 COMPILE_ASSERT(ConditionCodeForIfCcZ(Instruction::IF_GEZ) == kCondGe, check_if_gez_ccode);
409 case Instruction::IF_GEZ:
643 case Instruction::IF_LTZ: opcode = Instruction::IF_GEZ; break;
644 case Instruction::IF_GEZ: opcode = Instruction::IF_LTZ; break;
    [all...]
frontend.cc 217 Instruction::IF_GEZ,
local_value_numbering.cc     [all...]
mir_graph.cc 421 case Instruction::IF_GEZ:
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 654 case Instruction::IF_GEZ:
    [all...]
codegen_util.cc     [all...]
  /art/runtime/
dex_instruction_list.h 80 V(0x3B, IF_GEZ, "if-gez", k21t, false, kNone, kContinue | kBranch, kVerifyRegA | kVerifyBranchTarget) \
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Opcode.java 95 IF_GEZ((short)0x3b, "if-gez", ReferenceType.NONE, Format.Format21t, Opcode.CAN_CONTINUE),
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 649 case IF_GEZ:
    [all...]
  /art/runtime/verifier/
method_verifier.cc     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc     [all...]

Completed in 2319 milliseconds

1 2