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