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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 case kArmFloat32Max: | 106 case kArmFloat32Max: |
107 case kArmFloat64Max: | 107 case kArmFloat64Max: |
108 case kArmFloat32Min: | 108 case kArmFloat32Min: |
109 case kArmFloat64Min: | 109 case kArmFloat64Min: |
110 case kArmFloat64SilenceNaN: | 110 case kArmFloat64SilenceNaN: |
111 case kArmFloat32x4Splat: | 111 case kArmFloat32x4Splat: |
112 case kArmFloat32x4ExtractLane: | 112 case kArmFloat32x4ExtractLane: |
113 case kArmFloat32x4ReplaceLane: | 113 case kArmFloat32x4ReplaceLane: |
114 case kArmFloat32x4FromInt32x4: | 114 case kArmFloat32x4FromInt32x4: |
115 case kArmFloat32x4FromUint32x4: | 115 case kArmFloat32x4FromUint32x4: |
| 116 case kArmFloat32x4Abs: |
| 117 case kArmFloat32x4Neg: |
116 case kArmFloat32x4Add: | 118 case kArmFloat32x4Add: |
117 case kArmFloat32x4Sub: | 119 case kArmFloat32x4Sub: |
| 120 case kArmFloat32x4Eq: |
| 121 case kArmFloat32x4Ne: |
118 case kArmInt32x4Splat: | 122 case kArmInt32x4Splat: |
119 case kArmInt32x4ExtractLane: | 123 case kArmInt32x4ExtractLane: |
120 case kArmInt32x4ReplaceLane: | 124 case kArmInt32x4ReplaceLane: |
121 case kArmInt32x4FromFloat32x4: | 125 case kArmInt32x4FromFloat32x4: |
122 case kArmUint32x4FromFloat32x4: | 126 case kArmUint32x4FromFloat32x4: |
123 case kArmInt32x4Add: | 127 case kArmInt32x4Add: |
124 case kArmInt32x4Sub: | 128 case kArmInt32x4Sub: |
125 case kArmInt32x4Eq: | 129 case kArmInt32x4Eq: |
126 case kArmInt32x4Ne: | 130 case kArmInt32x4Ne: |
127 case kArmSimd32x4Select: | 131 case kArmSimd32x4Select: |
(...skipping 30 matching lines...) Expand all Loading... |
158 | 162 |
159 | 163 |
160 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { | 164 int InstructionScheduler::GetInstructionLatency(const Instruction* instr) { |
161 // TODO(all): Add instruction cost modeling. | 165 // TODO(all): Add instruction cost modeling. |
162 return 1; | 166 return 1; |
163 } | 167 } |
164 | 168 |
165 } // namespace compiler | 169 } // namespace compiler |
166 } // namespace internal | 170 } // namespace internal |
167 } // namespace v8 | 171 } // namespace v8 |
OLD | NEW |