Lines Matching defs:Move
47 // TODO(victorgomes): Move definition to macro-assembler.h, once all other
122 // Move a constant into a destination using the most efficient encoding.
123 void Move(Register dst, int32_t x) {
130 void Move(Register dst, const Immediate& src);
131 void Move(Register dst, Smi src) { Move(dst, Immediate(src)); }
132 void Move(Register dst, Handle<HeapObject> src);
133 void Move(Register dst, Register src);
134 void Move(Register dst, Operand src);
135 void Move(Operand dst, const Immediate& src);
137 // Move an immediate into an XMM register.
138 void Move(XMMRegister dst, uint32_t src);
139 void Move(XMMRegister dst, uint64_t src);
140 void Move(XMMRegister dst, float src) { Move(dst, bit_cast<uint32_t>(src)); }
141 void Move(XMMRegister dst, double src) { Move(dst, bit_cast<uint64_t>(src)); }