Searched refs:saved_destination_ (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/arm64/ |
D | lithium-gap-resolver-arm64.cc | 30 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 …]
|
D | lithium-gap-resolver-arm64.h | 94 LOperand* saved_destination_; variable
|
/external/v8/src/mips64/ |
D | lithium-gap-resolver-mips64.cc | 18 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 …]
|
D | lithium-gap-resolver-mips64.h | 55 LOperand* saved_destination_; variable
|
/external/v8/src/arm/ |
D | lithium-gap-resolver-arm.cc | 25 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 …]
|
D | lithium-gap-resolver-arm.h | 55 LOperand* saved_destination_; variable
|
/external/v8/src/mips/ |
D | lithium-gap-resolver-mips.cc | 18 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 …]
|
D | lithium-gap-resolver-mips.h | 55 LOperand* saved_destination_; variable
|