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

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

Issue 1413013003: [x64] Implement vcvtqsi2sd AVX instruction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 void Cvtss2sd(XMMRegister dst, XMMRegister src); 809 void Cvtss2sd(XMMRegister dst, XMMRegister src);
810 void Cvtss2sd(XMMRegister dst, const Operand& src); 810 void Cvtss2sd(XMMRegister dst, const Operand& src);
811 void Cvtsd2ss(XMMRegister dst, XMMRegister src); 811 void Cvtsd2ss(XMMRegister dst, XMMRegister src);
812 void Cvtsd2ss(XMMRegister dst, const Operand& src); 812 void Cvtsd2ss(XMMRegister dst, const Operand& src);
813 813
814 // cvtsi2sd instruction only writes to the low 64-bit of dst register, which 814 // cvtsi2sd instruction only writes to the low 64-bit of dst register, which
815 // hinders register renaming and makes dependence chains longer. So we use 815 // hinders register renaming and makes dependence chains longer. So we use
816 // xorpd to clear the dst register before cvtsi2sd to solve this issue. 816 // xorpd to clear the dst register before cvtsi2sd to solve this issue.
817 void Cvtlsi2sd(XMMRegister dst, Register src); 817 void Cvtlsi2sd(XMMRegister dst, Register src);
818 void Cvtlsi2sd(XMMRegister dst, const Operand& src); 818 void Cvtlsi2sd(XMMRegister dst, const Operand& src);
819 void Cvtqsi2sd(XMMRegister dst, Register src);
819 820
820 void Cvttsd2si(Register dst, XMMRegister src); 821 void Cvttsd2si(Register dst, XMMRegister src);
821 void Cvttsd2si(Register dst, const Operand& src); 822 void Cvttsd2si(Register dst, const Operand& src);
822 void Cvttsd2siq(Register dst, XMMRegister src); 823 void Cvttsd2siq(Register dst, XMMRegister src);
823 void Cvttsd2siq(Register dst, const Operand& src); 824 void Cvttsd2siq(Register dst, const Operand& src);
824 825
825 // Move if the registers are not identical. 826 // Move if the registers are not identical.
826 void Move(Register target, Register source); 827 void Move(Register target, Register source);
827 828
828 // TestBit and Load SharedFunctionInfo special field. 829 // TestBit and Load SharedFunctionInfo special field.
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
1712 } \ 1713 } \
1713 masm-> 1714 masm->
1714 #else 1715 #else
1715 #define ACCESS_MASM(masm) masm-> 1716 #define ACCESS_MASM(masm) masm->
1716 #endif 1717 #endif
1717 1718
1718 } // namespace internal 1719 } // namespace internal
1719 } // namespace v8 1720 } // namespace v8
1720 1721
1721 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1722 #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