Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: src/parsing/parser-base.h

Issue 2345243002: Only create ScopeInfos for eagerly parsed scopes. (Closed)
Patch Set: updates Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/parsing/parser.cc ('K') | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_PARSING_PARSER_BASE_H 5 #ifndef V8_PARSING_PARSER_BASE_H
6 #define V8_PARSING_PARSER_BASE_H 6 #define V8_PARSING_PARSER_BASE_H
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/ast/scopes.h" 9 #include "src/ast/scopes.h"
10 #include "src/bailout-reason.h" 10 #include "src/bailout-reason.h"
(...skipping 3865 matching lines...) Expand 10 before | Expand all | Expand 10 after
3876 3876
3877 if (formal_parameters.materialized_literals_count > 0) { 3877 if (formal_parameters.materialized_literals_count > 0) {
3878 materialized_literal_count += 3878 materialized_literal_count +=
3879 formal_parameters.materialized_literals_count; 3879 formal_parameters.materialized_literals_count;
3880 } 3880 }
3881 3881
3882 if (result == kLazyParsingAborted) { 3882 if (result == kLazyParsingAborted) {
3883 bookmark.Reset(); 3883 bookmark.Reset();
3884 // Trigger eager (re-)parsing, just below this block. 3884 // Trigger eager (re-)parsing, just below this block.
3885 is_lazily_parsed = false; 3885 is_lazily_parsed = false;
3886 scope()->set_is_lazily_parsed(false);
3886 3887
3887 // This is probably an initialization function. Inform the compiler it 3888 // This is probably an initialization function. Inform the compiler it
3888 // should also eager-compile this function, and that we expect it to 3889 // should also eager-compile this function, and that we expect it to
3889 // be used once. 3890 // be used once.
3890 eager_compile_hint = FunctionLiteral::kShouldEagerCompile; 3891 eager_compile_hint = FunctionLiteral::kShouldEagerCompile;
3891 should_be_used_once_hint = true; 3892 should_be_used_once_hint = true;
3892 } 3893 }
3893 } 3894 }
3894 if (!is_lazily_parsed) { 3895 if (!is_lazily_parsed) {
3895 body = impl()->ParseEagerFunctionBody( 3896 body = impl()->ParseEagerFunctionBody(
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
4899 has_seen_constructor_ = true; 4900 has_seen_constructor_ = true;
4900 return; 4901 return;
4901 } 4902 }
4902 } 4903 }
4903 4904
4904 4905
4905 } // namespace internal 4906 } // namespace internal
4906 } // namespace v8 4907 } // namespace v8
4907 4908
4908 #endif // V8_PARSING_PARSER_BASE_H 4909 #endif // V8_PARSING_PARSER_BASE_H
OLDNEW
« src/parsing/parser.cc ('K') | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698