| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_ASSEMBLER_X64_H_ | 5 #ifndef VM_ASSEMBLER_X64_H_ |
| 6 #define VM_ASSEMBLER_X64_H_ | 6 #define VM_ASSEMBLER_X64_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_x64.h directly; use assembler.h instead. | 9 #error Do not include assembler_x64.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 | 345 |
| 346 void movaps(XmmRegister dst, XmmRegister src); | 346 void movaps(XmmRegister dst, XmmRegister src); |
| 347 | 347 |
| 348 void addsd(XmmRegister dst, XmmRegister src); | 348 void addsd(XmmRegister dst, XmmRegister src); |
| 349 void subsd(XmmRegister dst, XmmRegister src); | 349 void subsd(XmmRegister dst, XmmRegister src); |
| 350 void mulsd(XmmRegister dst, XmmRegister src); | 350 void mulsd(XmmRegister dst, XmmRegister src); |
| 351 void divsd(XmmRegister dst, XmmRegister src); | 351 void divsd(XmmRegister dst, XmmRegister src); |
| 352 | 352 |
| 353 void comisd(XmmRegister a, XmmRegister b); | 353 void comisd(XmmRegister a, XmmRegister b); |
| 354 void cvtsi2sd(XmmRegister a, Register b); | 354 void cvtsi2sd(XmmRegister a, Register b); |
| 355 void cvttsd2siq(Register dst, XmmRegister src); |
| 355 | 356 |
| 356 void xchgl(Register dst, Register src); | 357 void xchgl(Register dst, Register src); |
| 357 void xchgq(Register dst, Register src); | 358 void xchgq(Register dst, Register src); |
| 358 | 359 |
| 359 void cmpl(Register reg, const Immediate& imm); | 360 void cmpl(Register reg, const Immediate& imm); |
| 360 void cmpl(Register reg0, Register reg1); | 361 void cmpl(Register reg0, Register reg1); |
| 361 void cmpl(Register reg, const Address& address); | 362 void cmpl(Register reg, const Address& address); |
| 362 void cmpl(const Address& address, const Immediate& imm); | 363 void cmpl(const Address& address, const Immediate& imm); |
| 363 | 364 |
| 364 void cmpq(Register reg, const Immediate& imm); | 365 void cmpq(Register reg, const Immediate& imm); |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 } | 706 } |
| 706 | 707 |
| 707 | 708 |
| 708 inline void Assembler::EmitOperandSizeOverride() { | 709 inline void Assembler::EmitOperandSizeOverride() { |
| 709 EmitUint8(0x66); | 710 EmitUint8(0x66); |
| 710 } | 711 } |
| 711 | 712 |
| 712 } // namespace dart | 713 } // namespace dart |
| 713 | 714 |
| 714 #endif // VM_ASSEMBLER_X64_H_ | 715 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |