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