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

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Instruction.java 29 import dexfuzz.rawdex.formats.Format12x;
321 addOpcodeInfo(Opcode.MOVE, "move", 0x01, new Format12x());
324 addOpcodeInfo(Opcode.MOVE_WIDE, "move-wide", 0x04, new Format12x());
327 addOpcodeInfo(Opcode.MOVE_OBJECT, "move-object", 0x07, new Format12x());
353 addOpcodeInfo(Opcode.ARRAY_LENGTH, "array-length", 0x21, new Format12x());
446 addOpcodeInfo(Opcode.NEG_INT, "neg-int", 0x7b, new Format12x());
447 addOpcodeInfo(Opcode.NOT_INT, "not-int", 0x7c, new Format12x());
448 addOpcodeInfo(Opcode.NEG_LONG, "neg-long", 0x7d, new Format12x());
449 addOpcodeInfo(Opcode.NOT_LONG, "not-long", 0x7e, new Format12x());
450 addOpcodeInfo(Opcode.NEG_FLOAT, "neg-float", 0x7f, new Format12x());
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format12x.java 24 public class Format12x extends Format1 implements ContainsVRegs {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Format.java 39 Format12x(2),
Opcode.java 45 MOVE(0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
48 MOVE_WIDE(0x04, "move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
51 MOVE_OBJECT(0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
77 ARRAY_LENGTH(0x21, "array-length", ReferenceType.NONE, Format.Format12x, Opcode.CAN_THROW | Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
158 NEG_INT(0x7b, "neg-int", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
159 NOT_INT(0x7c, "not-int", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
160 NEG_LONG(0x7d, "neg-long", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
161 NOT_LONG(0x7e, "not-long", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
162 NEG_FLOAT(0x7f, "neg-float", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
163 NEG_DOUBLE(0x80, "neg-double", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderInstruction12x.java 43 public static final Format FORMAT = Format.Format12x;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction12x.java 42 public static final Format FORMAT = Format.Format12x;
ImmutableInstruction.java 70 case Format12x:
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction.java 88 case Format12x:
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaInstruction.java 71 case Format12x:
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 204 case Format12x:
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 570 case Format12x:
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexWriter.java     [all...]

Completed in 337 milliseconds