Home
last modified time | relevance | path

Searched refs:saved_destination_ (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/arm64/
Dlithium-gap-resolver-arm64.cc30 root_index_(0), in_cycle_(false), saved_destination_(NULL) { in LGapResolver()
156 saved_destination_ = moves_[index].destination(); in BreakCycle()
181 DCHECK(saved_destination_ != NULL); in RestoreValue()
183 if (saved_destination_->IsRegister()) { in RestoreValue()
184 __ Mov(cgen_->ToRegister(saved_destination_), SavedValueRegister()); in RestoreValue()
186 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
187 __ Store(SavedValueRegister(), cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
189 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
190 __ Fmov(cgen_->ToDoubleRegister(saved_destination_), in RestoreValue()
192 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
[all …]
Dlithium-gap-resolver-arm64.h94 LOperand* saved_destination_; variable
/external/v8/src/mips64/
Dlithium-gap-resolver-mips64.cc18 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()
[all …]
Dlithium-gap-resolver-mips64.h55 LOperand* saved_destination_; variable
/external/v8/src/arm/
Dlithium-gap-resolver-arm.cc25 saved_destination_(NULL), need_to_restore_root_(false) { } in LGapResolver()
161 saved_destination_ = moves_[index].destination(); in BreakCycle()
182 DCHECK(saved_destination_ != NULL); in RestoreValue()
184 if (saved_destination_->IsRegister()) { in RestoreValue()
185 __ mov(cgen_->ToRegister(saved_destination_), kSavedValueRegister); in RestoreValue()
186 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
187 __ str(kSavedValueRegister, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
188 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
189 __ vmov(cgen_->ToDoubleRegister(saved_destination_), kScratchDoubleReg); in RestoreValue()
190 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
[all …]
Dlithium-gap-resolver-arm.h55 LOperand* saved_destination_; variable
/external/v8/src/mips/
Dlithium-gap-resolver-mips.cc18 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 __ sw(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()
[all …]
Dlithium-gap-resolver-mips.h55 LOperand* saved_destination_; variable