| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 kRoundToNearest = 0x0, | 471 kRoundToNearest = 0x0, |
| 472 kRoundDown = 0x1, | 472 kRoundDown = 0x1, |
| 473 kRoundUp = 0x2, | 473 kRoundUp = 0x2, |
| 474 kRoundToZero = 0x3 | 474 kRoundToZero = 0x3 |
| 475 }; | 475 }; |
| 476 void roundsd(XmmRegister dst, XmmRegister src, RoundingMode mode); | 476 void roundsd(XmmRegister dst, XmmRegister src, RoundingMode mode); |
| 477 | 477 |
| 478 void xchgl(Register dst, Register src); | 478 void xchgl(Register dst, Register src); |
| 479 void xchgq(Register dst, Register src); | 479 void xchgq(Register dst, Register src); |
| 480 | 480 |
| 481 void cmpb(const Address& address, const Immediate& imm); |
| 482 |
| 481 void cmpl(Register reg, const Immediate& imm); | 483 void cmpl(Register reg, const Immediate& imm); |
| 482 void cmpl(Register reg0, Register reg1); | 484 void cmpl(Register reg0, Register reg1); |
| 483 void cmpl(Register reg, const Address& address); | 485 void cmpl(Register reg, const Address& address); |
| 484 void cmpl(const Address& address, const Immediate& imm); | 486 void cmpl(const Address& address, const Immediate& imm); |
| 485 | 487 |
| 486 void cmpq(Register reg, const Immediate& imm); | 488 void cmpq(Register reg, const Immediate& imm); |
| 487 void cmpq(const Address& address, Register reg); | 489 void cmpq(const Address& address, Register reg); |
| 488 void cmpq(const Address& address, const Immediate& imm); | 490 void cmpq(const Address& address, const Immediate& imm); |
| 489 void cmpq(Register reg0, Register reg1); | 491 void cmpq(Register reg0, Register reg1); |
| 490 void cmpq(Register reg, const Address& address); | 492 void cmpq(Register reg, const Address& address); |
| (...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1082 } | 1084 } |
| 1083 | 1085 |
| 1084 | 1086 |
| 1085 inline void Assembler::EmitOperandSizeOverride() { | 1087 inline void Assembler::EmitOperandSizeOverride() { |
| 1086 EmitUint8(0x66); | 1088 EmitUint8(0x66); |
| 1087 } | 1089 } |
| 1088 | 1090 |
| 1089 } // namespace dart | 1091 } // namespace dart |
| 1090 | 1092 |
| 1091 #endif // VM_ASSEMBLER_X64_H_ | 1093 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |