/external/v8/test/unittests/compiler/ |
D | move-optimizer-unittest.cc | 17 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/ |
D | test-gap-resolver.cc | 137 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()
|
D | test-instruction.cc | 259 ->AddMove(op1, op2); in TEST()
|
D | test-jump-threading.cc | 103 ->AddMove(from, to); in AddGapMove()
|
/external/v8/src/crankshaft/x87/ |
D | lithium-gap-resolver-x87.h | 36 void AddMove(LMoveOperands move);
|
D | lithium-gap-resolver-x87.cc | 59 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/ |
D | lithium-gap-resolver-ia32.h | 36 void AddMove(LMoveOperands move);
|
D | lithium-gap-resolver-ia32.cc | 58 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList() 129 void LGapResolver::AddMove(LMoveOperands move) { in AddMove() function in v8::internal::LGapResolver
|
/external/v8/src/compiler/ |
D | move-optimizer.cc | 225 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()
|
D | instruction.h | 706 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
|
D | register-allocator.cc | 896 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/ |
D | degeneratesegments.cpp | 37 static SkPoint AddMove(SkPath& path, SkPoint& startPt) { in AddMove() function in skiagm::DegenerateSegmentsGM 212 AddMove, in onDraw()
|
/external/v8/src/crankshaft/ |
D | lithium-allocator.cc | 743 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()
|
D | lithium.cc | 386 LGap::START, zone())->AddMove(from, to, zone()); in AddGapMove()
|
D | lithium.h | 352 void AddMove(LOperand* from, LOperand* to, Zone* zone) { in LITHIUM_OPERAND_LIST()
|