Lines Matching refs:destination
33 SLOW_DCHECK(seen.find(i->destination()) == seen.end()); in VerifyMovesAreInjective()
34 seen.insert(i->destination()); in VerifyMovesAreInjective()
69 InstructionOperand* destination = move->destination(); in PerformMove() local
76 if (other->Blocks(destination) && !other->IsPending()) { in PerformMove()
92 move->set_destination(destination); in PerformMove()
97 if (source->Equals(destination)) { in PerformMove()
107 std::bind2nd(std::mem_fun_ref(&MoveOperands::Blocks), destination)); in PerformMove()
110 assembler_->AssembleMove(source, destination); in PerformMove()
118 std::swap(source, destination); in PerformMove()
120 assembler_->AssembleSwap(source, destination); in PerformMove()
128 other->set_source(destination); in PerformMove()
129 } else if (other->Blocks(destination)) { in PerformMove()