Lines Matching refs:next
343 * If the next instruction is a move-result or move-result-long,
344 * return the target Dalvik sReg[s] and convert the next to a
350 if (mir->next &&
351 ((mir->next->dalvikInsn.opcode == OP_MOVE_RESULT) ||
352 (mir->next->dalvikInsn.opcode == OP_MOVE_RESULT_OBJECT))) {
353 mir->next->dalvikInsn.opcode = OP_NOP;
354 return dvmCompilerGetDest(cUnit, mir->next, 0);
375 newValue->generic.next = *constantListP;
388 if (mir->next &&
389 (mir->next->dalvikInsn.opcode == OP_MOVE_RESULT_WIDE)) {
390 mir->next->dalvikInsn.opcode = OP_NOP;
391 return dvmCompilerGetDestWide(cUnit, mir->next, 0, 1);