OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |