Home | History | Annotate | Download | only in arm

Lines Matching refs:next

337  * If the next instruction is a move-result or move-result-long,
338 * return the target Dalvik sReg[s] and convert the next to a
344 if (mir->next &&
345 ((mir->next->dalvikInsn.opcode == OP_MOVE_RESULT) ||
346 (mir->next->dalvikInsn.opcode == OP_MOVE_RESULT_OBJECT))) {
347 mir->next->dalvikInsn.opcode = OP_NOP;
348 return dvmCompilerGetDest(cUnit, mir->next, 0);
366 dataTarget = dataTarget->next;
385 dataTarget = dataTarget->next;
403 newValue->generic.next = *constantListP;
425 if (mir->next &&
426 (mir->next->dalvikInsn.opcode == OP_MOVE_RESULT_WIDE)) {
427 mir->next->dalvikInsn.opcode = OP_NOP;
428 return dvmCompilerGetDestWide(cUnit, mir->next, 0, 1);