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/v8.h" | 9 #include "src/v8.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; | |
16 | |
17 class JSInliner { | 15 class JSInliner { |
18 public: | 16 public: |
19 JSInliner(CompilationInfo* info, JSGraph* jsgraph) | 17 JSInliner(CompilationInfo* info, JSGraph* jsgraph) |
20 : info_(info), jsgraph_(jsgraph) {} | 18 : info_(info), jsgraph_(jsgraph) {} |
21 | 19 |
22 void Inline(); | 20 void Inline(); |
23 void TryInlineCall(Node* node); | 21 void TryInlineCall(Node* node); |
24 | 22 |
25 private: | 23 private: |
26 friend class InlinerVisitor; | 24 friend class InlinerVisitor; |
27 CompilationInfo* info_; | 25 CompilationInfo* info_; |
28 JSGraph* jsgraph_; | 26 JSGraph* jsgraph_; |
29 | 27 |
30 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, | |
31 Handle<JSFunction> jsfunction, | |
32 Zone* temp_zone); | |
33 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction); | |
34 static void UnifyReturn(Graph* graph); | 28 static void UnifyReturn(Graph* graph); |
35 }; | 29 }; |
36 } | 30 } |
37 } | 31 } |
38 } // namespace v8::internal::compiler | 32 } // namespace v8::internal::compiler |
39 | 33 |
40 #endif // V8_COMPILER_JS_INLINING_H_ | 34 #endif // V8_COMPILER_JS_INLINING_H_ |
OLD | NEW |