/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 | 37 MOVE((short)0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 40 MOVE_WIDE((short)0x04, "move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER), 43 MOVE_OBJECT((short)0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 69 ARRAY_LENGTH((short)0x21, "array-length", ReferenceType.NONE, Format.Format12x, Opcode.CAN_THROW | Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 150 NEG_INT((short)0x7b, "neg-int", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 151 NOT_INT((short)0x7c, "not-int", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 152 NEG_LONG((short)0x7d, "neg-long", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER), 153 NOT_LONG((short)0x7e, "not-long", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER), 154 NEG_FLOAT((short)0x7f, "neg-float", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 155 NEG_DOUBLE((short)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/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/ |
InstructionMethodItem.java | 196 case Format12x:
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
MutableMethodImplementation.java | 526 case Format12x: [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
DexWriter.java | [all...] |