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_COMMON_OPERATOR_REDUCER_H_ | 5 #ifndef V8_COMPILER_COMMON_OPERATOR_REDUCER_H_ |
6 #define V8_COMPILER_COMMON_OPERATOR_REDUCER_H_ | 6 #define V8_COMPILER_COMMON_OPERATOR_REDUCER_H_ |
7 | 7 |
8 #include "src/compiler/graph-reducer.h" | 8 #include "src/compiler/graph-reducer.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
11 namespace internal { | 11 namespace internal { |
| 12 |
| 13 // Forward declarations. |
| 14 class Factory; |
| 15 |
| 16 |
12 namespace compiler { | 17 namespace compiler { |
13 | 18 |
14 // Forward declarations. | 19 // Forward declarations. |
15 class CommonOperatorBuilder; | 20 class CommonOperatorBuilder; |
16 class Graph; | 21 class Graph; |
17 class JSGraph; | 22 class JSGraph; |
18 class MachineOperatorBuilder; | 23 class MachineOperatorBuilder; |
19 class Operator; | 24 class Operator; |
20 | 25 |
21 | 26 |
22 // Performs strength reduction on nodes that have common operators. | 27 // Performs strength reduction on nodes that have common operators. |
23 class CommonOperatorReducer FINAL : public Reducer { | 28 class CommonOperatorReducer FINAL : public Reducer { |
24 public: | 29 public: |
25 explicit CommonOperatorReducer(JSGraph* jsgraph) : jsgraph_(jsgraph) {} | 30 explicit CommonOperatorReducer(JSGraph* jsgraph) : jsgraph_(jsgraph) {} |
26 ~CommonOperatorReducer() FINAL {} | 31 ~CommonOperatorReducer() FINAL {} |
27 | 32 |
28 Reduction Reduce(Node* node) FINAL; | 33 Reduction Reduce(Node* node) FINAL; |
29 | 34 |
30 private: | 35 private: |
31 Reduction ReduceEffectPhi(Node* node); | 36 Reduction ReduceEffectPhi(Node* node); |
32 Reduction ReducePhi(Node* node); | 37 Reduction ReducePhi(Node* node); |
33 Reduction ReduceSelect(Node* node); | 38 Reduction ReduceSelect(Node* node); |
34 | 39 |
35 Reduction Change(Node* node, Operator const* op, Node* a); | 40 Reduction Change(Node* node, Operator const* op, Node* a); |
36 Reduction Change(Node* node, Operator const* op, Node* a, Node* b); | 41 Reduction Change(Node* node, Operator const* op, Node* a, Node* b); |
37 | 42 |
38 CommonOperatorBuilder* common() const; | 43 CommonOperatorBuilder* common() const; |
39 Graph* graph() const; | 44 Graph* graph() const; |
| 45 Factory* factory() const; |
40 JSGraph* jsgraph() const { return jsgraph_; } | 46 JSGraph* jsgraph() const { return jsgraph_; } |
41 MachineOperatorBuilder* machine() const; | 47 MachineOperatorBuilder* machine() const; |
42 | 48 |
43 JSGraph* const jsgraph_; | 49 JSGraph* const jsgraph_; |
44 }; | 50 }; |
45 | 51 |
46 } // namespace compiler | 52 } // namespace compiler |
47 } // namespace internal | 53 } // namespace internal |
48 } // namespace v8 | 54 } // namespace v8 |
49 | 55 |
50 #endif // V8_COMPILER_COMMON_OPERATOR_REDUCER_H_ | 56 #endif // V8_COMPILER_COMMON_OPERATOR_REDUCER_H_ |
OLD | NEW |