Home | History | Annotate | Download | only in crankshaft

Lines Matching full:destination_

273       : source_(source), destination_(destination) {
279 LOperand* destination() const { return destination_; }
280 void set_destination(LOperand* operand) { destination_ = operand; }
285 return destination_ == NULL && source_ != NULL;
296 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
297 (destination_ != NULL && destination_->IsConstantOperand());
301 return destination_ != NULL && destination_->IsIgnored();
305 void Eliminate() { source_ = destination_ = NULL; }
307 DCHECK(source_ != NULL || destination_ == NULL);
313 LOperand* destination_;