| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ | 5 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ |
| 6 #define V8_X64_MACRO_ASSEMBLER_X64_H_ | 6 #define V8_X64_MACRO_ASSEMBLER_X64_H_ |
| 7 | 7 |
| 8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
| 9 #include "src/bailout-reason.h" | 9 #include "src/bailout-reason.h" |
| 10 #include "src/base/flags.h" | 10 #include "src/base/flags.h" |
| (...skipping 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 void Move(XMMRegister dst, uint32_t src); | 892 void Move(XMMRegister dst, uint32_t src); |
| 893 void Move(XMMRegister dst, uint64_t src); | 893 void Move(XMMRegister dst, uint64_t src); |
| 894 void Move(XMMRegister dst, float src) { Move(dst, bit_cast<uint32_t>(src)); } | 894 void Move(XMMRegister dst, float src) { Move(dst, bit_cast<uint32_t>(src)); } |
| 895 void Move(XMMRegister dst, double src) { Move(dst, bit_cast<uint64_t>(src)); } | 895 void Move(XMMRegister dst, double src) { Move(dst, bit_cast<uint64_t>(src)); } |
| 896 | 896 |
| 897 void Movapd(XMMRegister dst, XMMRegister src); | 897 void Movapd(XMMRegister dst, XMMRegister src); |
| 898 void Movsd(XMMRegister dst, XMMRegister src); | 898 void Movsd(XMMRegister dst, XMMRegister src); |
| 899 void Movsd(XMMRegister dst, const Operand& src); | 899 void Movsd(XMMRegister dst, const Operand& src); |
| 900 void Movsd(const Operand& dst, XMMRegister src); | 900 void Movsd(const Operand& dst, XMMRegister src); |
| 901 | 901 |
| 902 void Movd(XMMRegister dst, Register src); |
| 903 void Movd(XMMRegister dst, const Operand& src); |
| 904 void Movd(Register dst, XMMRegister src); |
| 905 void Movq(XMMRegister dst, Register src); |
| 906 void Movq(Register dst, XMMRegister src); |
| 907 |
| 902 // Control Flow | 908 // Control Flow |
| 903 void Jump(Address destination, RelocInfo::Mode rmode); | 909 void Jump(Address destination, RelocInfo::Mode rmode); |
| 904 void Jump(ExternalReference ext); | 910 void Jump(ExternalReference ext); |
| 905 void Jump(const Operand& op); | 911 void Jump(const Operand& op); |
| 906 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); | 912 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); |
| 907 | 913 |
| 908 void Call(Address destination, RelocInfo::Mode rmode); | 914 void Call(Address destination, RelocInfo::Mode rmode); |
| 909 void Call(ExternalReference ext); | 915 void Call(ExternalReference ext); |
| 910 void Call(const Operand& op); | 916 void Call(const Operand& op); |
| 911 void Call(Handle<Code> code_object, | 917 void Call(Handle<Code> code_object, |
| (...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1645 } \ | 1651 } \ |
| 1646 masm-> | 1652 masm-> |
| 1647 #else | 1653 #else |
| 1648 #define ACCESS_MASM(masm) masm-> | 1654 #define ACCESS_MASM(masm) masm-> |
| 1649 #endif | 1655 #endif |
| 1650 | 1656 |
| 1651 } // namespace internal | 1657 } // namespace internal |
| 1652 } // namespace v8 | 1658 } // namespace v8 |
| 1653 | 1659 |
| 1654 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1660 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
| OLD | NEW |