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