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

1 2

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 184 public static final int MONITOR_EXIT = 37;
350 case MONITOR_EXIT: return "monitor-exit";
Rops.java 643 public static final Rop MONITOR_EXIT =
644 new Rop(RegOps.MONITOR_EXIT, Type.VOID, StdTypeList.OBJECT,
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegOps.java 184 public static final int MONITOR_EXIT = 37;
350 case MONITOR_EXIT: return "monitor-exit";
Rops.java 643 public static final Rop MONITOR_EXIT =
644 new Rop(RegOps.MONITOR_EXIT, Type.VOID, StdTypeList.OBJECT,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegOps.java 184 public static final int MONITOR_EXIT = 37;
350 case MONITOR_EXIT: return "monitor-exit";
Rops.java 643 public static final Rop MONITOR_EXIT =
644 new Rop(RegOps.MONITOR_EXIT, Type.VOID, StdTypeList.OBJECT,
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Opcode.java 50 MONITOR_EXIT,
Instruction.java 350 addOpcodeInfo(Opcode.MONITOR_EXIT, "monitor-exit", 0x1e, new Format11x());
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
RandomInstructionGenerator.java 269 exitInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MONITOR_EXIT);
272 } else if (newInsn.insn.info.opcode == Opcode.MONITOR_EXIT) {
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 74 public static final int MONITOR_EXIT = 0x1e;
OpcodeInfo.java 182 public static final Info MONITOR_EXIT =
183 new Info(Opcodes.MONITOR_EXIT, "monitor-exit",
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 211 MAP.put(Rops.MONITOR_EXIT, Dops.MONITOR_EXIT);
DalvOps.java 64 public static final int MONITOR_EXIT = 0x1e;
Dops.java 183 public static final Dop MONITOR_EXIT =
184 new Dop(DalvOps.MONITOR_EXIT, DalvOps.MONITOR_EXIT,
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 76 // Opcodes.MONITOR_EXIT
382 MAP.put(Rops.MONITOR_EXIT, Dops.MONITOR_EXIT);
Dops.java 186 public static final Dop MONITOR_EXIT =
187 new Dop(Opcodes.MONITOR_EXIT, Opcodes.MONITOR_EXIT,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopToDop.java 77 // Opcodes.MONITOR_EXIT
383 MAP.put(Rops.MONITOR_EXIT, Dops.MONITOR_EXIT);
Dops.java 189 public static final Dop MONITOR_EXIT =
190 new Dop(Opcodes.MONITOR_EXIT, Opcodes.MONITOR_EXIT,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java 74 public static final int MONITOR_EXIT = 0x1e;
OpcodeInfo.java 182 public static final Info MONITOR_EXIT =
183 new Info(Opcodes.MONITOR_EXIT, "monitor-exit",
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java     [all...]
RopperMachine.java     [all...]
  /art/compiler/dex/
mir_graph.cc 397 const Instruction* monitor_exit = Instruction::At(current_code_item_->insns_ + monitor_exit_offset); local
398 DCHECK(monitor_exit->Opcode() == Instruction::MONITOR_EXIT);
399 int monitor_reg = monitor_exit->VRegA_11x();
442 return check_insn->Opcode() == Instruction::MONITOR_EXIT &&
617 if (insn->dalvikInsn.opcode == Instruction::MONITOR_EXIT &&
    [all...]
  /art/compiler/dex/quick/
quick_compiler.cc 168 Instruction::MONITOR_EXIT,
  /art/runtime/
dex_instruction_list.h 51 V(0x1E, MONITOR_EXIT, "monitor-exit", k11x, false, kNone, kContinue | kThrow | kClobber, kVerifyRegA) \

Completed in 3593 milliseconds

1 2