| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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); | 373 void comisd(XmmRegister a, XmmRegister b); |
| 374 void cvtsi2sd(XmmRegister a, Register b); |
| 374 | 375 |
| 375 void xchgl(Register dst, Register src); | 376 void xchgl(Register dst, Register src); |
| 376 void xchgq(Register dst, Register src); | 377 void xchgq(Register dst, Register src); |
| 377 | 378 |
| 378 void cmpl(Register reg, const Immediate& imm); | 379 void cmpl(Register reg, const Immediate& imm); |
| 379 void cmpl(Register reg0, Register reg1); | 380 void cmpl(Register reg0, Register reg1); |
| 380 void cmpl(Register reg, const Address& address); | 381 void cmpl(Register reg, const Address& address); |
| 381 void cmpl(const Address& address, const Immediate& imm); | 382 void cmpl(const Address& address, const Immediate& imm); |
| 382 | 383 |
| 383 void cmpq(Register reg, const Immediate& imm); | 384 void cmpq(Register reg, const Immediate& imm); |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 } | 657 } |
| 657 | 658 |
| 658 | 659 |
| 659 inline void Assembler::EmitOperandSizeOverride() { | 660 inline void Assembler::EmitOperandSizeOverride() { |
| 660 EmitUint8(0x66); | 661 EmitUint8(0x66); |
| 661 } | 662 } |
| 662 | 663 |
| 663 } // namespace dart | 664 } // namespace dart |
| 664 | 665 |
| 665 #endif // VM_ASSEMBLER_X64_H_ | 666 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |