Home
last modified time | relevance | path

Searched refs:last_instr (Results 1 – 3 of 3) sorted by relevance

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