OLD | NEW |
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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 case kArm64Rbit32: | 79 case kArm64Rbit32: |
80 case kArm64Float32Cmp: | 80 case kArm64Float32Cmp: |
81 case kArm64Float32Add: | 81 case kArm64Float32Add: |
82 case kArm64Float32Sub: | 82 case kArm64Float32Sub: |
83 case kArm64Float32Mul: | 83 case kArm64Float32Mul: |
84 case kArm64Float32Div: | 84 case kArm64Float32Div: |
85 case kArm64Float32Abs: | 85 case kArm64Float32Abs: |
86 case kArm64Float32Neg: | 86 case kArm64Float32Neg: |
87 case kArm64Float32Sqrt: | 87 case kArm64Float32Sqrt: |
88 case kArm64Float32RoundDown: | 88 case kArm64Float32RoundDown: |
| 89 case kArm64Float32Max: |
| 90 case kArm64Float32Min: |
89 case kArm64Float64Cmp: | 91 case kArm64Float64Cmp: |
90 case kArm64Float64Add: | 92 case kArm64Float64Add: |
91 case kArm64Float64Sub: | 93 case kArm64Float64Sub: |
92 case kArm64Float64Mul: | 94 case kArm64Float64Mul: |
93 case kArm64Float64Div: | 95 case kArm64Float64Div: |
94 case kArm64Float64Mod: | 96 case kArm64Float64Mod: |
95 case kArm64Float64Max: | 97 case kArm64Float64Max: |
96 case kArm64Float64Min: | 98 case kArm64Float64Min: |
97 case kArm64Float64Abs: | 99 case kArm64Float64Abs: |
98 case kArm64Float64Neg: | 100 case kArm64Float64Neg: |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 return 5; | 338 return 5; |
337 | 339 |
338 default: | 340 default: |
339 return 2; | 341 return 2; |
340 } | 342 } |
341 } | 343 } |
342 | 344 |
343 } // namespace compiler | 345 } // namespace compiler |
344 } // namespace internal | 346 } // namespace internal |
345 } // namespace v8 | 347 } // namespace v8 |
OLD | NEW |