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_BUILTIN_REDUCER_H_ | 5 #ifndef V8_COMPILER_JS_BUILTIN_REDUCER_H_ |
6 #define V8_COMPILER_JS_BUILTIN_REDUCER_H_ | 6 #define V8_COMPILER_JS_BUILTIN_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 namespace compiler { | 12 namespace compiler { |
13 | 13 |
14 // Forward declarations. | 14 // Forward declarations. |
15 class CommonOperatorBuilder; | 15 class CommonOperatorBuilder; |
16 class JSGraph; | 16 class JSGraph; |
| 17 class JSOperatorBuilder; |
17 class MachineOperatorBuilder; | 18 class MachineOperatorBuilder; |
18 class SimplifiedOperatorBuilder; | 19 class SimplifiedOperatorBuilder; |
19 | 20 |
20 | 21 |
21 class JSBuiltinReducer final : public AdvancedReducer { | 22 class JSBuiltinReducer final : public AdvancedReducer { |
22 public: | 23 public: |
23 explicit JSBuiltinReducer(Editor* editor, JSGraph* jsgraph); | 24 explicit JSBuiltinReducer(Editor* editor, JSGraph* jsgraph); |
24 ~JSBuiltinReducer() final {} | 25 ~JSBuiltinReducer() final {} |
25 | 26 |
26 Reduction Reduce(Node* node) final; | 27 Reduction Reduce(Node* node) final; |
27 | 28 |
28 private: | 29 private: |
| 30 Reduction ReduceFunctionCall(Node* node); |
29 Reduction ReduceMathMax(Node* node); | 31 Reduction ReduceMathMax(Node* node); |
30 Reduction ReduceMathImul(Node* node); | 32 Reduction ReduceMathImul(Node* node); |
31 Reduction ReduceMathFround(Node* node); | 33 Reduction ReduceMathFround(Node* node); |
32 | 34 |
| 35 Graph* graph() const; |
33 JSGraph* jsgraph() const { return jsgraph_; } | 36 JSGraph* jsgraph() const { return jsgraph_; } |
34 Graph* graph() const; | 37 Isolate* isolate() const; |
35 CommonOperatorBuilder* common() const; | 38 CommonOperatorBuilder* common() const; |
36 MachineOperatorBuilder* machine() const; | 39 MachineOperatorBuilder* machine() const; |
37 SimplifiedOperatorBuilder* simplified() const; | 40 SimplifiedOperatorBuilder* simplified() const; |
| 41 JSOperatorBuilder* javascript() const; |
38 | 42 |
39 JSGraph* jsgraph_; | 43 JSGraph* jsgraph_; |
40 }; | 44 }; |
41 | 45 |
42 } // namespace compiler | 46 } // namespace compiler |
43 } // namespace internal | 47 } // namespace internal |
44 } // namespace v8 | 48 } // namespace v8 |
45 | 49 |
46 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ | 50 #endif // V8_COMPILER_JS_BUILTIN_REDUCER_H_ |
OLD | NEW |