• Home
  • Raw
  • Download

Lines Matching refs:destination

111   LOperand* destination = moves_[index].destination();  in PerformMove()  local
120 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove()
130 moves_[index].set_destination(destination); in PerformMove()
136 if (other_move.Blocks(destination)) { in PerformMove()
151 LOperand* destination = moves_[i].destination(); in Verify() local
153 SLOW_ASSERT(!destination->Equals(moves_[j].destination())); in Verify()
165 ASSERT(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle()
169 saved_destination_ = moves_[index].destination(); in BreakCycle()
212 LOperand* destination = moves_[index].destination(); in EmitMove() local
219 if (destination->IsRegister()) { in EmitMove()
220 __ mov(cgen_->ToRegister(destination), source_register); in EmitMove()
222 ASSERT(destination->IsStackSlot()); in EmitMove()
223 __ sw(source_register, cgen_->ToMemOperand(destination)); in EmitMove()
228 if (destination->IsRegister()) { in EmitMove()
229 __ lw(cgen_->ToRegister(destination), source_operand); in EmitMove()
231 ASSERT(destination->IsStackSlot()); in EmitMove()
232 MemOperand destination_operand = cgen_->ToMemOperand(destination); in EmitMove()
253 if (destination->IsRegister()) { in EmitMove()
254 Register dst = cgen_->ToRegister(destination); in EmitMove()
261 ASSERT(destination->IsStackSlot()); in EmitMove()
270 __ sw(kLithiumScratchReg, cgen_->ToMemOperand(destination)); in EmitMove()
275 if (destination->IsDoubleRegister()) { in EmitMove()
276 __ mov_d(cgen_->ToDoubleRegister(destination), source_register); in EmitMove()
278 ASSERT(destination->IsDoubleStackSlot()); in EmitMove()
279 MemOperand destination_operand = cgen_->ToMemOperand(destination); in EmitMove()
285 if (destination->IsDoubleRegister()) { in EmitMove()
286 __ ldc1(cgen_->ToDoubleRegister(destination), source_operand); in EmitMove()
288 ASSERT(destination->IsDoubleStackSlot()); in EmitMove()
289 MemOperand destination_operand = cgen_->ToMemOperand(destination); in EmitMove()
296 cgen_->ToHighMemOperand(destination); in EmitMove()