/dalvik/dx/src/com/android/dx/io/instructions/ |
D | ZeroRegisterDecodedInstruction.java | 29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction() argument 30 super(format, opcode, index, indexType, target, literal); in ZeroRegisterDecodedInstruction()
|
D | OneRegisterDecodedInstruction.java | 32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction() argument 34 super(format, opcode, index, indexType, target, literal); in OneRegisterDecodedInstruction()
|
D | RegisterRangeDecodedInstruction.java | 36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction() argument 38 super(format, opcode, index, indexType, target, literal); in RegisterRangeDecodedInstruction()
|
D | TwoRegisterDecodedInstruction.java | 35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction() argument 37 super(format, opcode, index, indexType, target, literal); in TwoRegisterDecodedInstruction()
|
D | DecodedInstruction.java | 50 private final IndexType indexType; field in DecodedInstruction 102 int index, IndexType indexType, int target, long literal) { in DecodedInstruction() argument 114 this.indexType = indexType; in DecodedInstruction() 146 return indexType; in getIndexType()
|
D | ThreeRegisterDecodedInstruction.java | 38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction() argument 40 super(format, opcode, index, indexType, target, literal); in ThreeRegisterDecodedInstruction()
|
D | InvokePolymorphicRangeDecodedInstruction.java | 32 IndexType indexType, in InvokePolymorphicRangeDecodedInstruction() argument 36 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicRangeDecodedInstruction()
|
D | InstructionCodec.java | 286 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_21C() local 288 this, opcode, index, indexType, in FORMAT_21C() 404 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_22C() local 406 this, opcode, index, indexType, in FORMAT_22C() 551 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_31C() local 553 this, opcode, index, indexType, in FORMAT_31C() 690 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_45CC() local 699 this, opcode, methodIndex, indexType, protoIndex, registers); in FORMAT_45CC() 729 IndexType indexType = OpcodeInfo.getIndexType(opcode); in FORMAT_4RCC() local 731 this, opcode, methodIndex, indexType, c, registerCount, protoIndex); in FORMAT_4RCC() [all …]
|
D | FourRegisterDecodedInstruction.java | 41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction() argument 43 super(format, opcode, index, indexType, target, literal); in FourRegisterDecodedInstruction()
|
D | FiveRegisterDecodedInstruction.java | 44 int index, IndexType indexType, int target, long literal, in FiveRegisterDecodedInstruction() argument 46 super(format, opcode, index, indexType, target, literal); in FiveRegisterDecodedInstruction()
|
D | InvokePolymorphicDecodedInstruction.java | 31 IndexType indexType, in InvokePolymorphicDecodedInstruction() argument 34 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicDecodedInstruction()
|
/dalvik/opcode-gen/ |
D | opcode-gen.awk | 112 itype = toupper(indexType[i]); 298 indexType[idx] = parts[5]; 325 if (indexTypeValues[indexType[idx]] == "") { 326 printf("unknown index type: %s\n", indexType[idx]) >"/dev/stderr"; 418 packedIndexType[i] = indexType[op];
|
/dalvik/libdex/ |
D | InstrUtils.h | 142 InstructionIndexType indexType; member
|
D | InstrUtils.cpp | 497 pDec->indexType = dexGetIndexTypeFromOpcode(opcode); in dexDecodeInstruction()
|
/dalvik/dx/src/com/android/dx/io/ |
D | OpcodeInfo.java | 1269 private final IndexType indexType; field in OpcodeInfo.Info 1272 IndexType indexType) { in Info() argument 1276 this.indexType = indexType; in Info() 1292 return indexType; in getIndexType()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 816 switch (pDecInsn->indexType) { in indexString() 998 if (pDecInsn->indexType != kIndexNone) { in dumpInstruction()
|