Lines Matching refs:saved_destination_
19 saved_destination_(NULL) {} in LGapResolver()
147 saved_destination_ = moves_[index].destination(); in BreakCycle()
166 DCHECK(saved_destination_ != NULL); in RestoreValue()
169 if (saved_destination_->IsRegister()) { in RestoreValue()
170 __ mr(cgen_->ToRegister(saved_destination_), kSavedValueRegister); in RestoreValue()
171 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
172 __ StoreP(kSavedValueRegister, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
173 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
174 __ fmr(cgen_->ToDoubleRegister(saved_destination_), kScratchDoubleReg); in RestoreValue()
175 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
176 __ stfd(kScratchDoubleReg, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
182 saved_destination_ = NULL; in RestoreValue()