Home
last modified time | relevance | path

Searched refs:DecodedInstruction (Results 1 – 19 of 19) sorted by relevance

/dalvik/dx/src/com/android/dx/merge/
DInstructionTransformer.java23 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/
DCodeReader.java20 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/
DInstructionCodec.java32 @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 …]
DPackedSwitchPayloadDecodedInstruction.java24 extends DecodedInstruction {
59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DDecodedInstruction.java39 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()
DSparseSwitchPayloadDecodedInstruction.java24 extends DecodedInstruction {
63 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DZeroRegisterDecodedInstruction.java24 public final class ZeroRegisterDecodedInstruction extends DecodedInstruction {
39 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DOneRegisterDecodedInstruction.java24 public final class OneRegisterDecodedInstruction extends DecodedInstruction {
50 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DRegisterRangeDecodedInstruction.java25 public final class RegisterRangeDecodedInstruction extends DecodedInstruction {
55 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DTwoRegisterDecodedInstruction.java24 public final class TwoRegisterDecodedInstruction extends DecodedInstruction {
59 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DThreeRegisterDecodedInstruction.java24 public final class ThreeRegisterDecodedInstruction extends DecodedInstruction {
68 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFourRegisterDecodedInstruction.java24 public final class FourRegisterDecodedInstruction extends DecodedInstruction {
77 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFiveRegisterDecodedInstruction.java24 public final class FiveRegisterDecodedInstruction extends DecodedInstruction {
86 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFillArrayDataPayloadDecodedInstruction.java24 extends DecodedInstruction {
97 public DecodedInstruction withIndex(int newIndex) { in withIndex()
/dalvik/dx/src/com/android/dx/command/grep/
DGrep.java25 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/
DFindUsages.java26 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/
DInstrUtils.h129 struct DecodedInstruction { struct
193 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec);
DInstrUtils.cpp490 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec) in dexDecodeInstruction()
/dalvik/dexdump/
DDexDump.cpp713 const DecodedInstruction* pDecInsn, char* buf, size_t bufSize) in indexString()
851 int insnWidth, const DecodedInstruction* pDecInsn) in dumpInstruction()
1088 DecodedInstruction decInsn; in dumpBytecodes()