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 85 matching lines...) Loading... |
96 case kSSEUint64ToFloat32: | 96 case kSSEUint64ToFloat32: |
97 case kSSEUint64ToFloat64: | 97 case kSSEUint64ToFloat64: |
98 case kSSEUint32ToFloat64: | 98 case kSSEUint32ToFloat64: |
99 case kSSEUint32ToFloat32: | 99 case kSSEUint32ToFloat32: |
100 case kSSEFloat64ExtractLowWord32: | 100 case kSSEFloat64ExtractLowWord32: |
101 case kSSEFloat64ExtractHighWord32: | 101 case kSSEFloat64ExtractHighWord32: |
102 case kSSEFloat64InsertLowWord32: | 102 case kSSEFloat64InsertLowWord32: |
103 case kSSEFloat64InsertHighWord32: | 103 case kSSEFloat64InsertHighWord32: |
104 case kSSEFloat64LoadLowWord32: | 104 case kSSEFloat64LoadLowWord32: |
105 case kSSEFloat64SilenceNaN: | 105 case kSSEFloat64SilenceNaN: |
| 106 case kSSECreateInt32x4: |
| 107 case kSSEInt32x4ExtractLane: |
106 case kAVXFloat32Cmp: | 108 case kAVXFloat32Cmp: |
107 case kAVXFloat32Add: | 109 case kAVXFloat32Add: |
108 case kAVXFloat32Sub: | 110 case kAVXFloat32Sub: |
109 case kAVXFloat32Mul: | 111 case kAVXFloat32Mul: |
110 case kAVXFloat32Div: | 112 case kAVXFloat32Div: |
111 case kAVXFloat64Cmp: | 113 case kAVXFloat64Cmp: |
112 case kAVXFloat64Add: | 114 case kAVXFloat64Add: |
113 case kAVXFloat64Sub: | 115 case kAVXFloat64Sub: |
114 case kAVXFloat64Mul: | 116 case kAVXFloat64Mul: |
115 case kAVXFloat64Div: | 117 case kAVXFloat64Div: |
(...skipping 69 matching lines...) Loading... |
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 |
OLD | NEW |