| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 case kArm64Ror32: | 68 case kArm64Ror32: |
| 69 case kArm64Mov32: | 69 case kArm64Mov32: |
| 70 case kArm64Sxtb32: | 70 case kArm64Sxtb32: |
| 71 case kArm64Sxth32: | 71 case kArm64Sxth32: |
| 72 case kArm64Sxtw: | 72 case kArm64Sxtw: |
| 73 case kArm64Sbfx32: | 73 case kArm64Sbfx32: |
| 74 case kArm64Ubfx: | 74 case kArm64Ubfx: |
| 75 case kArm64Ubfx32: | 75 case kArm64Ubfx32: |
| 76 case kArm64Ubfiz32: | 76 case kArm64Ubfiz32: |
| 77 case kArm64Bfi: | 77 case kArm64Bfi: |
| 78 case kArm64Rbit: |
| 79 case kArm64Rbit32: |
| 78 case kArm64Float32Cmp: | 80 case kArm64Float32Cmp: |
| 79 case kArm64Float32Add: | 81 case kArm64Float32Add: |
| 80 case kArm64Float32Sub: | 82 case kArm64Float32Sub: |
| 81 case kArm64Float32Mul: | 83 case kArm64Float32Mul: |
| 82 case kArm64Float32Div: | 84 case kArm64Float32Div: |
| 83 case kArm64Float32Max: | 85 case kArm64Float32Max: |
| 84 case kArm64Float32Min: | 86 case kArm64Float32Min: |
| 85 case kArm64Float32Abs: | 87 case kArm64Float32Abs: |
| 86 case kArm64Float32Sqrt: | 88 case kArm64Float32Sqrt: |
| 87 case kArm64Float32RoundDown: | 89 case kArm64Float32RoundDown: |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 return 5; | 223 return 5; |
| 222 | 224 |
| 223 default: | 225 default: |
| 224 return 1; | 226 return 1; |
| 225 } | 227 } |
| 226 } | 228 } |
| 227 | 229 |
| 228 } // namespace compiler | 230 } // namespace compiler |
| 229 } // namespace internal | 231 } // namespace internal |
| 230 } // namespace v8 | 232 } // namespace v8 |
| OLD | NEW |