Searched defs:inst (Results 1 - 7 of 7) sorted by relevance

/dalvik/vm/mterp/cstubs/
H A Dentry.cpp36 u2 inst = /*self->interpSave.*/pc[0]; local
46 Handler handler = (Handler) gDvmMterpHandlers[inst & 0xff];
49 handler, (const char*) gDvmMterpHandlerNames[inst & 0xff]);
/dalvik/vm/mterp/portable/
H A Dentry.cpp18 u2 inst; // current instruction local
/dalvik/libdex/
H A DInstrUtils.cpp492 u2 inst = *insns; local
493 Opcode opcode = dexOpcodeFromCodeUnit(inst);
502 pDec->vA = INST_AA(inst);
505 pDec->vA = INST_A(inst);
506 pDec->vB = INST_B(inst);
509 pDec->vA = INST_A(inst);
510 pDec->vB = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value
513 pDec->vA = INST_AA(inst);
516 pDec->vA = (s1) INST_AA(inst); // sign-extend 8-bit value
524 pDec->vA = INST_AA(inst);
[all...]
/dalvik/vm/compiler/codegen/x86/libenc/
H A Denc_base.cpp383 Inst inst; local
384 unsigned len = DecoderBase::decode(saveStream, &inst);
385 assert(inst.mn == mn);
390 assert(inst.argc == opnds.count());
394 for (unsigned i=0; i<inst.argc; i++) {
396 const EncoderBase::Operand& decoded = inst.operands[i];
/dalvik/vm/compiler/codegen/x86/
H A DLower.cpp44 u2 inst; //current bytecode variable
273 inst = FETCH(0);
275 lowerByteCode(method); //use inst, rPC, method, modify rPC
413 inst = FETCH(0);
476 int lowerByteCode(const Method* method) { //inputs: rPC & inst & stream & streamMethodStart
483 INST_INST(inst), offsetPC, stream - streamMethodStart, stream);
493 switch (INST_INST(inst)) {
976 INST_INST(inst), offsetPC);
/dalvik/vm/mterp/out/
H A DInterpC-allstubs.cpp391 u2 inst = FETCH(0); \
394 (void)ref; (void)vsrc1; (void)vsrc2; (void)vdst; (void)inst; \
438 u2 inst = FETCH(0); \
439 (void)ref; (void)vsrc1; (void)vsrc2; (void)vdst; (void)inst;
444 * Like the "portable" FINISH, but don't reload "inst", and return to caller
545 vdst = INST_A(inst); \
546 vsrc1 = INST_B(inst); \
559 vdst = INST_A(inst); \
560 vsrc1 = INST_B(inst); \
580 vdst = INST_A(inst); \
3059 u2 inst = /*self->interpSave.*/pc[0]; local
[all...]
H A DInterpC-portable.cpp411 * "u2 inst".
417 inst = FETCH(0); \
421 goto *handlerTable[INST_INST(inst)]; \
491 vdst = INST_A(inst); \
492 vsrc1 = INST_B(inst); \
505 vdst = INST_A(inst); \
506 vsrc1 = INST_B(inst); \
526 vdst = INST_A(inst); \
527 vsrc1 = INST_B(inst); \
539 vdst = INST_AA(inst); \
1129 u2 inst; // current instruction local
[all...]

Completed in 227 milliseconds