Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/merge/
DInstructionTransformer.java23 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/
DInstructionCodec.java34 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 …]
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()
480 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex()
DInvokePolymorphicRangeDecodedInstruction.java22 public class InvokePolymorphicRangeDecodedInstruction extends DecodedInstruction {
56 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex()
68 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DInvokePolymorphicDecodedInstruction.java22 public class InvokePolymorphicDecodedInstruction extends DecodedInstruction {
48 public DecodedInstruction withIndex(int newIndex) { in withIndex()
55 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex()
DPackedSwitchPayloadDecodedInstruction.java24 extends DecodedInstruction {
61 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DSparseSwitchPayloadDecodedInstruction.java24 extends DecodedInstruction {
65 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DZeroRegisterDecodedInstruction.java24 public final class ZeroRegisterDecodedInstruction extends DecodedInstruction {
41 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DOneRegisterDecodedInstruction.java24 public final class OneRegisterDecodedInstruction extends DecodedInstruction {
53 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DRegisterRangeDecodedInstruction.java25 public final class RegisterRangeDecodedInstruction extends DecodedInstruction {
58 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DTwoRegisterDecodedInstruction.java24 public final class TwoRegisterDecodedInstruction extends DecodedInstruction {
63 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DThreeRegisterDecodedInstruction.java24 public final class ThreeRegisterDecodedInstruction extends DecodedInstruction {
73 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFourRegisterDecodedInstruction.java24 public final class FourRegisterDecodedInstruction extends DecodedInstruction {
83 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFiveRegisterDecodedInstruction.java24 public final class FiveRegisterDecodedInstruction extends DecodedInstruction {
93 public DecodedInstruction withIndex(int newIndex) { in withIndex()
DFillArrayDataPayloadDecodedInstruction.java24 extends DecodedInstruction {
99 public DecodedInstruction withIndex(int newIndex) { in withIndex()
/dalvik/dx/src/com/android/dx/io/
DCodeReader.java20 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/
DFindUsages.java26 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/
DGrep.java25 import com.android.dx.io.instructions.DecodedInstruction;
50 public void visit(DecodedInstruction[] all, DecodedInstruction one) { in Grep()
/dalvik/libdex/
DInstrUtils.h135 struct DecodedInstruction { struct
199 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec);
DInstrUtils.cpp490 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec) in dexDecodeInstruction()
/dalvik/dexdump/
DDexDump.cpp770 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()