Searched defs:next_mir (Results 1 - 2 of 2) sorted by relevance

/art/compiler/dex/
H A Dmir_optimization.cc1062 MIR* next_mir = mir->next; local
1064 if (UNLIKELY(next_mir == nullptr)) {
1068 } else if (UNLIKELY(next_mir->dalvikInsn.opcode != Instruction::MOVE_RESULT_OBJECT)) {
1069 LOG(WARNING) << "Unexpected opcode following new: " << next_mir->dalvikInsn.opcode;
1072 vregs_to_check->ClearBit(next_mir->dalvikInsn.vA);
H A Dmir_graph.cc1267 MIR* next_mir = nullptr; local
1270 next_mir = current->next;
1273 if (next_mir == nullptr) {
1276 next_mir = mir_graph->GetBasicBlock(fall_through)->first_mir_insn;
1280 return next_mir;

Completed in 71 milliseconds