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

Side by Side Diff: src/compiler/x64/instruction-scheduler-x64.cc

Issue 2252863003: [turbofan] Add Float32(Max|Min) machine operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Type is number now. Created 4 years, 4 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/compiler/x64/instruction-codes-x64.h ('k') | src/compiler/x64/instruction-selector-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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/instruction-scheduler.h" 5 #include "src/compiler/instruction-scheduler.h"
6 6
7 namespace v8 { 7 namespace v8 {
8 namespace internal { 8 namespace internal {
9 namespace compiler { 9 namespace compiler {
10 10
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 case kSSEFloat64Cmp: 71 case kSSEFloat64Cmp:
72 case kSSEFloat64Add: 72 case kSSEFloat64Add:
73 case kSSEFloat64Sub: 73 case kSSEFloat64Sub:
74 case kSSEFloat64Mul: 74 case kSSEFloat64Mul:
75 case kSSEFloat64Div: 75 case kSSEFloat64Div:
76 case kSSEFloat64Mod: 76 case kSSEFloat64Mod:
77 case kSSEFloat64Abs: 77 case kSSEFloat64Abs:
78 case kSSEFloat64Neg: 78 case kSSEFloat64Neg:
79 case kSSEFloat64Sqrt: 79 case kSSEFloat64Sqrt:
80 case kSSEFloat64Round: 80 case kSSEFloat64Round:
81 case kSSEFloat32Max:
81 case kSSEFloat64Max: 82 case kSSEFloat64Max:
83 case kSSEFloat32Min:
82 case kSSEFloat64Min: 84 case kSSEFloat64Min:
83 case kSSEFloat64ToFloat32: 85 case kSSEFloat64ToFloat32:
84 case kSSEFloat32ToInt32: 86 case kSSEFloat32ToInt32:
85 case kSSEFloat32ToUint32: 87 case kSSEFloat32ToUint32:
86 case kSSEFloat64ToInt32: 88 case kSSEFloat64ToInt32:
87 case kSSEFloat64ToUint32: 89 case kSSEFloat64ToUint32:
88 case kSSEFloat64ToInt64: 90 case kSSEFloat64ToInt64:
89 case kSSEFloat32ToInt64: 91 case kSSEFloat32ToInt64:
90 case kSSEFloat64ToUint64: 92 case kSSEFloat64ToUint64:
91 case kSSEFloat32ToUint64: 93 case kSSEFloat32ToUint64:
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 187
186 188
187 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 189 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
188 // TODO(all): Add instruction cost modeling. 190 // TODO(all): Add instruction cost modeling.
189 return 1; 191 return 1;
190 } 192 }
191 193
192 } // namespace compiler 194 } // namespace compiler
193 } // namespace internal 195 } // namespace internal
194 } // namespace v8 196 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/x64/instruction-codes-x64.h ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698