HomeSort by relevance Sort by last modified time
    Searched refs:IF_EQZ (Results 1 - 25 of 33) 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 90 MAP.put(Rops.IF_EQZ_INT, Dops.IF_EQZ);
96 MAP.put(Rops.IF_EQZ_OBJECT, Dops.IF_EQZ);
DalvOps.java 90 public static final int IF_EQZ = 0x38;
Dops.java 287 public static final Dop IF_EQZ =
288 new Dop(DalvOps.IF_EQZ, DalvOps.IF_EQZ,
    [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 99 // Opcodes.IF_EQZ
261 MAP.put(Rops.IF_EQZ_INT, Dops.IF_EQZ);
267 MAP.put(Rops.IF_EQZ_OBJECT, Dops.IF_EQZ);
Dops.java 290 public static final Dop IF_EQZ =
291 new Dop(Opcodes.IF_EQZ, Opcodes.IF_EQZ,
    [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 100 // Opcodes.IF_EQZ
262 MAP.put(Rops.IF_EQZ_INT, Dops.IF_EQZ);
268 MAP.put(Rops.IF_EQZ_OBJECT, Dops.IF_EQZ);
Dops.java 293 public static final Dop IF_EQZ =
294 new Dop(Opcodes.IF_EQZ, Opcodes.IF_EQZ,
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/
InstructionOffsetMapTest.java 58 /*10: 0x0f*/ new ImmutableInstruction21t(Opcode.IF_EQZ, 12, 13),
  /art/compiler/dex/
mir_optimization.cc 212 COMPILE_ASSERT(arraysize(kIfCcZConditionCodes) == Instruction::IF_LEZ - Instruction::IF_EQZ + 1,
216 return Instruction::IF_EQZ <= opcode && opcode <= Instruction::IF_LEZ;
220 return kIfCcZConditionCodes[opcode - Instruction::IF_EQZ];
223 COMPILE_ASSERT(ConditionCodeForIfCcZ(Instruction::IF_EQZ) == kCondEq, check_if_eqz_ccode);
406 case Instruction::IF_EQZ:
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;
780 if (last_opcode == Instruction::IF_EQZ) {
782 // The fall-through of a block following a IF_EQZ, set the vA of the IF_EQZ to show tha
    [all...]
global_value_numbering.cc 188 return ((last_opcode == Instruction::IF_EQZ && pred_bb->fall_through == 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.
frontend.cc 214 Instruction::IF_EQZ,
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 100 public static final int IF_EQZ = 0x38;
OpcodeInfo.java 286 public static final Info IF_EQZ =
287 new Info(Opcodes.IF_EQZ, "if-eqz",
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java 100 public static final int IF_EQZ = 0x38;
OpcodeInfo.java 286 public static final Info IF_EQZ =
287 new Info(Opcodes.IF_EQZ, "if-eqz",
    [all...]
  /art/compiler/sea_ir/ir/
sea.cc 631 case art::Instruction::IF_EQZ:
  /art/compiler/dex/quick/
mir_to_lir.cc 651 case Instruction::IF_EQZ:
    [all...]
codegen_util.cc     [all...]
  /art/runtime/
dex_instruction_list.h 77 V(0x38, IF_EQZ, "if-eqz", k21t, false, kNone, kContinue | kBranch, kVerifyRegA | kVerifyBranchTarget) \
  /art/runtime/verifier/
method_verifier.cc     [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Opcode.java 92 IF_EQZ((short)0x38, "if-eqz", ReferenceType.NONE, Format.Format21t, Opcode.CAN_CONTINUE),
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 646 case IF_EQZ:
    [all...]

Completed in 103 milliseconds

1 2