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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 void incq(Register reg); | 634 void incq(Register reg); |
635 void incq(const Address& address); | 635 void incq(const Address& address); |
636 void decq(Register reg); | 636 void decq(Register reg); |
637 void decq(const Address& address); | 637 void decq(const Address& address); |
638 | 638 |
639 void negl(Register reg); | 639 void negl(Register reg); |
640 void negq(Register reg); | 640 void negq(Register reg); |
641 void notl(Register reg); | 641 void notl(Register reg); |
642 void notq(Register reg); | 642 void notq(Register reg); |
643 | 643 |
| 644 void bsrq(Register dst, Register src); |
| 645 |
644 void btq(Register base, Register offset); | 646 void btq(Register base, Register offset); |
645 | 647 |
646 void enter(const Immediate& imm); | 648 void enter(const Immediate& imm); |
647 void leave(); | 649 void leave(); |
648 void ret(); | 650 void ret(); |
649 | 651 |
650 void movmskpd(Register dst, XmmRegister src); | 652 void movmskpd(Register dst, XmmRegister src); |
651 void movmskps(Register dst, XmmRegister src); | 653 void movmskps(Register dst, XmmRegister src); |
652 | 654 |
653 void sqrtsd(XmmRegister dst, XmmRegister src); | 655 void sqrtsd(XmmRegister dst, XmmRegister src); |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 } | 1203 } |
1202 | 1204 |
1203 | 1205 |
1204 inline void Assembler::EmitOperandSizeOverride() { | 1206 inline void Assembler::EmitOperandSizeOverride() { |
1205 EmitUint8(0x66); | 1207 EmitUint8(0x66); |
1206 } | 1208 } |
1207 | 1209 |
1208 } // namespace dart | 1210 } // namespace dart |
1209 | 1211 |
1210 #endif // VM_ASSEMBLER_X64_H_ | 1212 #endif // VM_ASSEMBLER_X64_H_ |
OLD | NEW |