Lines Matching refs:saved_destination_
18 saved_destination_(NULL) {} in LGapResolver()
146 saved_destination_ = moves_[index].destination(); in BreakCycle()
165 DCHECK(saved_destination_ != NULL); in RestoreValue()
168 if (saved_destination_->IsRegister()) { in RestoreValue()
169 __ mov(cgen_->ToRegister(saved_destination_), kLithiumScratchReg); in RestoreValue()
170 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
171 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
172 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
173 __ mov_d(cgen_->ToDoubleRegister(saved_destination_), in RestoreValue()
175 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
177 cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
183 saved_destination_ = NULL; in RestoreValue()