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 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ |
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ | 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
| 9 #include "src/compiler/opcodes.h" |
9 #include "src/compiler/simplified-operator.h" | 10 #include "src/compiler/simplified-operator.h" |
10 | 11 |
11 namespace v8 { | 12 namespace v8 { |
12 namespace internal { | 13 namespace internal { |
| 14 |
| 15 // Forward declarations. |
| 16 class Factory; |
| 17 |
| 18 |
13 namespace compiler { | 19 namespace compiler { |
14 | 20 |
15 // Forward declarations. | 21 // Forward declarations. |
16 class CommonOperatorBuilder; | 22 class CommonOperatorBuilder; |
17 class JSGraph; | 23 class JSGraph; |
18 class JSOperatorBuilder; | 24 class JSOperatorBuilder; |
19 class MachineOperatorBuilder; | 25 class MachineOperatorBuilder; |
20 | 26 |
21 | 27 |
22 // Lowers JS-level operators to simplified operators based on types. | 28 // Lowers JS-level operators to simplified operators based on types. |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 Type* one_range_; | 81 Type* one_range_; |
76 Type* zero_thirtyone_range_; | 82 Type* zero_thirtyone_range_; |
77 Type* shifted_int32_ranges_[4]; | 83 Type* shifted_int32_ranges_[4]; |
78 }; | 84 }; |
79 | 85 |
80 } // namespace compiler | 86 } // namespace compiler |
81 } // namespace internal | 87 } // namespace internal |
82 } // namespace v8 | 88 } // namespace v8 |
83 | 89 |
84 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ | 90 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ |
OLD | NEW |