/dalvik/dx/src/com/android/dx/merge/ |
D | InstructionTransformer.java | 23 import com.android.dx.io.instructions.DecodedInstruction; 29 private DecodedInstruction[] mappedInstructions; 45 DecodedInstruction[] decodedInstructions = in transform() 46 DecodedInstruction.decodeAll(encodedInstructions); in transform() 50 mappedInstructions = new DecodedInstruction[size]; in transform() 55 for (DecodedInstruction instruction : mappedInstructions) { in transform() 67 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() 74 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() 85 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() 96 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() [all …]
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
D | InstructionCodec.java | 34 public DecodedInstruction decode(int opcodeUnit, in FORMAT_00X() 42 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_00X() 49 public DecodedInstruction decode(int opcodeUnit, in FORMAT_10X() 59 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_10X() 66 public DecodedInstruction decode(int opcodeUnit, in FORMAT_12X() 78 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_12X() 87 public DecodedInstruction decode(int opcodeUnit, in FORMAT_11N() 99 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11N() 108 public DecodedInstruction decode(int opcodeUnit, in FORMAT_11X() 119 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11X() [all …]
|
D | DecodedInstruction.java | 39 public abstract class DecodedInstruction { class 69 public static DecodedInstruction decode(CodeInput in) throws EOFException { in decode() 82 public static DecodedInstruction[] decodeAll(short[] encodedInstructions) { in decodeAll() 84 DecodedInstruction[] decoded = new DecodedInstruction[size]; in decodeAll() 89 decoded[in.cursor()] = DecodedInstruction.decode(in); in decodeAll() 101 public DecodedInstruction(InstructionCodec format, int opcode, in DecodedInstruction() method in DecodedInstruction 477 public abstract DecodedInstruction withIndex(int newIndex); in withIndex() 480 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex()
|
D | InvokePolymorphicRangeDecodedInstruction.java | 22 public class InvokePolymorphicRangeDecodedInstruction extends DecodedInstruction { 56 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex() 68 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | InvokePolymorphicDecodedInstruction.java | 22 public class InvokePolymorphicDecodedInstruction extends DecodedInstruction { 48 public DecodedInstruction withIndex(int newIndex) { in withIndex() 55 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex()
|
D | PackedSwitchPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 61 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | SparseSwitchPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 65 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | ZeroRegisterDecodedInstruction.java | 24 public final class ZeroRegisterDecodedInstruction extends DecodedInstruction { 41 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | OneRegisterDecodedInstruction.java | 24 public final class OneRegisterDecodedInstruction extends DecodedInstruction { 53 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | RegisterRangeDecodedInstruction.java | 25 public final class RegisterRangeDecodedInstruction extends DecodedInstruction { 58 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | TwoRegisterDecodedInstruction.java | 24 public final class TwoRegisterDecodedInstruction extends DecodedInstruction { 63 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | ThreeRegisterDecodedInstruction.java | 24 public final class ThreeRegisterDecodedInstruction extends DecodedInstruction { 73 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FourRegisterDecodedInstruction.java | 24 public final class FourRegisterDecodedInstruction extends DecodedInstruction { 83 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FiveRegisterDecodedInstruction.java | 24 public final class FiveRegisterDecodedInstruction extends DecodedInstruction { 93 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FillArrayDataPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 99 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
/dalvik/dx/src/com/android/dx/io/ |
D | CodeReader.java | 20 import com.android.dx.io.instructions.DecodedInstruction; 93 public void visitAll(DecodedInstruction[] decodedInstructions) in visitAll() 98 DecodedInstruction one = decodedInstructions[i]; in visitAll() 108 DecodedInstruction[] decodedInstructions = in visitAll() 109 DecodedInstruction.decodeAll(encodedInstructions); in visitAll() 113 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) { in callVisit() 135 void visit(DecodedInstruction[] all, DecodedInstruction one); in visit()
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
D | FindUsages.java | 26 import com.android.dx.io.instructions.DecodedInstruction; 80 public void visit(DecodedInstruction[] all, in FindUsages() 81 DecodedInstruction one) { in FindUsages() 92 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in FindUsages()
|
/dalvik/dx/src/com/android/dx/command/grep/ |
D | Grep.java | 25 import com.android.dx.io.instructions.DecodedInstruction; 50 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in Grep()
|
/dalvik/libdex/ |
D | InstrUtils.h | 135 struct DecodedInstruction { struct 199 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec);
|
D | InstrUtils.cpp | 490 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec) in dexDecodeInstruction()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 770 static char* indexString(DexFile* pDexFile, const DecodedInstruction* pDecInsn, size_t bufSize) in indexString() 955 int insnWidth, const DecodedInstruction* pDecInsn) in dumpInstruction() 1210 DecodedInstruction decInsn; in dumpBytecodes()
|