Home | History | Annotate | Download | only in arm64

Lines Matching refs:saved_destination_

28       root_index_(0), in_cycle_(false), saved_destination_(NULL) {
154 saved_destination_ = moves_[index].destination();
179 DCHECK(saved_destination_ != NULL);
181 if (saved_destination_->IsRegister()) {
182 __ Mov(cgen_->ToRegister(saved_destination_), SavedValueRegister());
184 } else if (saved_destination_->IsStackSlot()) {
185 __ Store(SavedValueRegister(), cgen_->ToMemOperand(saved_destination_));
187 } else if (saved_destination_->IsDoubleRegister()) {
188 __ Fmov(cgen_->ToDoubleRegister(saved_destination_),
190 } else if (saved_destination_->IsDoubleStackSlot()) {
191 __ Store(SavedFPValueRegister(), cgen_->ToMemOperand(saved_destination_));
197 saved_destination_ = NULL;