• Home
  • Raw
  • Download

Lines Matching refs:destination

110   LOperand* destination = moves_[index].destination();  in PerformMove()  local
119 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove()
129 moves_[index].set_destination(destination); in PerformMove()
135 if (other_move.Blocks(destination)) { in PerformMove()
150 LOperand* destination = moves_[i].destination(); in Verify() local
152 SLOW_ASSERT(!destination->Equals(moves_[j].destination())); in Verify()
164 ASSERT(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle()
168 saved_destination_ = moves_[index].destination(); in BreakCycle()
209 LOperand* destination = moves_[index].destination(); in EmitMove() local
216 if (destination->IsRegister()) { in EmitMove()
217 __ mov(cgen_->ToRegister(destination), source_register); in EmitMove()
219 ASSERT(destination->IsStackSlot()); in EmitMove()
220 __ str(source_register, cgen_->ToMemOperand(destination)); in EmitMove()
225 if (destination->IsRegister()) { in EmitMove()
226 __ ldr(cgen_->ToRegister(destination), source_operand); in EmitMove()
228 ASSERT(destination->IsStackSlot()); in EmitMove()
229 MemOperand destination_operand = cgen_->ToMemOperand(destination); in EmitMove()
249 if (destination->IsRegister()) { in EmitMove()
250 Register dst = cgen_->ToRegister(destination); in EmitMove()
257 ASSERT(destination->IsStackSlot()); in EmitMove()
266 __ str(kSavedValueRegister, cgen_->ToMemOperand(destination)); in EmitMove()
271 if (destination->IsDoubleRegister()) { in EmitMove()
272 __ vmov(cgen_->ToDoubleRegister(destination), source_register); in EmitMove()
274 ASSERT(destination->IsDoubleStackSlot()); in EmitMove()
275 __ vstr(source_register, cgen_->ToMemOperand(destination)); in EmitMove()
280 if (destination->IsDoubleRegister()) { in EmitMove()
281 __ vldr(cgen_->ToDoubleRegister(destination), source_operand); in EmitMove()
283 ASSERT(destination->IsDoubleStackSlot()); in EmitMove()
284 MemOperand destination_operand = cgen_->ToMemOperand(destination); in EmitMove()
291 cgen_->ToHighMemOperand(destination); in EmitMove()