Lines Matching refs:saved_destination_
17 saved_destination_(NULL) {} in LGapResolver()
145 saved_destination_ = moves_[index].destination(); in BreakCycle()
164 DCHECK(saved_destination_ != NULL); in RestoreValue()
167 if (saved_destination_->IsRegister()) { in RestoreValue()
168 __ mov(cgen_->ToRegister(saved_destination_), kLithiumScratchReg); in RestoreValue()
169 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
170 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
171 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
172 __ mov_d(cgen_->ToDoubleRegister(saved_destination_), in RestoreValue()
174 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
176 cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
182 saved_destination_ = NULL; in RestoreValue()