| /dalvik/vm/mterp/mips/ |
| OP_CONST_16.S | 6 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_CONST_4.S | 8 GET_INST_OPCODE(t0) # ip <- opcode from rINST
|
| OP_CONST_HIGH16.S | 7 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_IGET.S | 20 bnez a0, .L${opcode}_finish # no, already resolved 27 bnez v0, .L${opcode}_finish 36 .L${opcode}_finish: 46 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_IPUT.S | 20 bnez a0, .L${opcode}_finish # no, already resolved 27 bnez v0, .L${opcode}_finish # yes, finish up 36 .L${opcode}_finish: 44 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_LONG_TO_INT.S | 9 GET_INST_OPCODE(t0) # t0 <- opcode from rINST
|
| OP_MOVE.S | 8 GET_INST_OPCODE(t0) # t0 <- opcode from rINST
|
| OP_MOVE_16.S | 8 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_MOVE_FROM16.S | 8 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_MOVE_RESULT.S | 7 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_NEW_ARRAY.S | 22 beqz a0, .L${opcode}_resolve 30 .L${opcode}_finish: 37 GET_INST_OPCODE(t0) # extract opcode from rINST 48 .L${opcode}_resolve: 59 b .L${opcode}_finish # continue with ${opcode}_finish
|
| OP_SGET.S | 17 bnez a0, .L${opcode}_finish 41 b .L${opcode}_finish # resume 44 .L${opcode}_finish: 49 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_SGET_WIDE.S | 15 bnez a0, .L${opcode}_finish 42 b .L${opcode}_finish # resume 45 .L${opcode}_finish: 55 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_SPUT.S | 16 bnez a0, .L${opcode}_finish # is resolved entry null? 38 b .L${opcode}_finish # resume 41 .L${opcode}_finish: 46 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| OP_SPUT_OBJECT.S | 16 bnez a0, .L${opcode}_finish # is resolved entry null? 38 b .L${opcode}_finish # resume 41 .L${opcode}_finish: # field ptr in a0 47 GET_INST_OPCODE(t0) # extract opcode from rINST
|
| unop.S | 17 GET_INST_OPCODE(t1) # extract opcode from rINST
|
| /dalvik/vm/mterp/x86/ |
| OP_INVOKE_DIRECT.S | 28 je .L${opcode}_resolve # not resolved, do it now 29 .L${opcode}_finish: 40 .L${opcode}_resolve: 52 jne .L${opcode}_finish
|
| OP_SGET.S | 23 je .L${opcode}_resolve # if not, make it so 24 .L${opcode}_finish: # field ptr in eax 34 .L${opcode}_resolve: 53 jmp .L${opcode}_finish # success, continue
|
| OP_SPUT.S | 23 je .L${opcode}_resolve # if not, make it so 24 .L${opcode}_finish: # field ptr in eax 34 .L${opcode}_resolve: 53 jmp .L${opcode}_finish # success, continu
|
| stub.S | 4 call dvmMterp_${opcode} # do the real work
|
| /external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
| FixedSizeInsn.java | 39 * @param opcode the opcode; one of the constants from {@link Dops} 45 public FixedSizeInsn(Dop opcode, SourcePosition position, 47 super(opcode, position, registers);
|
| /external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
| FiveRegisterDecodedInstruction.java | 43 public FiveRegisterDecodedInstruction(InstructionCodec format, int opcode, 46 super(format, opcode, index, indexType, target, literal);
|
| FourRegisterDecodedInstruction.java | 40 public FourRegisterDecodedInstruction(InstructionCodec format, int opcode, 43 super(format, opcode, index, indexType, target, literal);
|
| ThreeRegisterDecodedInstruction.java | 37 public ThreeRegisterDecodedInstruction(InstructionCodec format, int opcode, 40 super(format, opcode, index, indexType, target, literal);
|
| /external/javassist/src/main/javassist/ |
| CtPrimitiveType.java | 32 String methodName, String mDesc, int opcode, int atype, 39 returnOp = opcode; 91 * Returns the opcode for returning a value of the type. 92 * For example, if the type is int, then the returned opcode is 93 * <code>javassit.bytecode.Opcode.IRETURN</code>. 101 * <code>javassit.bytecode.Opcode.T_INT</code>.
|