| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 | 363 |
| 364 void movsd(XmmRegister dst, const Address& src); | 364 void movsd(XmmRegister dst, const Address& src); |
| 365 void movsd(const Address& dst, XmmRegister src); | 365 void movsd(const Address& dst, XmmRegister src); |
| 366 void movsd(XmmRegister dst, XmmRegister src); | 366 void movsd(XmmRegister dst, XmmRegister src); |
| 367 | 367 |
| 368 void addsd(XmmRegister dst, XmmRegister src); | 368 void addsd(XmmRegister dst, XmmRegister src); |
| 369 void subsd(XmmRegister dst, XmmRegister src); | 369 void subsd(XmmRegister dst, XmmRegister src); |
| 370 void mulsd(XmmRegister dst, XmmRegister src); | 370 void mulsd(XmmRegister dst, XmmRegister src); |
| 371 void divsd(XmmRegister dst, XmmRegister src); | 371 void divsd(XmmRegister dst, XmmRegister src); |
| 372 | 372 |
| 373 void comisd(XmmRegister a, XmmRegister b); |
| 374 |
| 373 void xchgl(Register dst, Register src); | 375 void xchgl(Register dst, Register src); |
| 374 void xchgq(Register dst, Register src); | 376 void xchgq(Register dst, Register src); |
| 375 | 377 |
| 376 void cmpl(Register reg, const Immediate& imm); | 378 void cmpl(Register reg, const Immediate& imm); |
| 377 void cmpl(Register reg0, Register reg1); | 379 void cmpl(Register reg0, Register reg1); |
| 378 void cmpl(Register reg, const Address& address); | 380 void cmpl(Register reg, const Address& address); |
| 379 void cmpl(const Address& address, const Immediate& imm); | 381 void cmpl(const Address& address, const Immediate& imm); |
| 380 | 382 |
| 381 void cmpq(Register reg, const Immediate& imm); | 383 void cmpq(Register reg, const Immediate& imm); |
| 382 void cmpq(const Address& address, Register reg); | 384 void cmpq(const Address& address, Register reg); |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 } | 635 } |
| 634 | 636 |
| 635 | 637 |
| 636 inline void Assembler::EmitOperandSizeOverride() { | 638 inline void Assembler::EmitOperandSizeOverride() { |
| 637 EmitUint8(0x66); | 639 EmitUint8(0x66); |
| 638 } | 640 } |
| 639 | 641 |
| 640 } // namespace dart | 642 } // namespace dart |
| 641 | 643 |
| 642 #endif // VM_ASSEMBLER_X64_H_ | 644 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |