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

Side by Side Diff: src/compiler/x64/code-generator-x64.cc

Issue 1476063002: [turbofan] Implemented the TruncateFloat32ToInt64 TurboFan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Increased the type of opcodes from uint8_t to uint16_t. Created 5 years 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/compiler/verifier.cc ('k') | src/compiler/x64/instruction-codes-x64.h » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 #include "src/compiler/code-generator.h" 5 #include "src/compiler/code-generator.h"
6 6
7 #include "src/compiler/code-generator-impl.h" 7 #include "src/compiler/code-generator-impl.h"
8 #include "src/compiler/gap-resolver.h" 8 #include "src/compiler/gap-resolver.h"
9 #include "src/compiler/node-matchers.h" 9 #include "src/compiler/node-matchers.h"
10 #include "src/compiler/osr.h" 10 #include "src/compiler/osr.h"
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 break; 1036 break;
1037 case kSSEFloat64ToUint32: { 1037 case kSSEFloat64ToUint32: {
1038 if (instr->InputAt(0)->IsDoubleRegister()) { 1038 if (instr->InputAt(0)->IsDoubleRegister()) {
1039 __ Cvttsd2siq(i.OutputRegister(), i.InputDoubleRegister(0)); 1039 __ Cvttsd2siq(i.OutputRegister(), i.InputDoubleRegister(0));
1040 } else { 1040 } else {
1041 __ Cvttsd2siq(i.OutputRegister(), i.InputOperand(0)); 1041 __ Cvttsd2siq(i.OutputRegister(), i.InputOperand(0));
1042 } 1042 }
1043 __ AssertZeroExtended(i.OutputRegister()); 1043 __ AssertZeroExtended(i.OutputRegister());
1044 break; 1044 break;
1045 } 1045 }
1046 case kSSEFloat32ToInt64:
1047 if (instr->InputAt(0)->IsDoubleRegister()) {
1048 __ Cvttss2siq(i.OutputRegister(), i.InputDoubleRegister(0));
1049 } else {
1050 __ Cvttss2siq(i.OutputRegister(), i.InputOperand(0));
1051 }
1052 break;
1046 case kSSEFloat64ToInt64: 1053 case kSSEFloat64ToInt64:
1047 if (instr->InputAt(0)->IsDoubleRegister()) { 1054 if (instr->InputAt(0)->IsDoubleRegister()) {
1048 __ Cvttsd2siq(i.OutputRegister(), i.InputDoubleRegister(0)); 1055 __ Cvttsd2siq(i.OutputRegister(), i.InputDoubleRegister(0));
1049 } else { 1056 } else {
1050 __ Cvttsd2siq(i.OutputRegister(), i.InputOperand(0)); 1057 __ Cvttsd2siq(i.OutputRegister(), i.InputOperand(0));
1051 } 1058 }
1052 break; 1059 break;
1053 case kSSEFloat64ToUint64: { 1060 case kSSEFloat64ToUint64: {
1054 // There does not exist a Float64ToUint64 instruction, so we have to use 1061 // There does not exist a Float64ToUint64 instruction, so we have to use
1055 // the Float64ToInt64 instruction. 1062 // the Float64ToInt64 instruction.
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
2004 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; 2011 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc;
2005 __ Nop(padding_size); 2012 __ Nop(padding_size);
2006 } 2013 }
2007 } 2014 }
2008 2015
2009 #undef __ 2016 #undef __
2010 2017
2011 } // namespace compiler 2018 } // namespace compiler
2012 } // namespace internal 2019 } // namespace internal
2013 } // namespace v8 2020 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/verifier.cc ('k') | src/compiler/x64/instruction-codes-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698