| 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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 void incq(Register reg); | 575 void incq(Register reg); |
| 576 void incq(const Address& address); | 576 void incq(const Address& address); |
| 577 void decq(Register reg); | 577 void decq(Register reg); |
| 578 void decq(const Address& address); | 578 void decq(const Address& address); |
| 579 | 579 |
| 580 void negl(Register reg); | 580 void negl(Register reg); |
| 581 void negq(Register reg); | 581 void negq(Register reg); |
| 582 void notl(Register reg); | 582 void notl(Register reg); |
| 583 void notq(Register reg); | 583 void notq(Register reg); |
| 584 | 584 |
| 585 void btq(Register base, Register offset); |
| 586 |
| 585 void enter(const Immediate& imm); | 587 void enter(const Immediate& imm); |
| 586 void leave(); | 588 void leave(); |
| 587 void ret(); | 589 void ret(); |
| 588 | 590 |
| 589 void movmskpd(Register dst, XmmRegister src); | 591 void movmskpd(Register dst, XmmRegister src); |
| 590 void movmskps(Register dst, XmmRegister src); | 592 void movmskps(Register dst, XmmRegister src); |
| 591 | 593 |
| 592 void sqrtsd(XmmRegister dst, XmmRegister src); | 594 void sqrtsd(XmmRegister dst, XmmRegister src); |
| 593 | 595 |
| 594 void xorpd(XmmRegister dst, const Address& src); | 596 void xorpd(XmmRegister dst, const Address& src); |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 } | 1078 } |
| 1077 | 1079 |
| 1078 | 1080 |
| 1079 inline void Assembler::EmitOperandSizeOverride() { | 1081 inline void Assembler::EmitOperandSizeOverride() { |
| 1080 EmitUint8(0x66); | 1082 EmitUint8(0x66); |
| 1081 } | 1083 } |
| 1082 | 1084 |
| 1083 } // namespace dart | 1085 } // namespace dart |
| 1084 | 1086 |
| 1085 #endif // VM_ASSEMBLER_X64_H_ | 1087 #endif // VM_ASSEMBLER_X64_H_ |
| OLD | NEW |