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

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: Remove unused signature. 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
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
989 void Roundss(XMMRegister dst, XMMRegister src, RoundingMode mode); 992 void Roundss(XMMRegister dst, XMMRegister src, RoundingMode mode);
990 void Roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 993 void Roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
991 void Sqrtsd(XMMRegister dst, XMMRegister src); 994 void Sqrtsd(XMMRegister dst, XMMRegister src);
992 void Sqrtsd(XMMRegister dst, const Operand& src); 995 void Sqrtsd(XMMRegister dst, const Operand& src);
993 996
994 void Ucomiss(XMMRegister src1, XMMRegister src2); 997 void Ucomiss(XMMRegister src1, XMMRegister src2);
995 void Ucomiss(XMMRegister src1, const Operand& src2); 998 void Ucomiss(XMMRegister src1, const Operand& src2);
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
1775 } \ 1778 } \
1776 masm-> 1779 masm->
1777 #else 1780 #else
1778 #define ACCESS_MASM(masm) masm-> 1781 #define ACCESS_MASM(masm) masm->
1779 #endif 1782 #endif
1780 1783
1781 } // namespace internal 1784 } // namespace internal
1782 } // namespace v8 1785 } // namespace v8
1783 1786
1784 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1787 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698