Index: src/compiler/js-inlining.cc |
diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc |
index bab3308cb86deb9c74a28d89bafce93b8a2f350e..b70a3d270b92039d2aee862c53f596cc5b0061e5 100644 |
--- a/src/compiler/js-inlining.cc |
+++ b/src/compiler/js-inlining.cc |
@@ -59,17 +59,6 @@ void JSInliner::Inline() { |
} |
-// TODO(sigurds) Find a home for this function and reuse it everywhere (esp. in |
-// test cases, where similar code is currently duplicated). |
-static void Parse(Handle<JSFunction> function, CompilationInfoWithZone* info) { |
- CHECK(Parser::Parse(info)); |
- CHECK(Rewriter::Rewrite(info)); |
- CHECK(Scope::Analyze(info)); |
- CHECK(AstNumbering::Renumber(info->function(), info->zone())); |
- CHECK(Compiler::EnsureDeoptimizationSupport(info)); |
-} |
- |
- |
// A facade on a JSFunction's graph to facilitate inlining. It assumes the |
// that the function graph has only one return statement, and provides |
// {UnifyReturn} to convert a function graph to that end. |
@@ -385,7 +374,8 @@ void JSInliner::TryInlineJSCall(Node* call_node) { |
} |
CompilationInfoWithZone info(function); |
- Parse(function, &info); |
+ CHECK(Compiler::ParseAndAnalyze(&info)); |
+ CHECK(Compiler::EnsureDeoptimizationSupport(&info)); |
if (info.scope()->arguments() != NULL && info.strict_mode() != STRICT) { |
// For now do not inline functions that use their arguments array. |