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

1 23 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 23 * Representation of an opcode.
26 /** {@code Opcodes.isValid();} the opcode value itself */
27 private final int opcode; field in class:Dop
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
34 * when attempting to match an opcode to particular arguments;
36 * opcode to try in a particular chain
43 /** whether this opcode uses a result register */
49 * @param opcode {@code Opcodes.isValid();} the opcode valu
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 38 int opcode, int firstKey, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
  /dalvik/dx/src/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 37 public boolean hasConstantOperation(Rop opcode,
43 public boolean requiresSourcesInOrder(Rop opcode,
  /dalvik/vm/mterp/c/
OP_RETURN.cpp 1 HANDLE_OPCODE($opcode /*vAA*/)
  /dalvik/vm/native/
dalvik_bytecode_OpcodeInfo.cpp 29 * public static native boolean isInvoke(int opcode);
34 Opcode opcode = static_cast<Opcode>(args[0]); local
35 int flags = dexGetFlagsFromOpcode(opcode);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dop.java 23 * Representation of an opcode.
26 /** {@code Opcodes.isValid();} the opcode value itself */
27 private final int opcode; field in class:Dop
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
34 * when attempting to match an opcode to particular arguments;
36 * opcode to try in a particular chain
43 /** whether this opcode uses a result register */
49 * @param opcode {@code Opcodes.isValid();} the opcode valu
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 38 int opcode, int firstKey, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 37 public boolean hasConstantOperation(Rop opcode,
43 public boolean requiresSourcesInOrder(Rop opcode,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction10t.java 33 import org.jf.dexlib.Code.Opcode;
41 public Instruction10t(Opcode opcode, int offA) {
42 super(opcode);
53 private Instruction10t(Opcode opcode, byte[] buffer, int bufferIndex) {
54 super(opcode);
56 assert buffer[bufferIndex] == opcode.value;
71 out.writeByte(opcode.value);
88 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction20t.java 33 import org.jf.dexlib.Code.Opcode;
42 public Instruction20t(Opcode opcode, int offA) {
43 super(opcode);
54 private Instruction20t(Opcode opcode, byte[] buffer, int bufferIndex) {
55 super(opcode);
57 assert buffer[bufferIndex] == opcode.value;
72 out.writeByte(opcode.value);
90 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction30t.java 33 import org.jf.dexlib.Code.Opcode;
42 public Instruction30t(Opcode opcode, int offA) {
43 super(opcode);
47 private Instruction30t(Opcode opcode, byte[] buffer, int bufferIndex) {
48 super(opcode);
50 assert buffer[bufferIndex] == opcode.value;
56 out.writeByte(opcode.value);
74 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
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...]
  /external/tcpdump/
print-zephyr.c 51 char *opcode; member in struct:z_packet
169 PARSE_FIELD_STR(z.opcode);
199 if (!strcmp(z.opcode, "USER_HIDE"))
201 else if (!strcmp(z.opcode, "USER_UNHIDE"))
209 printf(" zephyr-admin %s", str_to_lower(z.opcode));
215 if (!strcmp(z.opcode, "SUBSCRIBE") ||
216 !strcmp(z.opcode, "SUBSCRIBE_NODEFS") ||
217 !strcmp(z.opcode, "UNSUBSCRIBE")) {
219 printf(" %ssub%s", strcmp(z.opcode, "SUBSCRIBE") ? "un" : "",
220 strcmp(z.opcode, "SUBSCRIBE_NODEFS") ? ""
    [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...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_debug_fp.c 242 print_arith_op(GLuint opcode, const GLuint * program)
244 if (opcode != A0_NOP) {
252 printf("%s ", opcodes[opcode]);
255 if (args[opcode] == 1) {
262 if (args[opcode] == 2) {
275 print_tex_op(GLuint opcode, const GLuint * program)
280 printf("%s ", opcodes[opcode]);
291 print_dcl_op(GLuint opcode, const GLuint * program)
293 printf("%s ", opcodes[opcode]);
311 GLuint opcode = program[0] & (0x1f << 24) local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_debug_fp.c 242 print_arith_op(GLuint opcode, const GLuint * program)
244 if (opcode != A0_NOP) {
252 printf("%s ", opcodes[opcode]);
255 if (args[opcode] == 1) {
262 if (args[opcode] == 2) {
275 print_tex_op(GLuint opcode, const GLuint * program)
280 printf("%s ", opcodes[opcode]);
291 print_dcl_op(GLuint opcode, const GLuint * program)
293 printf("%s ", opcodes[opcode]);
311 GLuint opcode = program[0] & (0x1f << 24) 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...]
  /art/runtime/
disassembler_arm.cc 183 std::string opcode; local
191 opcode = "bkpt";
198 opcode = (((instruction >> 5) & 1) ? "blx" : "bx");
205 opcode = kDataProcessingOperations[op];
228 opcode = StringPrintf("%s%s", (l ? "ldr" : "str"), (b ? "b" : ""));
258 opcode = StringPrintf("%s%c%c", (l ? "ldm" : "stm"), (u ? 'i' : 'd'), (p ? 'b' : 'a'));
265 opcode = (bl ? "bl" : "b");
272 opcode = "???";
275 opcode += kConditionCodeNames[cond];
276 opcode += suffixes
296 std::ostringstream opcode; local
1045 std::ostringstream 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...]

Completed in 395 milliseconds

1 23 4 5 6 7 8 91011>>