Home | History | Annotate | Download | only in src

Lines Matching refs:destination_

211       : source_(source), destination_(destination) {
217 LOperand* destination() const { return destination_; }
218 void set_destination(LOperand* operand) { destination_ = operand; }
223 return destination_ == NULL && source_ != NULL;
234 return IsEliminated() || source_->Equals(destination_) || IsIgnored();
238 return destination_ != NULL &&
239 destination_->IsUnallocated() &&
240 LUnallocated::cast(destination_)->HasIgnorePolicy();
244 void Eliminate() { source_ = destination_ = NULL; }
246 ASSERT(source_ != NULL || destination_ == NULL);
252 LOperand* destination_;