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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
919 | 919 |
920 void Movaps(XMMRegister dst, XMMRegister src); | 920 void Movaps(XMMRegister dst, XMMRegister src); |
921 void Movapd(XMMRegister dst, XMMRegister src); | 921 void Movapd(XMMRegister dst, XMMRegister src); |
922 void Movmskpd(Register dst, XMMRegister src); | 922 void Movmskpd(Register dst, XMMRegister src); |
923 | 923 |
924 void Ucomiss(XMMRegister src1, XMMRegister src2); | 924 void Ucomiss(XMMRegister src1, XMMRegister src2); |
925 void Ucomiss(XMMRegister src1, const Operand& src2); | 925 void Ucomiss(XMMRegister src1, const Operand& src2); |
926 void Ucomisd(XMMRegister src1, XMMRegister src2); | 926 void Ucomisd(XMMRegister src1, XMMRegister src2); |
927 void Ucomisd(XMMRegister src1, const Operand& src2); | 927 void Ucomisd(XMMRegister src1, const Operand& src2); |
928 | 928 |
| 929 void Andpd(XMMRegister dst, XMMRegister src); |
| 930 void Orpd(XMMRegister dst, XMMRegister src); |
929 void Xorpd(XMMRegister dst, XMMRegister src); | 931 void Xorpd(XMMRegister dst, XMMRegister src); |
930 void Pcmpeqd(XMMRegister dst, XMMRegister src); | 932 void Pcmpeqd(XMMRegister dst, XMMRegister src); |
931 void Psllq(XMMRegister dst, byte imm8); | 933 void Psllq(XMMRegister dst, byte imm8); |
932 void Psrlq(XMMRegister dst, byte imm8); | 934 void Psrlq(XMMRegister dst, byte imm8); |
933 | 935 |
934 // Control Flow | 936 // Control Flow |
935 void Jump(Address destination, RelocInfo::Mode rmode); | 937 void Jump(Address destination, RelocInfo::Mode rmode); |
936 void Jump(ExternalReference ext); | 938 void Jump(ExternalReference ext); |
937 void Jump(const Operand& op); | 939 void Jump(const Operand& op); |
938 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); | 940 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode); |
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1680 } \ | 1682 } \ |
1681 masm-> | 1683 masm-> |
1682 #else | 1684 #else |
1683 #define ACCESS_MASM(masm) masm-> | 1685 #define ACCESS_MASM(masm) masm-> |
1684 #endif | 1686 #endif |
1685 | 1687 |
1686 } // namespace internal | 1688 } // namespace internal |
1687 } // namespace v8 | 1689 } // namespace v8 |
1688 | 1690 |
1689 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1691 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
OLD | NEW |