/dalvik/dx/src/com/android/dx/merge/ |
D | InstructionTransformer.java | 23 import com.android.dx.io.instructions.DecodedInstruction; 29 private DecodedInstruction[] mappedInstructions; 43 DecodedInstruction[] decodedInstructions = in transform() 44 DecodedInstruction.decodeAll(encodedInstructions); in transform() 48 mappedInstructions = new DecodedInstruction[size]; in transform() 53 for (DecodedInstruction instruction : mappedInstructions) { in transform() 64 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() 70 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() 80 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() 90 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in visit() [all …]
|
/dalvik/dx/src/com/android/dx/io/ |
D | CodeReader.java | 20 import com.android.dx.io.instructions.DecodedInstruction; 79 public void visitAll(DecodedInstruction[] decodedInstructions) in visitAll() 84 DecodedInstruction one = decodedInstructions[i]; in visitAll() 94 DecodedInstruction[] decodedInstructions = in visitAll() 95 DecodedInstruction.decodeAll(encodedInstructions); in visitAll() 99 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) { in callVisit() 119 void visit(DecodedInstruction[] all, DecodedInstruction one); in visit()
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
D | InstructionCodec.java | 32 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_00X() 39 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_00X() 45 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_10X() 54 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_10X() 60 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_12X() 71 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_12X() 79 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_11N() 90 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11N() 98 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_11X() 108 @Override public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11X() [all …]
|
D | PackedSwitchPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
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()
|
D | SparseSwitchPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 63 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | ZeroRegisterDecodedInstruction.java | 24 public final class ZeroRegisterDecodedInstruction extends DecodedInstruction { 39 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | OneRegisterDecodedInstruction.java | 24 public final class OneRegisterDecodedInstruction extends DecodedInstruction { 50 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | RegisterRangeDecodedInstruction.java | 25 public final class RegisterRangeDecodedInstruction extends DecodedInstruction { 55 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | TwoRegisterDecodedInstruction.java | 24 public final class TwoRegisterDecodedInstruction extends DecodedInstruction { 59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | ThreeRegisterDecodedInstruction.java | 24 public final class ThreeRegisterDecodedInstruction extends DecodedInstruction { 68 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FourRegisterDecodedInstruction.java | 24 public final class FourRegisterDecodedInstruction extends DecodedInstruction { 77 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FiveRegisterDecodedInstruction.java | 24 public final class FiveRegisterDecodedInstruction extends DecodedInstruction { 86 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
D | FillArrayDataPayloadDecodedInstruction.java | 24 extends DecodedInstruction { 97 public DecodedInstruction withIndex(int newIndex) { in withIndex()
|
/dalvik/dx/src/com/android/dx/command/grep/ |
D | Grep.java | 25 import com.android.dx.io.instructions.DecodedInstruction; 49 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in Grep()
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
D | FindUsages.java | 26 import com.android.dx.io.instructions.DecodedInstruction; 79 public void visit(DecodedInstruction[] all, in FindUsages() 80 DecodedInstruction one) { in FindUsages() 90 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in FindUsages()
|
/dalvik/libdex/ |
D | InstrUtils.h | 129 struct DecodedInstruction { struct 193 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 | 712 const DecodedInstruction* pDecInsn, char* buf, size_t bufSize) in indexString() 850 int insnWidth, const DecodedInstruction* pDecInsn) in dumpInstruction() 1081 DecodedInstruction decInsn; in dumpBytecodes()
|