HomeSort by relevance Sort by last modified time
    Searched refs:MONITOR_EXIT (Results 1 - 25 of 28) 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;
366 case MONITOR_EXIT: return "monitor-exit";
Rops.java 644 public static final Rop MONITOR_EXIT =
645 new Rop(RegOps.MONITOR_EXIT, Type.VOID, StdTypeList.OBJECT,
    [all...]
  /art/libdexfile/dex/
bytecode_utils.h 139 // Special-case MONITOR_EXIT which is a throwing instruction but the verifier
142 return instruction.IsThrow() && instruction.Opcode() != Instruction::MONITOR_EXIT;
dex_instruction_list.h 52 V(0x1E, MONITOR_EXIT, "monitor-exit", k11x, kIndexNone, kContinue | kThrow, kClobber, kVerifyRegA) \
  /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 75 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 185 public static final Dop MONITOR_EXIT =
186 new Dop(DalvOps.MONITOR_EXIT, DalvOps.MONITOR_EXIT,
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 78 // Opcodes.MONITOR_EXIT
388 MAP.put(Rops.MONITOR_EXIT, Dops.MONITOR_EXIT);
Dops.java 188 public static final Dop MONITOR_EXIT =
189 new Dop(Opcodes.MONITOR_EXIT, Opcodes.MONITOR_EXIT,
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java     [all...]
RopperMachine.java     [all...]
  /art/runtime/
common_throws.cc 711 case Instruction::MONITOR_EXIT: {
    [all...]
  /art/runtime/interpreter/
interpreter.cc 560 instr->Opcode() == Instruction::MONITOR_EXIT) {
  /art/tools/veridex/
flow_analysis.cc 652 case Instruction::MONITOR_EXIT: {
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Code.java     [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Opcode.java 74 MONITOR_EXIT(0x1e, "monitor-exit", ReferenceType.NONE, Format.Format11x, Opcode.CAN_THROW | Opcode.CAN_CONTINUE),
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 662 case MONITOR_EXIT:
    [all...]
  /art/compiler/optimizing/
instruction_builder.cc     [all...]

Completed in 626 milliseconds

1 2