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_INLINING_H_ | 5 #ifndef V8_COMPILER_JS_INLINING_H_ |
6 #define V8_COMPILER_JS_INLINING_H_ | 6 #define V8_COMPILER_JS_INLINING_H_ |
7 | 7 |
8 #include "src/compiler/js-graph.h" | 8 #include "src/compiler/js-graph.h" |
9 #include "src/compiler/graph-reducer.h" | 9 #include "src/compiler/graph-reducer.h" |
10 | 10 |
11 namespace v8 { | 11 namespace v8 { |
12 namespace internal { | 12 namespace internal { |
13 namespace compiler { | 13 namespace compiler { |
14 | 14 |
15 class JSCallFunctionAccessor; | 15 class JSCallFunctionAccessor; |
16 struct Inlinee; | 16 struct Inlinee; |
17 | 17 |
18 class JSInliner final : public AdvancedReducer { | 18 class JSInliner final : public AdvancedReducer { |
19 public: | 19 public: |
20 enum Mode { kBuiltinsInlining, kGeneralInlining }; | 20 enum Mode { kRestrictedInlining, kGeneralInlining }; |
21 | 21 |
22 JSInliner(Editor* editor, Mode mode, Zone* local_zone, CompilationInfo* info, | 22 JSInliner(Editor* editor, Mode mode, Zone* local_zone, CompilationInfo* info, |
23 JSGraph* jsgraph) | 23 JSGraph* jsgraph) |
24 : AdvancedReducer(editor), | 24 : AdvancedReducer(editor), |
25 mode_(mode), | 25 mode_(mode), |
26 local_zone_(local_zone), | 26 local_zone_(local_zone), |
27 info_(info), | 27 info_(info), |
28 jsgraph_(jsgraph) {} | 28 jsgraph_(jsgraph) {} |
29 | 29 |
30 Reduction Reduce(Node* node) final; | 30 Reduction Reduce(Node* node) final; |
31 | 31 |
32 private: | 32 private: |
33 Mode const mode_; | 33 Mode const mode_; |
34 Zone* local_zone_; | 34 Zone* local_zone_; |
35 CompilationInfo* info_; | 35 CompilationInfo* info_; |
36 JSGraph* jsgraph_; | 36 JSGraph* jsgraph_; |
37 | 37 |
38 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, | 38 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, |
39 Zone* temp_zone); | 39 Zone* temp_zone); |
40 | 40 |
41 Reduction InlineCall(Node* call, Inlinee& inlinee); | 41 Reduction InlineCall(Node* call, Inlinee& inlinee); |
42 }; | 42 }; |
43 | 43 |
44 } // namespace compiler | 44 } // namespace compiler |
45 } // namespace internal | 45 } // namespace internal |
46 } // namespace v8 | 46 } // namespace v8 |
47 | 47 |
48 #endif // V8_COMPILER_JS_INLINING_H_ | 48 #endif // V8_COMPILER_JS_INLINING_H_ |
OLD | NEW |