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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 void Movsd(XMMRegister dst, XMMRegister src); | 903 void Movsd(XMMRegister dst, XMMRegister src); |
904 void Movsd(XMMRegister dst, const Operand& src); | 904 void Movsd(XMMRegister dst, const Operand& src); |
905 void Movsd(const Operand& dst, XMMRegister src); | 905 void Movsd(const Operand& dst, XMMRegister src); |
906 | 906 |
907 void Movd(XMMRegister dst, Register src); | 907 void Movd(XMMRegister dst, Register src); |
908 void Movd(XMMRegister dst, const Operand& src); | 908 void Movd(XMMRegister dst, const Operand& src); |
909 void Movd(Register dst, XMMRegister src); | 909 void Movd(Register dst, XMMRegister src); |
910 void Movq(XMMRegister dst, Register src); | 910 void Movq(XMMRegister dst, Register src); |
911 void Movq(Register dst, XMMRegister src); | 911 void Movq(Register dst, XMMRegister src); |
912 | 912 |
| 913 void Movmskpd(Register dst, XMMRegister src); |
| 914 |
913 void Xorpd(XMMRegister dst, XMMRegister src); | 915 void Xorpd(XMMRegister dst, XMMRegister src); |
914 | 916 |
915 // Control Flow | 917 // Control Flow |
916 void Jump(Address destination, RelocInfo::Mode rmode); | 918 void Jump(Address destination, RelocInfo::Mode rmode); |
917 void Jump(ExternalReference ext); | 919 void Jump(ExternalReference ext); |
918 void Jump(const Operand& op); | 920 void Jump(const Operand& op); |
919 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); | 921 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); |
920 | 922 |
921 void Call(Address destination, RelocInfo::Mode rmode); | 923 void Call(Address destination, RelocInfo::Mode rmode); |
922 void Call(ExternalReference ext); | 924 void Call(ExternalReference ext); |
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1661 } \ | 1663 } \ |
1662 masm-> | 1664 masm-> |
1663 #else | 1665 #else |
1664 #define ACCESS_MASM(masm) masm-> | 1666 #define ACCESS_MASM(masm) masm-> |
1665 #endif | 1667 #endif |
1666 | 1668 |
1667 } // namespace internal | 1669 } // namespace internal |
1668 } // namespace v8 | 1670 } // namespace v8 |
1669 | 1671 |
1670 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1672 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
OLD | NEW |