OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef V8_COMPILER_JS_INLINING_H_ | |
6 #define V8_COMPILER_JS_INLINING_H_ | |
7 | |
8 #include "src/compiler/graph-reducer.h" | |
9 #include "src/compiler/js-graph.h" | |
10 #include "src/contexts.h" | |
Michael Starzinger
2014/08/14 10:36:22
nit: Both the graph-reducer.h and the contexts.h i
sigurds
2014/08/19 11:31:19
Done.
| |
11 #include "src/v8.h" | |
12 | |
13 namespace v8 { | |
14 namespace internal { | |
15 namespace compiler { | |
16 | |
17 class JSInliner { | |
18 public: | |
19 JSInliner(CompilationInfo* info, JSGraph* jsgraph) | |
20 : info_(info), jsgraph_(jsgraph) {} | |
21 | |
22 void Inline(); | |
23 void TryInlineCall(Node* node); | |
24 | |
25 private: | |
26 friend class InlinerVisitor; | |
27 CompilationInfo* info_; | |
28 JSGraph* jsgraph_; | |
29 | |
30 static void UnifyReturn(Graph* graph); | |
31 }; | |
32 } | |
33 } | |
34 } // namespace v8::internal::compiler | |
35 | |
36 #endif // V8_COMPILER_JS_INLINING_H_ | |
OLD | NEW |