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

Side by Side Diff: src/compiler/arm64/instruction-scheduler-arm64.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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 case kArm64Float64ToInt32: 110 case kArm64Float64ToInt32:
111 case kArm64Float64ToUint32: 111 case kArm64Float64ToUint32:
112 case kArm64Float32ToInt64: 112 case kArm64Float32ToInt64:
113 case kArm64Float64ToInt64: 113 case kArm64Float64ToInt64:
114 case kArm64Float32ToUint64: 114 case kArm64Float32ToUint64:
115 case kArm64Float64ToUint64: 115 case kArm64Float64ToUint64:
116 case kArm64Int32ToFloat32: 116 case kArm64Int32ToFloat32:
117 case kArm64Int32ToFloat64: 117 case kArm64Int32ToFloat64:
118 case kArm64Int64ToFloat32: 118 case kArm64Int64ToFloat32:
119 case kArm64Int64ToFloat64: 119 case kArm64Int64ToFloat64:
120 case kArm64Uint32ToFloat32:
120 case kArm64Uint32ToFloat64: 121 case kArm64Uint32ToFloat64:
121 case kArm64Uint64ToFloat32: 122 case kArm64Uint64ToFloat32:
122 case kArm64Uint64ToFloat64: 123 case kArm64Uint64ToFloat64:
123 case kArm64Float64ExtractLowWord32: 124 case kArm64Float64ExtractLowWord32:
124 case kArm64Float64ExtractHighWord32: 125 case kArm64Float64ExtractHighWord32:
125 case kArm64Float64InsertLowWord32: 126 case kArm64Float64InsertLowWord32:
126 case kArm64Float64InsertHighWord32: 127 case kArm64Float64InsertHighWord32:
127 case kArm64Float64MoveU64: 128 case kArm64Float64MoveU64:
128 case kArm64U64MoveFloat64: 129 case kArm64U64MoveFloat64:
129 return kNoOpcodeFlags; 130 return kNoOpcodeFlags;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 return 5; 220 return 5;
220 221
221 default: 222 default:
222 return 1; 223 return 1;
223 } 224 }
224 } 225 }
225 226
226 } // namespace compiler 227 } // namespace compiler
227 } // namespace internal 228 } // namespace internal
228 } // namespace v8 229 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-codes-arm64.h ('k') | src/compiler/arm64/instruction-selector-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698