| /dalvik/vm/mterp/x86/ |
| OP_CMPG_DOUBLE.S | 21 jp .L${opcode}_isNaN 22 je .L${opcode}_finish 24 jb .L${opcode}_finish 26 .L${opcode}_finish: 31 .L${opcode}_isNaN: 33 jmp .L${opcode}_finish
|
| /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
| Instruction22c.java | 33 import org.jf.dexlib.Code.Opcode; 46 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) { 47 super(opcode, referencedItem); 58 private Instruction22c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { 59 super(dexFile, opcode, buffer, bufferIndex); 67 if (opcode.hasJumboOpcode()) { 69 opcode.referenceType.name(), opcode.getJumboOpcode().name)) [all...] |
| Instruction21h.java | 33 import org.jf.dexlib.Code.Opcode; 44 public Instruction21h(Opcode opcode, short regA, short litB) { 45 super(opcode); 55 private Instruction21h(Opcode opcode, byte[] buffer, int bufferIndex) { 56 super(opcode); 63 out.writeByte(opcode.value); 81 if (opcode == Opcode.CONST_HIGH16) [all...] |
| Instruction5rc.java | 36 import org.jf.dexlib.Code.Opcode; 45 import static org.jf.dexlib.Code.Opcode.*; 52 public Instruction5rc(Opcode opcode, int regCount, int startReg, Item referencedItem) { 53 super(opcode, referencedItem); 72 checkItem(opcode, referencedItem, regCount); 75 private Instruction5rc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { 76 super(dexFile, opcode, buffer, bufferIndex); 81 checkItem(opcode, getReferencedItem(), getRegCount()) [all...] |
| 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...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| SimpleInsn.java | 31 * @param opcode the opcode; one of the constants from {@link Dops} 37 public SimpleInsn(Dop opcode, SourcePosition position, 39 super(opcode, position, registers); 44 public DalvInsn withOpcode(Dop opcode) { 45 return new SimpleInsn(opcode, getPosition(), getRegisters());
|
| Dop.java | 20 * Representation of an opcode. 23 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode value itself */ 24 private final int opcode; field in class:Dop 26 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode family */ 32 /** whether this opcode uses a result register */ 41 * @param opcode {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode 43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family 45 * @param hasResult whether the opcode has a result register; if so it 49 public Dop(int opcode, int family, InsnFormat format [all...] |
| /dalvik/dx/src/com/android/dx/dex/code/ |
| SimpleInsn.java | 31 * @param opcode the opcode; one of the constants from {@link Dops} 37 public SimpleInsn(Dop opcode, SourcePosition position, 39 super(opcode, position, registers); 44 public DalvInsn withOpcode(Dop opcode) { 45 return new SimpleInsn(opcode, getPosition(), getRegisters());
|
| 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/dex/code/ |
| SimpleInsn.java | 31 * @param opcode the opcode; one of the constants from {@link Dops} 37 public SimpleInsn(Dop opcode, SourcePosition position, 39 super(opcode, position, registers); 44 public DalvInsn withOpcode(Dop opcode) { 45 return new SimpleInsn(opcode, getPosition(), getRegisters());
|
| 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/elfutils/libdw/ |
| dwarf_macro_opcode.c | 1 /* Return macro opcode. 64 *opcodep = macro->opcode;
|
| /external/emma/core/java12/com/vladium/jcd/opcodes/ |
| IOpcodeVisitor.java | 20 void visit (int opcode, boolean wide, int offset, Object ctx);
|
| /external/proguard/src/proguard/classfile/instruction/ |
| SimpleInstruction.java | 45 * Creates a new SimpleInstruction with the given opcode. 47 public SimpleInstruction(byte opcode) 49 this(opcode, embeddedConstant(opcode)); 54 * Creates a new SimpleInstruction with the given opcode and constant. 56 public SimpleInstruction(byte opcode, int constant) 58 this.opcode = opcode; 70 this.opcode = simpleInstruction.opcode; [all...] |
| /dalvik/vm/compiler/codegen/mips/ |
| GlobalOptimizations.cpp | 34 if (!thisLIR->flags.isNop && thisLIR->opcode == kMipsB) { 54 if (!isPseudoOpCode(nextLIR->opcode) || 74 if (thisLIR->flags.isNop || thisLIR->opcode != kMipsMove) 88 if (nextLIR->flags.isNop || nextLIR->opcode == kMips32BitData) 91 if (isPseudoOpCode(nextLIR->opcode)) { 92 if (nextLIR->opcode == kMipsPseudoDalvikByteCodeBoundary || 93 nextLIR->opcode == kMipsPseudoBarrier || 94 nextLIR->opcode == kMipsPseudoExtended || 95 nextLIR->opcode == kMipsPseudoSSARep) 97 else if (nextLIR->opcode == kMipsPseudoTargetLabel | [all...] |
| /dalvik/dexgen/src/com/android/dexgen/rop/code/ |
| ConservativeTranslationAdvice.java | 37 public boolean hasConstantOperation(Rop opcode, 43 public boolean requiresSourcesInOrder(Rop opcode,
|
| /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/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/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...] |