Lines Matching refs:destination
22 if (!it->IsRedundant()) write(it->destination(), copy.read(it->source())); in ExecuteInParallel()
66 InstructionOperand destination(it->second.first, it->second.second); in operator <<() local
67 os << MoveOperands(&source, &destination); in operator <<()
80 InstructionOperand* destination) OVERRIDE { in AssembleMove() argument
82 moves.push_back(MoveOperands(source, destination)); in AssembleMove()
87 InstructionOperand* destination) OVERRIDE { in AssembleSwap() argument
89 moves.push_back(MoveOperands(source, destination)); in AssembleSwap()
90 moves.push_back(MoveOperands(destination, source)); in AssembleSwap()
116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) { in Create()
117 parallel_move->AddMove(mo.source(), mo.destination(), main_zone()); in Create()
118 seen.insert(mo.destination()); in Create()