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.cc

Issue 1404903004: [x64] Use vcvtlsi2sd when AVX is enabled (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix the test on Win64 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') | test/cctest/test-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 #if V8_TARGET_ARCH_X64 5 #if V8_TARGET_ARCH_X64
6 6
7 #include "src/base/bits.h" 7 #include "src/base/bits.h"
8 #include "src/base/division-by-constant.h" 8 #include "src/base/division-by-constant.h"
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 for (int i = kNumberOfSavedRegs - 1; i >= 0; i--) { 781 for (int i = kNumberOfSavedRegs - 1; i >= 0; i--) {
782 Register reg = saved_regs[i]; 782 Register reg = saved_regs[i];
783 if (!reg.is(exclusion1) && !reg.is(exclusion2) && !reg.is(exclusion3)) { 783 if (!reg.is(exclusion1) && !reg.is(exclusion2) && !reg.is(exclusion3)) {
784 popq(reg); 784 popq(reg);
785 } 785 }
786 } 786 }
787 } 787 }
788 788
789 789
790 void MacroAssembler::Cvtlsi2sd(XMMRegister dst, Register src) { 790 void MacroAssembler::Cvtlsi2sd(XMMRegister dst, Register src) {
791 xorps(dst, dst); 791 if (CpuFeatures::IsSupported(AVX)) {
792 cvtlsi2sd(dst, src); 792 CpuFeatureScope scope(this, AVX);
793 vxorpd(dst, dst, dst);
794 vcvtlsi2sd(dst, dst, src);
795 } else {
796 xorps(dst, dst);
797 cvtlsi2sd(dst, src);
798 }
793 } 799 }
794 800
795 801
796 void MacroAssembler::Cvtlsi2sd(XMMRegister dst, const Operand& src) { 802 void MacroAssembler::Cvtlsi2sd(XMMRegister dst, const Operand& src) {
797 xorps(dst, dst); 803 if (CpuFeatures::IsSupported(AVX)) {
798 cvtlsi2sd(dst, src); 804 CpuFeatureScope scope(this, AVX);
805 vxorpd(dst, dst, dst);
806 vcvtlsi2sd(dst, dst, src);
807 } else {
808 xorps(dst, dst);
809 cvtlsi2sd(dst, src);
810 }
799 } 811 }
800 812
801 813
802 void MacroAssembler::Load(Register dst, const Operand& src, Representation r) { 814 void MacroAssembler::Load(Register dst, const Operand& src, Representation r) {
803 DCHECK(!r.IsDouble()); 815 DCHECK(!r.IsDouble());
804 if (r.IsInteger8()) { 816 if (r.IsInteger8()) {
805 movsxbq(dst, src); 817 movsxbq(dst, src);
806 } else if (r.IsUInteger8()) { 818 } else if (r.IsUInteger8()) {
807 movzxbl(dst, src); 819 movzxbl(dst, src);
808 } else if (r.IsInteger16()) { 820 } else if (r.IsInteger16()) {
(...skipping 4232 matching lines...) Expand 10 before | Expand all | Expand 10 after
5041 movl(rax, dividend); 5053 movl(rax, dividend);
5042 shrl(rax, Immediate(31)); 5054 shrl(rax, Immediate(31));
5043 addl(rdx, rax); 5055 addl(rdx, rax);
5044 } 5056 }
5045 5057
5046 5058
5047 } // namespace internal 5059 } // namespace internal
5048 } // namespace v8 5060 } // namespace v8
5049 5061
5050 #endif // V8_TARGET_ARCH_X64 5062 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | test/cctest/test-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698