Home
last modified time | relevance | path

Searched refs:AddMove (Results 1 – 15 of 15) sorted by relevance

/external/v8/test/unittests/compiler/
Dmove-optimizer-unittest.cc17 void AddMove(Instruction* instr, TestOperand from, TestOperand to, in AddMove() function in v8::internal::compiler::MoveOptimizerTest
20 parallel_move->AddMove(ConvertMoveArg(from), ConvertMoveArg(to)); in AddMove()
93 AddMove(first_instr, Reg(0), Reg(1)); in TEST_F()
95 AddMove(last_instr, Reg(1), Reg(0)); in TEST_F()
115 AddMove(first_instr, Reg(first_reg_index), ExplicitReg(second_reg_index)); in TEST_F()
117 AddMove(last_instr, Reg(second_reg_index), Reg(first_reg_index)); in TEST_F()
134 AddMove(gap, Const(1), Slot(0)); in TEST_F()
135 AddMove(gap, Const(1), Slot(1)); in TEST_F()
136 AddMove(gap, Const(1), Reg(0)); in TEST_F()
137 AddMove(gap, Const(1), Slot(2)); in TEST_F()
[all …]
/external/v8/test/cctest/compiler/
Dtest-gap-resolver.cc137 moves->AddMove(*source, *destination); in AssembleMove()
144 moves->AddMove(*source, *destination); in AssembleSwap()
145 moves->AddMove(*destination, *source); in AssembleSwap()
173 parallel_move->AddMove(mo.source(), mo.destination()); in Create()
Dtest-instruction.cc259 ->AddMove(op1, op2); in TEST()
Dtest-jump-threading.cc103 ->AddMove(from, to); in AddGapMove()
/external/v8/src/crankshaft/x87/
Dlithium-gap-resolver-x87.h36 void AddMove(LMoveOperands move);
Dlithium-gap-resolver-x87.cc59 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList()
130 void LGapResolver::AddMove(LMoveOperands move) { in AddMove() function in v8::internal::LGapResolver
/external/v8/src/crankshaft/ia32/
Dlithium-gap-resolver-ia32.h36 void AddMove(LMoveOperands move);
Dlithium-gap-resolver-ia32.cc58 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList()
129 void LGapResolver::AddMove(LMoveOperands move) { in AddMove() function in v8::internal::LGapResolver
/external/v8/src/compiler/
Dmove-optimizer.cc225 to_move.AddMove(move->source(), move->destination(), code_zone()); in MigrateMoves()
435 moves->AddMove(move->source(), move->destination()); in OptimizeMerge()
501 slot_1->AddMove(group_begin->destination(), load->destination()); in FinalizeMoves()
Dinstruction.h706 MoveOperands* AddMove(const InstructionOperand& from, in AddMove() function
709 return AddMove(from, to, zone); in AddMove()
712 MoveOperands* AddMove(const InstructionOperand& from, in AddMove() function
Dregister-allocator.cc896 move->AddMove(*to_spill->operand, op); in CommitSpillMoves()
1398 return moves->AddMove(from, to); in AddGapMove()
3662 move->AddMove(prev_operand, cur_operand); in ConnectRanges()
/external/skia/gm/
Ddegeneratesegments.cpp37 static SkPoint AddMove(SkPath& path, SkPoint& startPt) { in AddMove() function in skiagm::DegenerateSegmentsGM
212 AddMove, in onDraw()
/external/v8/src/crankshaft/
Dlithium-allocator.cc743 move->AddMove(cur.source(), to, chunk()->zone()); in AddConstraintsGapMove()
749 move->AddMove(from, to, chunk()->zone()); in AddConstraintsGapMove()
813 move->AddMove(first_output, range->GetSpillOperand(), in MeetConstraintsBetween()
1066 AddMove(phi_operand, live_range->GetSpillOperand(), chunk()->zone()); in ResolvePhis()
1171 LGap::START, chunk()->zone())->AddMove(pred_op, cur_op, in ResolveControlFlow()
1221 move->AddMove(prev_operand, cur_operand, in ConnectRanges()
Dlithium.cc386 LGap::START, zone())->AddMove(from, to, zone()); in AddGapMove()
Dlithium.h352 void AddMove(LOperand* from, LOperand* to, Zone* zone) { in LITHIUM_OPERAND_LIST()