Searched refs:inst (Results 1 - 25 of 69) sorted by relevance

123

/dalvik/vm/mterp/c/
H A DOP_BREAKPOINT.cpp7 * It's probably not necessary to update "inst", but we do it
19 ALOGV("+++ break 0x%02x (0x%04x -> 0x%04x)", originalOpcode, inst,
20 INST_REPLACE_OP(inst, originalOpcode));
21 inst = INST_REPLACE_OP(inst, originalOpcode);
H A DOP_RETURN.cpp2 vsrc1 = INST_AA(inst);
4 (INST_INST(inst) == OP_RETURN) ? "" : "-object", vsrc1);
H A DOP_MOVE.cpp2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
5 (INST_INST(inst) == OP_MOVE) ? "" : "-object", vdst, vsrc1,
H A DOP_CONST_4.cpp5 vdst = INST_A(inst);
6 tmp = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value
H A DOP_UNUSED_FF.cpp5 ALOGE("unknown opcode 0x%02x\n", INST_INST(inst));
H A DOP_MOVE_RESULT.cpp2 vdst = INST_AA(inst);
4 (INST_INST(inst) == OP_MOVE_RESULT) ? "" : "-object",
H A DOP_REM_DOUBLE_2ADDR.cpp2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
H A DOP_REM_FLOAT_2ADDR.cpp2 vdst = INST_A(inst);
3 vsrc1 = INST_B(inst);
H A DOP_MOVE_FROM16.cpp2 vdst = INST_AA(inst);
5 (INST_INST(inst) == OP_MOVE_FROM16) ? "" : "-object", vdst, vsrc1,
H A DOP_MOVE_WIDE.cpp4 vdst = INST_A(inst);
5 vsrc1 = INST_B(inst);
H A DOP_ARRAY_LENGTH.cpp5 vdst = INST_A(inst);
6 vsrc1 = INST_B(inst);
H A DOP_CONST_HIGH16.cpp2 vdst = INST_AA(inst);
H A DOP_CONST_WIDE_HIGH16.cpp2 vdst = INST_AA(inst);
H A DOP_MOVE_RESULT_WIDE.cpp2 vdst = INST_AA(inst);
H A DOP_RETURN_WIDE.cpp2 vsrc1 = INST_AA(inst);
H A DOP_RSUB_INT.cpp3 vdst = INST_A(inst);
4 vsrc1 = INST_B(inst);
H A DOP_THROW_VERIFICATION_ERROR.cpp3 vsrc1 = INST_AA(inst);
H A DOP_CONST.cpp5 vdst = INST_AA(inst);
H A DOP_MOVE_EXCEPTION.cpp2 vdst = INST_AA(inst);
H A DOP_CONST_16.cpp2 vdst = INST_AA(inst);
H A DOP_CONST_WIDE_16.cpp2 vdst = INST_AA(inst);
H A DOP_MOVE_WIDE_FROM16.cpp2 vdst = INST_AA(inst);
/dalvik/tests/003-omnibus-opcodes/src/
H A DMethodCall.java54 MethodCall inst = new MethodCall();
56 MethodCallBase base = inst;
58 inst.tryThing();
60 inst = null;
62 inst.directly();
/dalvik/tests/043-privates/src/
H A DMain.java31 PrivatePackage inst = new PrivatePackageSub();
32 System.out.println("PrivatePackage --> " + inst.getStr());
33 System.out.println("PrivatePackage --> " + inst.privGetStr());
/dalvik/vm/mterp/cstubs/
H A Dentry.cpp36 u2 inst = /*self->interpSave.*/pc[0];
46 Handler handler = (Handler) gDvmMterpHandlers[inst & 0xff];
49 handler, (const char*) gDvmMterpHandlerNames[inst & 0xff]);

Completed in 121 milliseconds

123