Home | History | Annotate | Download | only in compiler

Lines Matching refs:destination_

273       : source_(source), destination_(destination) {}
278 InstructionOperand* destination() const { return destination_; }
279 void set_destination(InstructionOperand* operand) { destination_ = operand; }
283 bool IsPending() const { return destination_ == NULL && source_ != NULL; }
293 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
294 (destination_ != NULL && destination_->IsConstant());
298 return destination_ != NULL && destination_->IsIgnored();
302 void Eliminate() { source_ = destination_ = NULL; }
304 DCHECK(source_ != NULL || destination_ == NULL);
310 InstructionOperand* destination_;