Lines Matching defs:Move
224 inline void Move(Register output, MemOperand operand) { Ld(output, operand); }
704 inline void Move(Register dst, Handle<HeapObject> handle) { li(dst, handle); }
705 inline void Move(Register dst, Smi smi) { li(dst, Operand(smi)); }
707 inline void Move(Register dst, Register src) {
713 inline void Move(FPURegister dst, FPURegister src) { Move_d(dst, src); }
715 inline void Move(Register dst_low, Register dst_high, FPURegister src) {
720 inline void Move(Register dst, FPURegister src) { dmfc1(dst, src); }
722 inline void Move(FPURegister dst, Register src) { dmtc1(src, dst); }
738 inline void Move(FPURegister dst, Register src_low, Register src_high) {
755 void Move(FPURegister dst, float imm) { Move(dst, bit_cast<uint32_t>(imm)); }
756 void Move(FPURegister dst, double imm) { Move(dst, bit_cast<uint64_t>(imm)); }
757 void Move(FPURegister dst, uint32_t src);
758 void Move(FPURegister dst, uint64_t src);