Home | History | Annotate | Download | only in compiler

Lines Matching refs:MoveOperands

672 class V8_EXPORT_PRIVATE MoveOperands final
675 MoveOperands(const InstructionOperand& source,
720 DISALLOW_COPY_AND_ASSIGN(MoveOperands);
726 const MoveOperands* move_operands_;
733 : public NON_EXPORTED_BASE(ZoneVector<MoveOperands *>),
736 explicit ParallelMove(Zone* zone) : ZoneVector<MoveOperands*>(zone) {
740 MoveOperands* AddMove(const InstructionOperand& from,
746 MoveOperands* AddMove(const InstructionOperand& from,
749 MoveOperands* move = new (operand_allocation_zone) MoveOperands(from, to);
757 // ParallelMove. move->source() may be changed. Any MoveOperands added to
759 void PrepareInsertAfter(MoveOperands* move,
760 ZoneVector<MoveOperands*>* to_eliminate) const;