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

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

Issue 2070583002: S390: [turbofan] Prevent storing signalling NaNs into holey double arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 case kS390_Uint64ToFloat32: 97 case kS390_Uint64ToFloat32:
98 case kS390_Uint64ToDouble: 98 case kS390_Uint64ToDouble:
99 case kS390_Int32ToFloat32: 99 case kS390_Int32ToFloat32:
100 case kS390_Int32ToDouble: 100 case kS390_Int32ToDouble:
101 case kS390_Uint32ToFloat32: 101 case kS390_Uint32ToFloat32:
102 case kS390_Uint32ToDouble: 102 case kS390_Uint32ToDouble:
103 case kS390_Float32ToInt32: 103 case kS390_Float32ToInt32:
104 case kS390_Float32ToUint32: 104 case kS390_Float32ToUint32:
105 case kS390_Float32ToUint64: 105 case kS390_Float32ToUint64:
106 case kS390_Float32ToDouble: 106 case kS390_Float32ToDouble:
107 case kS390_Float64SilenceNaN:
107 case kS390_DoubleToInt32: 108 case kS390_DoubleToInt32:
108 case kS390_DoubleToUint32: 109 case kS390_DoubleToUint32:
109 case kS390_Float32ToInt64: 110 case kS390_Float32ToInt64:
110 case kS390_DoubleToInt64: 111 case kS390_DoubleToInt64:
111 case kS390_DoubleToUint64: 112 case kS390_DoubleToUint64:
112 case kS390_DoubleToFloat32: 113 case kS390_DoubleToFloat32:
113 case kS390_DoubleExtractLowWord32: 114 case kS390_DoubleExtractLowWord32:
114 case kS390_DoubleExtractHighWord32: 115 case kS390_DoubleExtractHighWord32:
115 case kS390_DoubleInsertLowWord32: 116 case kS390_DoubleInsertLowWord32:
116 case kS390_DoubleInsertHighWord32: 117 case kS390_DoubleInsertHighWord32:
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 } 156 }
156 157
157 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { 158 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
158 // TODO(all): Add instruction cost modeling. 159 // TODO(all): Add instruction cost modeling.
159 return 1; 160 return 1;
160 } 161 }
161 162
162 } // namespace compiler 163 } // namespace compiler
163 } // namespace internal 164 } // namespace internal
164 } // namespace v8 165 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/s390/instruction-codes-s390.h ('k') | src/compiler/s390/instruction-selector-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698