HomeSort by relevance Sort by last modified time
    Searched refs:Format11x (Results 1 - 12 of 12) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format11x.java 24 public class Format11x extends Format1 implements ContainsVRegs {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Format.java 38 Format11x(2),
Opcode.java 54 MOVE_RESULT(0x0a, "move-result", ReferenceType.NONE, Format.Format11x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
55 MOVE_RESULT_WIDE(0x0b, "move-result-wide", ReferenceType.NONE, Format.Format11x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
56 MOVE_RESULT_OBJECT(0x0c, "move-result-object", ReferenceType.NONE, Format.Format11x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
57 MOVE_EXCEPTION(0x0d, "move-exception", ReferenceType.NONE, Format.Format11x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
59 RETURN(0x0f, "return", ReferenceType.NONE, Format.Format11x),
60 RETURN_WIDE(0x10, "return-wide", ReferenceType.NONE, Format.Format11x),
61 RETURN_OBJECT(0x11, "return-object", ReferenceType.NONE, Format.Format11x),
73 MONITOR_ENTER(0x1d, "monitor-enter", ReferenceType.NONE, Format.Format11x, Opcode.CAN_THROW | Opcode.CAN_CONTINUE),
74 MONITOR_EXIT(0x1e, "monitor-exit", ReferenceType.NONE, Format.Format11x, Opcode.CAN_THROW | Opcode.CAN_CONTINUE),
83 THROW(0x27, "throw", ReferenceType.NONE, Format.Format11x, Opcode.CAN_THROW)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderInstruction11x.java 43 public static final Format FORMAT = Format.Format11x;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction11x.java 42 public static final Format FORMAT = Format.Format11x;
ImmutableInstruction.java 68 case Format11x:
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Instruction.java 28 import dexfuzz.rawdex.formats.Format11x;
330 addOpcodeInfo(Opcode.MOVE_RESULT, "move-result", 0x0a, new Format11x());
331 addOpcodeInfo(Opcode.MOVE_RESULT_WIDE, "move-result-wide", 0x0b, new Format11x());
332 addOpcodeInfo(Opcode.MOVE_RESULT_OBJECT, "move-result-object", 0x0c, new Format11x());
333 addOpcodeInfo(Opcode.MOVE_EXCEPTION, "move-exception", 0x0d, new Format11x());
335 addOpcodeInfo(Opcode.RETURN, "return", 0x0f, new Format11x());
336 addOpcodeInfo(Opcode.RETURN_WIDE, "return-wide", 0x10, new Format11x());
337 addOpcodeInfo(Opcode.RETURN_OBJECT, "return-object", 0x11, new Format11x());
349 addOpcodeInfo(Opcode.MONITOR_ENTER, "monitor-enter", 0x1d, new Format11x());
350 addOpcodeInfo(Opcode.MONITOR_EXIT, "monitor-exit", 0x1e, new Format11x());
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction.java 86 case Format11x:
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaInstruction.java 69 case Format11x:
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 199 case Format11x:
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 567 case Format11x:
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexWriter.java     [all...]

Completed in 61 milliseconds