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/v8.h" |
| 11 |
| 12 namespace v8 { |
| 13 namespace internal { |
| 14 namespace compiler { |
| 15 |
| 16 class JSInliner { |
| 17 public: |
| 18 JSInliner(CompilationInfo* info, JSGraph* jsgraph) |
| 19 : info_(info), jsgraph_(jsgraph) {} |
| 20 |
| 21 void Inline(); |
| 22 void TryInlineCall(Node* node); |
| 23 |
| 24 private: |
| 25 friend class InlinerVisitor; |
| 26 CompilationInfo* info_; |
| 27 JSGraph* jsgraph_; |
| 28 |
| 29 static void UnifyReturn(Graph* graph); |
| 30 }; |
| 31 } |
| 32 } |
| 33 } // namespace v8::internal::compiler |
| 34 |
| 35 #endif // V8_COMPILER_JS_INLINING_H_ |
OLD | NEW |