Lines Matching refs:other_move
148 const MoveOperands& other_move = *moves_[i]; in PerformMove() local
149 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove()
201 for (MoveOperands* other_move : moves_) { in PerformMove()
202 if (other_move->Blocks(destination)) { in PerformMove()
203 DCHECK(other_move->IsPending()) << "move=" << *move << " other_move=" << *other_move; in PerformMove()
204 if (!move->Is64BitMove() && other_move->Is64BitMove()) { in PerformMove()
207 return other_move; in PerformMove()
223 for (MoveOperands* other_move : moves_) { in PerformMove()
224 if (other_move->Blocks(source)) { in PerformMove()
225 UpdateSourceOf(other_move, source, swap_destination); in PerformMove()
226 } else if (other_move->Blocks(swap_destination)) { in PerformMove()
227 UpdateSourceOf(other_move, swap_destination, source); in PerformMove()
435 const MoveOperands& other_move = *moves_[i]; in PerformMove() local
436 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove()