Home
last modified time | relevance | path

Searched refs:literal (Results 1 – 9 of 9) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
DDecodedInstruction.java64 private final long literal; field in DecodedInstruction
102 int index, IndexType indexType, int target, long literal) { in DecodedInstruction() argument
116 this.literal = literal; in DecodedInstruction()
196 return literal; in getLiteral()
204 if (literal != (int) literal) { in getLiteralInt()
205 throw new DexException("Literal out of range: " + Hex.u8(literal)); in getLiteralInt()
208 return (int) literal; in getLiteralInt()
216 if (literal != (short) literal) { in getLiteralUnit()
217 throw new DexException("Literal out of range: " + Hex.u8(literal)); in getLiteralUnit()
220 return (short) literal; in getLiteralUnit()
[all …]
DInstructionCodec.java52 int literal = byte1(opcodeUnit); // should be zero in FORMAT_10X() local
55 0, literal); in FORMAT_10X()
91 int literal = (nibble3(opcodeUnit) << 28) >> 28; // sign-extend in FORMAT_11N() local
94 0, literal, in FORMAT_11N()
149 int literal = byte1(opcodeUnit); // should be zero in FORMAT_20T() local
153 baseAddress + target, literal); in FORMAT_20T()
169 int literal = byte1(opcodeUnit); in FORMAT_20BC() local
173 0, literal); in FORMAT_20BC()
232 int literal = (short) in.read(); // sign-extend in FORMAT_21S() local
235 0, literal, in FORMAT_21S()
[all …]
DZeroRegisterDecodedInstruction.java29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction() argument
30 super(format, opcode, index, indexType, target, literal); in ZeroRegisterDecodedInstruction()
DOneRegisterDecodedInstruction.java32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction() argument
34 super(format, opcode, index, indexType, target, literal); in OneRegisterDecodedInstruction()
DRegisterRangeDecodedInstruction.java36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction() argument
38 super(format, opcode, index, indexType, target, literal); in RegisterRangeDecodedInstruction()
DTwoRegisterDecodedInstruction.java35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction() argument
37 super(format, opcode, index, indexType, target, literal); in TwoRegisterDecodedInstruction()
DThreeRegisterDecodedInstruction.java38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction() argument
40 super(format, opcode, index, indexType, target, literal); in ThreeRegisterDecodedInstruction()
DFourRegisterDecodedInstruction.java41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction() argument
43 super(format, opcode, index, indexType, target, literal); in FourRegisterDecodedInstruction()
DFiveRegisterDecodedInstruction.java44 int index, IndexType indexType, int target, long literal, in FiveRegisterDecodedInstruction() argument
46 super(format, opcode, index, indexType, target, literal); in FiveRegisterDecodedInstruction()