Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 2139513002: [Turbofan] Support 128 bit moves/swaps for x64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Macroassembler supports xorps/vxorps. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/x64/disasm-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 void Movss(XMMRegister dst, const Operand& src); 976 void Movss(XMMRegister dst, const Operand& src);
977 void Movss(const Operand& dst, XMMRegister src); 977 void Movss(const Operand& dst, XMMRegister src);
978 978
979 void Movd(XMMRegister dst, Register src); 979 void Movd(XMMRegister dst, Register src);
980 void Movd(XMMRegister dst, const Operand& src); 980 void Movd(XMMRegister dst, const Operand& src);
981 void Movd(Register dst, XMMRegister src); 981 void Movd(Register dst, XMMRegister src);
982 void Movq(XMMRegister dst, Register src); 982 void Movq(XMMRegister dst, Register src);
983 void Movq(Register dst, XMMRegister src); 983 void Movq(Register dst, XMMRegister src);
984 984
985 void Movaps(XMMRegister dst, XMMRegister src); 985 void Movaps(XMMRegister dst, XMMRegister src);
986 void Movups(XMMRegister dst, XMMRegister src);
987 void Movups(XMMRegister dst, const Operand& src);
988 void Movups(const Operand& dst, XMMRegister src);
986 void Movapd(XMMRegister dst, XMMRegister src); 989 void Movapd(XMMRegister dst, XMMRegister src);
987 void Movmskpd(Register dst, XMMRegister src); 990 void Movmskpd(Register dst, XMMRegister src);
988 991
992 void Xorps(XMMRegister dst, XMMRegister src);
993 void Xorps(XMMRegister dst, const Operand& src);
994
989 void Roundss(XMMRegister dst, XMMRegister src, RoundingMode mode); 995 void Roundss(XMMRegister dst, XMMRegister src, RoundingMode mode);
990 void Roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 996 void Roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
991 void Sqrtsd(XMMRegister dst, XMMRegister src); 997 void Sqrtsd(XMMRegister dst, XMMRegister src);
992 void Sqrtsd(XMMRegister dst, const Operand& src); 998 void Sqrtsd(XMMRegister dst, const Operand& src);
993 999
994 void Ucomiss(XMMRegister src1, XMMRegister src2); 1000 void Ucomiss(XMMRegister src1, XMMRegister src2);
995 void Ucomiss(XMMRegister src1, const Operand& src2); 1001 void Ucomiss(XMMRegister src1, const Operand& src2);
996 void Ucomisd(XMMRegister src1, XMMRegister src2); 1002 void Ucomisd(XMMRegister src1, XMMRegister src2);
997 void Ucomisd(XMMRegister src1, const Operand& src2); 1003 void Ucomisd(XMMRegister src1, const Operand& src2);
998 1004
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
1778 } \ 1784 } \
1779 masm-> 1785 masm->
1780 #else 1786 #else
1781 #define ACCESS_MASM(masm) masm-> 1787 #define ACCESS_MASM(masm) masm->
1782 #endif 1788 #endif
1783 1789
1784 } // namespace internal 1790 } // namespace internal
1785 } // namespace v8 1791 } // namespace v8
1786 1792
1787 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1793 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/x64/disasm-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698