Lines Matching refs:saved_destination_
23 saved_destination_(NULL), need_to_restore_root_(false) { } in LGapResolver()
159 saved_destination_ = moves_[index].destination(); in BreakCycle()
180 DCHECK(saved_destination_ != NULL); in RestoreValue()
182 if (saved_destination_->IsRegister()) { in RestoreValue()
183 __ mov(cgen_->ToRegister(saved_destination_), kSavedValueRegister); in RestoreValue()
184 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
185 __ str(kSavedValueRegister, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
186 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
187 __ vmov(cgen_->ToDoubleRegister(saved_destination_), kScratchDoubleReg); in RestoreValue()
188 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
189 __ vstr(kScratchDoubleReg, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
195 saved_destination_ = NULL; in RestoreValue()