HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 51 - 75 of 1019) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction21c.java 33 import org.jf.dexlib.Code.Opcode;
45 public Instruction21c(Opcode opcode, short regA, Item referencedItem) {
46 super(opcode, referencedItem);
52 if (opcode == Opcode.NEW_INSTANCE) {
55 throw new RuntimeException("Only class references can be used with the new-instance opcode");
62 private Instruction21c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
63 super(dexFile, opcode, buffer, bufferIndex)
    [all...]
Instruction3rc.java 33 import org.jf.dexlib.Code.Opcode;
42 import static org.jf.dexlib.Code.Opcode.*;
50 public Instruction3rc(Opcode opcode, short regCount, int startReg, Item referencedItem) {
51 super(opcode, referencedItem);
70 checkItem(opcode, referencedItem, regCount);
73 private Instruction3rc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
74 super(dexFile, opcode, buffer, bufferIndex);
79 checkItem(opcode, getReferencedItem(), getRegCount())
    [all...]
Instruction35c.java 34 import org.jf.dexlib.Code.Opcode;
42 import static org.jf.dexlib.Code.Opcode.*;
53 public Instruction35c(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG,
55 super(opcode, referencedItem);
69 checkItem(opcode, referencedItem, regCount);
79 protected Instruction35c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
80 super(dexFile, opcode, buffer, bufferIndex);
93 checkItem(opcode, getReferencedItem(), getRegCount())
    [all...]
Instruction11n.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction11n(Opcode opcode, byte regA, byte litB) {
45 super(opcode);
60 private Instruction11n(Opcode opcode, byte[] buffer, int bufferIndex) {
61 super(opcode);
68 out.writeByte(opcode.value);
85 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction11x.java 32 import org.jf.dexlib.Code.Opcode;
42 public Instruction11x(Opcode opcode, short regA) {
43 super(opcode);
52 private Instruction11x(Opcode opcode, byte[] buffer, int bufferIndex) {
53 super(opcode);
59 out.writeByte(opcode.value);
72 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction12x.java 32 import org.jf.dexlib.Code.Opcode;
43 public Instruction12x(Opcode opcode, byte regA, byte regB) {
44 super(opcode);
55 private Instruction12x(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
62 out.writeByte(opcode.value);
79 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction21s.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction21s(Opcode opcode, short regA, short litB) {
45 super(opcode);
55 private Instruction21s(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
63 out.writeByte(opcode.value);
81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction22b.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction22b(Opcode opcode, short regA, short regB, byte litC) {
45 super(opcode);
57 private Instruction22b(Opcode opcode, byte[] buffer, int bufferIndex) {
58 super(opcode);
66 out.writeByte(opcode.value);
89 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction22s.java 33 import org.jf.dexlib.Code.Opcode;
45 public Instruction22s(Opcode opcode, byte regA, byte regB, short litC) {
46 super(opcode);
58 private Instruction22s(Opcode opcode, byte[] buffer, int bufferIndex) {
59 super(opcode);
67 out.writeByte(opcode.value);
89 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction22x.java 32 import org.jf.dexlib.Code.Opcode;
43 public Instruction22x(Opcode opcode, short regA, int regB) {
44 super(opcode);
58 private Instruction22x(Opcode opcode, byte[] buffer, int bufferIndex) {
59 super(opcode);
66 out.writeByte(opcode.value);
84 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction23x.java 32 import org.jf.dexlib.Code.Opcode;
43 public Instruction23x(Opcode opcode, short regA, short regB, short regC) {
44 super(opcode);
57 private Instruction23x(Opcode opcode, byte[] buffer, int bufferIndex) {
58 super(opcode);
66 out.writeByte(opcode.value);
89 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction31c.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction31c(Opcode opcode, short regA, Item referencedItem) {
45 super(opcode, referencedItem);
54 private Instruction31c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
55 super(dexFile, opcode, buffer, bufferIndex);
61 out.writeByte(opcode.value);
75 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction31i.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction31i(Opcode opcode, short regA, int litB) {
45 super(opcode);
55 private Instruction31i(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
63 out.writeByte(opcode.value);
81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction31t.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction31t(Opcode opcode, short regA, int offB) {
45 super(opcode);
55 private Instruction31t(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
63 out.writeByte(opcode.value);
86 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction32x.java 32 import org.jf.dexlib.Code.Opcode;
43 public Instruction32x(Opcode opcode, int regA, int regB) {
44 super(opcode);
55 private Instruction32x(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
63 out.writeByte(opcode.value);
82 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction3rmi.java 45 public Instruction3rmi(Opcode opcode, short regCount, int startReg, int inlineIndex) {
46 super(opcode);
71 private Instruction3rmi(Opcode opcode, byte[] buffer, int bufferIndex) {
72 super(opcode);
80 out.writeByte(opcode.value);
103 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
104 return new Instruction3rmi(opcode, buffer, bufferIndex)
    [all...]
Instruction51l.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction51l(Opcode opcode, short regA, long litB) {
45 super(opcode);
55 private Instruction51l(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
63 out.writeByte(opcode.value);
81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction20bc.java 41 public Instruction20bc(Opcode opcode, VerificationErrorType validationErrorType, Item referencedItem) {
42 super(opcode, referencedItem, getReferenceType(referencedItem));
60 private Instruction20bc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
61 super(dexFile, opcode, buffer, bufferIndex);
67 protected ReferenceType readReferenceType(Opcode opcode, byte[] buffer, int bufferIndex) {
80 if(opcode == Opcode.CONST_STRING && getReferencedItem().getIndex() > 0xFFFF)
    [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenCommon.cpp 40 assert(EncodingMap[lir->opcode].flags & (IS_LOAD | IS_STORE));
63 assert(!(EncodingMap[lir->opcode].flags & IS_STORE));
146 int opcode = lir->opcode;
149 if (opcode <= 0) {
154 flags = EncodingMap[lir->opcode].flags;
240 int flags = EncodingMap[lir->opcode].flags;
272 static MipsLIR *newLIR0(CompilationUnit *cUnit, MipsOpCode opcode)
275 assert(isPseudoOpCode(opcode) || (EncodingMap[opcode].flags & NO_OPERAND))
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb/
Factory.cpp 77 loadPcRel->opcode = kThumbLdrPcRel;
132 loadPcRel->opcode = kThumbLdrPcRel;
145 ArmOpcode opcode = kThumbBkpt; local
148 opcode = kThumbBUncond;
154 return newLIR0(cUnit, opcode);
164 ArmOpcode opcode = kThumbBkpt; local
167 opcode = kThumbPush;
170 opcode = kThumbPop;
176 return newLIR1(cUnit, opcode, value);
181 ArmOpcode opcode = kThumbBkpt local
200 ArmOpcode opcode = kThumbBkpt; local
253 ArmOpcode opcode = kThumbBkpt; local
284 ArmOpcode opcode = kThumbBkpt; local
377 ArmOpcode opcode = kThumbBkpt; local
474 ArmOpcode opcode = kThumbBkpt; local
517 ArmOpcode opcode = kThumbBkpt; local
590 ArmOpcode opcode = kThumbBkpt; local
720 ArmOpcode opcode = kThumbBkpt; local
842 ArmOpcode opcode; local
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Factory.cpp 71 loadPcRel->opcode = kThumb2Vldrs;
179 loadPcRel->opcode = kThumb2LdrPcRel12;
230 loadPcRel->opcode = kThumb2LdrPcRel12;
243 ArmOpcode opcode = kThumbBkpt; local
246 opcode = kThumbBUncond;
251 return newLIR0(cUnit, opcode);
261 ArmOpcode opcode = kThumbBkpt; local
265 opcode = kThumbPush;
268 opcode = kThumbPush;
271 opcode = kThumb2Push
295 ArmOpcode opcode = kThumbBkpt; local
310 ArmOpcode opcode = kThumbBkpt; local
431 ArmOpcode opcode = kThumbBkpt; local
504 ArmOpcode opcode = kThumbBkpt; local
627 ArmOpcode opcode = kThumbBkpt; local
751 ArmOpcode opcode = kThumbBkpt; local
815 ArmOpcode opcode = kThumbBkpt; local
880 ArmOpcode opcode = kThumbBkpt; local
1014 ArmOpcode opcode = kThumbBkpt; local
1221 ArmOpcode opcode; local
    [all...]
  /dalvik/opcode-gen/
regen-all 37 ${progdir}/opcode-gen dx/src/com/android/dx/dex/code/Dops.java
38 ${progdir}/opcode-gen dx/src/com/android/dx/dex/code/RopToDop.java
39 ${progdir}/opcode-gen dx/src/com/android/dx/io/OpcodeInfo.java
40 ${progdir}/opcode-gen dx/src/com/android/dx/io/Opcodes.java
41 ${progdir}/opcode-gen libdex/DexOpcodes.cpp
42 ${progdir}/opcode-gen libdex/DexOpcodes.h
43 ${progdir}/opcode-gen libdex/InstrUtils.cpp
47 ${progdir}/opcode-gen \
49 ${progdir}/opcode-gen \
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 55 * Creates a new ConstantInstruction with the given opcode and constant pool
58 public ConstantInstruction(byte opcode, int constantIndex)
60 this(opcode, constantIndex, 0);
65 * Creates a new ConstantInstruction with the given opcode, constant pool
68 public ConstantInstruction(byte opcode, int constantIndex, int constant)
70 this.opcode = opcode;
83 this.opcode = constantInstruction.opcode;
96 switch (opcode)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
decodetable_test.cc 47 int opcode) {
48 g_exercise_code_table_->inst1[opcode] = inst1;
49 g_exercise_code_table_->mode1[opcode] = mode1;
50 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
51 g_exercise_code_table_->inst2[opcode] = inst2;
52 g_exercise_code_table_->mode2[opcode] = mode2;
53 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
58 int opcode = 0; local
77 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
78 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++)
412 int opcode = 0; local
    [all...]
  /external/open-vcdiff/src/
decodetable_test.cc 47 int opcode) {
48 g_exercise_code_table_->inst1[opcode] = inst1;
49 g_exercise_code_table_->mode1[opcode] = mode1;
50 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
51 g_exercise_code_table_->inst2[opcode] = inst2;
52 g_exercise_code_table_->mode2[opcode] = mode2;
53 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
58 int opcode = 0; local
77 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
78 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++)
412 int opcode = 0; local
    [all...]

Completed in 1617 milliseconds

1 23 4 5 6 7 8 91011>>