Home | History | Annotate | Download | only in src

Lines Matching defs:destination_

261       : source_(source), destination_(destination) {
267 LOperand* destination() const { return destination_; }
268 void set_destination(LOperand* operand) { destination_ = operand; }
273 return destination_ == NULL && source_ != NULL;
284 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
285 (destination_ != NULL && destination_->IsConstantOperand());
289 return destination_ != NULL && destination_->IsIgnored();
293 void Eliminate() { source_ = destination_ = NULL; }
295 DCHECK(source_ != NULL || destination_ == NULL);
301 LOperand* destination_;