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

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

Issue 1411023002: [x64] Emit vmovmskpd when AVX is enabled. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/lithium-codegen-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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698