HomeSort by relevance Sort by last modified time
    Searched refs:last_instr (Results 1 - 3 of 3) sorted by null

  /external/v8/test/unittests/compiler/
move-optimizer-unittest.cc 94 auto last_instr = EmitNop(); local
95 AddMove(last_instr, Reg(1), Reg(0));
101 auto move = last_instr->parallel_moves()[0];
116 auto last_instr = EmitNop(); local
117 AddMove(last_instr, Reg(second_reg_index), Reg(first_reg_index));
123 auto move = last_instr->parallel_moves()[0];
329 Instruction* last_instr = LastInstruction(); local
336 ParallelMove* last_move = last_instr->parallel_moves()[0];
  /external/v8/src/compiler/
move-optimizer.cc 336 const Instruction* last_instr = local
338 if (last_instr->IsCall()) return;
339 if (last_instr->TempCount() != 0) return;
340 if (last_instr->OutputCount() != 0) return;
341 for (size_t i = 0; i < last_instr->InputCount(); ++i) {
342 const InstructionOperand* op = last_instr->InputAt(i);
  /external/v8/src/crankshaft/
lithium.cc 296 LInstruction* last_instr = instructions()->at(last); local
299 if (last_instr->IsGoto()) {
300 LGoto* goto_instr = LGoto::cast(last_instr);

Completed in 861 milliseconds