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

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

Issue 1628133002: [turbofan] Add RoundUint32ToFloat32 operator to Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add arm/arm64 implementation Created 4 years, 10 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 case kSSEFloat32ToInt64: 86 case kSSEFloat32ToInt64:
87 case kSSEFloat64ToUint64: 87 case kSSEFloat64ToUint64:
88 case kSSEFloat32ToUint64: 88 case kSSEFloat32ToUint64:
89 case kSSEInt32ToFloat64: 89 case kSSEInt32ToFloat64:
90 case kSSEInt32ToFloat32: 90 case kSSEInt32ToFloat32:
91 case kSSEInt64ToFloat32: 91 case kSSEInt64ToFloat32:
92 case kSSEInt64ToFloat64: 92 case kSSEInt64ToFloat64:
93 case kSSEUint64ToFloat32: 93 case kSSEUint64ToFloat32:
94 case kSSEUint64ToFloat64: 94 case kSSEUint64ToFloat64:
95 case kSSEUint32ToFloat64: 95 case kSSEUint32ToFloat64:
96 case kSSEUint32ToFloat32:
96 case kSSEFloat64ExtractLowWord32: 97 case kSSEFloat64ExtractLowWord32:
97 case kSSEFloat64ExtractHighWord32: 98 case kSSEFloat64ExtractHighWord32:
98 case kSSEFloat64InsertLowWord32: 99 case kSSEFloat64InsertLowWord32:
99 case kSSEFloat64InsertHighWord32: 100 case kSSEFloat64InsertHighWord32:
100 case kSSEFloat64LoadLowWord32: 101 case kSSEFloat64LoadLowWord32:
101 case kAVXFloat32Cmp: 102 case kAVXFloat32Cmp:
102 case kAVXFloat32Add: 103 case kAVXFloat32Add:
103 case kAVXFloat32Sub: 104 case kAVXFloat32Sub:
104 case kAVXFloat32Mul: 105 case kAVXFloat32Mul:
105 case kAVXFloat32Div: 106 case kAVXFloat32Div:
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 176
176 177
177 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 178 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
178 // TODO(all): Add instruction cost modeling. 179 // TODO(all): Add instruction cost modeling.
179 return 1; 180 return 1;
180 } 181 }
181 182
182 } // namespace compiler 183 } // namespace compiler
183 } // namespace internal 184 } // namespace internal
184 } // namespace v8 185 } // 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