Home
last modified time | relevance | path

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

/external/v8/src/arm/
Dlithium-gap-resolver-arm.cc40 saved_destination_(NULL) { } in LGapResolver()
168 saved_destination_ = moves_[index].destination(); in BreakCycle()
187 ASSERT(saved_destination_ != NULL); in RestoreValue()
190 if (saved_destination_->IsRegister()) { in RestoreValue()
191 __ mov(cgen_->ToRegister(saved_destination_), kSavedValueRegister); in RestoreValue()
192 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
193 __ str(kSavedValueRegister, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
194 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
195 __ vmov(cgen_->ToDoubleRegister(saved_destination_), kScratchDoubleReg); in RestoreValue()
196 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
[all …]
Dlithium-gap-resolver-arm.h78 LOperand* saved_destination_; variable
/external/v8/src/mips/
Dlithium-gap-resolver-mips.cc41 saved_destination_(NULL) {} in LGapResolver()
169 saved_destination_ = moves_[index].destination(); in BreakCycle()
188 ASSERT(saved_destination_ != NULL); in RestoreValue()
191 if (saved_destination_->IsRegister()) { in RestoreValue()
192 __ mov(cgen_->ToRegister(saved_destination_), kLithiumScratchReg); in RestoreValue()
193 } else if (saved_destination_->IsStackSlot()) { in RestoreValue()
194 __ sw(kLithiumScratchReg, cgen_->ToMemOperand(saved_destination_)); in RestoreValue()
195 } else if (saved_destination_->IsDoubleRegister()) { in RestoreValue()
196 __ mov_d(cgen_->ToDoubleRegister(saved_destination_), in RestoreValue()
198 } else if (saved_destination_->IsDoubleStackSlot()) { in RestoreValue()
[all …]
Dlithium-gap-resolver-mips.h78 LOperand* saved_destination_; variable