| 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 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 void Movsd(const Operand& dst, XMMRegister src); | 910 void Movsd(const Operand& dst, XMMRegister src); |
| 911 | 911 |
| 912 void Movd(XMMRegister dst, Register src); | 912 void Movd(XMMRegister dst, Register src); |
| 913 void Movd(XMMRegister dst, const Operand& src); | 913 void Movd(XMMRegister dst, const Operand& src); |
| 914 void Movd(Register dst, XMMRegister src); | 914 void Movd(Register dst, XMMRegister src); |
| 915 void Movq(XMMRegister dst, Register src); | 915 void Movq(XMMRegister dst, Register src); |
| 916 void Movq(Register dst, XMMRegister src); | 916 void Movq(Register dst, XMMRegister src); |
| 917 | 917 |
| 918 void Movmskpd(Register dst, XMMRegister src); | 918 void Movmskpd(Register dst, XMMRegister src); |
| 919 | 919 |
| 920 void Ucomiss(XMMRegister src1, XMMRegister src2); |
| 921 void Ucomiss(XMMRegister src1, const Operand& src2); |
| 922 void Ucomisd(XMMRegister src1, XMMRegister src2); |
| 923 void Ucomisd(XMMRegister src1, const Operand& src2); |
| 924 |
| 920 void Xorpd(XMMRegister dst, XMMRegister src); | 925 void Xorpd(XMMRegister dst, XMMRegister src); |
| 921 | 926 |
| 922 // Control Flow | 927 // Control Flow |
| 923 void Jump(Address destination, RelocInfo::Mode rmode); | 928 void Jump(Address destination, RelocInfo::Mode rmode); |
| 924 void Jump(ExternalReference ext); | 929 void Jump(ExternalReference ext); |
| 925 void Jump(const Operand& op); | 930 void Jump(const Operand& op); |
| 926 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); | 931 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); |
| 927 | 932 |
| 928 void Call(Address destination, RelocInfo::Mode rmode); | 933 void Call(Address destination, RelocInfo::Mode rmode); |
| 929 void Call(ExternalReference ext); | 934 void Call(ExternalReference ext); |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1668 } \ | 1673 } \ |
| 1669 masm-> | 1674 masm-> |
| 1670 #else | 1675 #else |
| 1671 #define ACCESS_MASM(masm) masm-> | 1676 #define ACCESS_MASM(masm) masm-> |
| 1672 #endif | 1677 #endif |
| 1673 | 1678 |
| 1674 } // namespace internal | 1679 } // namespace internal |
| 1675 } // namespace v8 | 1680 } // namespace v8 |
| 1676 | 1681 |
| 1677 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1682 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
| OLD | NEW |