Searched refs:destination_ (Results 1 – 3 of 3) sorted by relevance
261 : source_(source), destination_(destination) { in LMoveOperands()267 LOperand* destination() const { return destination_; } in destination()268 void set_destination(LOperand* operand) { destination_ = operand; } in set_destination()273 return destination_ == NULL && source_ != NULL; in IsPending()284 return IsEliminated() || source_->Equals(destination_) || IsIgnored() || in IsRedundant()285 (destination_ != NULL && destination_->IsConstantOperand()); in IsRedundant()289 return destination_ != NULL && destination_->IsIgnored(); in IsIgnored()293 void Eliminate() { source_ = destination_ = NULL; } in Eliminate()295 DCHECK(source_ != NULL || destination_ == NULL); in IsEliminated()301 LOperand* destination_; variable
34 : destination_(destination), value_(value) { } in HeapNumberMaterializationDescriptor()36 T destination() const { return destination_; } in destination()40 T destination_;
273 : source_(source), destination_(destination) {} in MoveOperands()278 InstructionOperand* destination() const { return destination_; } in destination()279 void set_destination(InstructionOperand* operand) { destination_ = operand; } in set_destination()283 bool IsPending() const { return destination_ == NULL && source_ != NULL; } in IsPending()293 return IsEliminated() || source_->Equals(destination_) || IsIgnored() || in IsRedundant()294 (destination_ != NULL && destination_->IsConstant()); in IsRedundant()298 return destination_ != NULL && destination_->IsIgnored(); in IsIgnored()302 void Eliminate() { source_ = destination_ = NULL; } in Eliminate()304 DCHECK(source_ != NULL || destination_ == NULL); in IsEliminated()310 InstructionOperand* destination_; variable