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

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

Issue 2306413002: Fully deserialize the scope chain after parsing, not before (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
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 : scope_state_(nullptr), 177 : scope_state_(nullptr),
178 function_state_(nullptr), 178 function_state_(nullptr),
179 extension_(extension), 179 extension_(extension),
180 fni_(nullptr), 180 fni_(nullptr),
181 ast_value_factory_(ast_value_factory), 181 ast_value_factory_(ast_value_factory),
182 ast_node_factory_(ast_value_factory), 182 ast_node_factory_(ast_value_factory),
183 log_(log), 183 log_(log),
184 mode_(PARSE_EAGERLY), // Lazy mode must be set explicitly. 184 mode_(PARSE_EAGERLY), // Lazy mode must be set explicitly.
185 parsing_module_(false), 185 parsing_module_(false),
186 stack_limit_(stack_limit), 186 stack_limit_(stack_limit),
187 outermost_receiver_function_kind_(kNormalFunction),
188 outermost_receiver_scope_type_(SCRIPT_SCOPE),
187 zone_(zone), 189 zone_(zone),
188 classifier_(nullptr), 190 classifier_(nullptr),
189 scanner_(scanner), 191 scanner_(scanner),
190 stack_overflow_(false), 192 stack_overflow_(false),
191 allow_lazy_(false), 193 allow_lazy_(false),
192 allow_natives_(false), 194 allow_natives_(false),
193 allow_tailcalls_(false), 195 allow_tailcalls_(false),
194 allow_harmony_restrictive_declarations_(false), 196 allow_harmony_restrictive_declarations_(false),
195 allow_harmony_do_expressions_(false), 197 allow_harmony_do_expressions_(false),
196 allow_harmony_for_in_(false), 198 allow_harmony_for_in_(false),
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 861
860 // Determine precedence of given token. 862 // Determine precedence of given token.
861 static int Precedence(Token::Value token, bool accept_IN) { 863 static int Precedence(Token::Value token, bool accept_IN) {
862 if (token == Token::IN && !accept_IN) 864 if (token == Token::IN && !accept_IN)
863 return 0; // 0 precedence will terminate binary expression parsing 865 return 0; // 0 precedence will terminate binary expression parsing
864 return Token::Precedence(token); 866 return Token::Precedence(token);
865 } 867 }
866 868
867 typename Types::Factory* factory() { return &ast_node_factory_; } 869 typename Types::Factory* factory() { return &ast_node_factory_; }
868 870
869 DeclarationScope* GetReceiverScope() const { 871 FunctionKind GetReceiverScopeFunctionKind() const {
870 return scope()->GetReceiverScope(); 872 DeclarationScope* receiver_scope = scope()->GetReceiverScope();
873 if (receiver_scope->outer_scope()) return receiver_scope->function_kind();
874 return outermost_receiver_function_kind_;
875 }
876 void RecordSuperPropertyUsage() {
877 DeclarationScope* receiver_scope = scope()->GetReceiverScope();
878 // If the receiver scope is the outermost script scope, a) it might not be
adamk 2016/09/12 16:57:47 This comment points to some weirdness in this CL.
jochen (gone - plz use gerrit) 2016/09/12 19:00:43 it's a bit easier - the parser just never has an c
adamk 2016/09/12 21:35:11 The two modes I'm talking about are: - Deep insid
879 // the correct receiver scope as the correct one might first get
880 // deserialized later, and b) recording is pointless anyways, as we won't
881 // create a scope infos for deserialized scopes.
882 if (receiver_scope->outer_scope()) {
883 receiver_scope->RecordSuperPropertyUsage();
884 }
885 }
886 ScopeType GetReceiverScopeType() const {
887 Scope* receiver_scope = scope()->GetReceiverScope();
888 if (receiver_scope->outer_scope()) return receiver_scope->scope_type();
889 return outermost_receiver_scope_type_;
871 } 890 }
872 LanguageMode language_mode() { return scope()->language_mode(); } 891 LanguageMode language_mode() { return scope()->language_mode(); }
873 void RaiseLanguageMode(LanguageMode mode) { 892 void RaiseLanguageMode(LanguageMode mode) {
874 LanguageMode old = scope()->language_mode(); 893 LanguageMode old = scope()->language_mode();
875 impl()->SetLanguageMode(scope(), old > mode ? old : mode); 894 impl()->SetLanguageMode(scope(), old > mode ? old : mode);
876 } 895 }
877 bool is_generator() const { return function_state_->is_generator(); } 896 bool is_generator() const { return function_state_->is_generator(); }
878 bool is_async_function() const { 897 bool is_async_function() const {
879 return function_state_->is_async_function(); 898 return function_state_->is_async_function();
880 } 899 }
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 ScopeState* scope_state_; // Scope stack. 1349 ScopeState* scope_state_; // Scope stack.
1331 FunctionState* function_state_; // Function state stack. 1350 FunctionState* function_state_; // Function state stack.
1332 v8::Extension* extension_; 1351 v8::Extension* extension_;
1333 FuncNameInferrer* fni_; 1352 FuncNameInferrer* fni_;
1334 AstValueFactory* ast_value_factory_; // Not owned. 1353 AstValueFactory* ast_value_factory_; // Not owned.
1335 typename Types::Factory ast_node_factory_; 1354 typename Types::Factory ast_node_factory_;
1336 ParserRecorder* log_; 1355 ParserRecorder* log_;
1337 Mode mode_; 1356 Mode mode_;
1338 bool parsing_module_; 1357 bool parsing_module_;
1339 uintptr_t stack_limit_; 1358 uintptr_t stack_limit_;
1359 FunctionKind outermost_receiver_function_kind_;
1360 ScopeType outermost_receiver_scope_type_;
1340 1361
1341 // Parser base's private field members. 1362 // Parser base's private field members.
1342 1363
1343 private: 1364 private:
1344 Zone* zone_; 1365 Zone* zone_;
1345 ExpressionClassifier* classifier_; 1366 ExpressionClassifier* classifier_;
1346 1367
1347 Scanner* scanner_; 1368 Scanner* scanner_;
1348 bool stack_overflow_; 1369 bool stack_overflow_;
1349 1370
(...skipping 1888 matching lines...) Expand 10 before | Expand all | Expand 10 after
3238 result = ParseMemberExpressionContinuation(result, is_async, CHECK_OK); 3259 result = ParseMemberExpressionContinuation(result, is_async, CHECK_OK);
3239 return result; 3260 return result;
3240 } 3261 }
3241 3262
3242 template <typename Impl> 3263 template <typename Impl>
3243 typename ParserBase<Impl>::ExpressionT ParserBase<Impl>::ParseSuperExpression( 3264 typename ParserBase<Impl>::ExpressionT ParserBase<Impl>::ParseSuperExpression(
3244 bool is_new, bool* ok) { 3265 bool is_new, bool* ok) {
3245 Expect(Token::SUPER, CHECK_OK); 3266 Expect(Token::SUPER, CHECK_OK);
3246 int pos = position(); 3267 int pos = position();
3247 3268
3248 DeclarationScope* scope = GetReceiverScope(); 3269 FunctionKind kind = GetReceiverScopeFunctionKind();
3249 FunctionKind kind = scope->function_kind();
3250 if (IsConciseMethod(kind) || IsAccessorFunction(kind) || 3270 if (IsConciseMethod(kind) || IsAccessorFunction(kind) ||
3251 IsClassConstructor(kind)) { 3271 IsClassConstructor(kind)) {
3252 if (peek() == Token::PERIOD || peek() == Token::LBRACK) { 3272 if (peek() == Token::PERIOD || peek() == Token::LBRACK) {
3253 scope->RecordSuperPropertyUsage(); 3273 RecordSuperPropertyUsage();
3254 return impl()->NewSuperPropertyReference(pos); 3274 return impl()->NewSuperPropertyReference(pos);
3255 } 3275 }
3256 // new super() is never allowed. 3276 // new super() is never allowed.
3257 // super() is only allowed in derived constructor 3277 // super() is only allowed in derived constructor
3258 if (!is_new && peek() == Token::LPAREN && IsSubclassConstructor(kind)) { 3278 if (!is_new && peek() == Token::LPAREN && IsSubclassConstructor(kind)) {
3259 // TODO(rossberg): This might not be the correct FunctionState for the 3279 // TODO(rossberg): This might not be the correct FunctionState for the
3260 // method here. 3280 // method here.
3261 return impl()->NewSuperCallReference(pos); 3281 return impl()->NewSuperCallReference(pos);
3262 } 3282 }
3263 } 3283 }
(...skipping 17 matching lines...) Expand all
3281 *ok = false; 3301 *ok = false;
3282 } 3302 }
3283 } 3303 }
3284 3304
3285 template <typename Impl> 3305 template <typename Impl>
3286 typename ParserBase<Impl>::ExpressionT 3306 typename ParserBase<Impl>::ExpressionT
3287 ParserBase<Impl>::ParseNewTargetExpression(bool* ok) { 3307 ParserBase<Impl>::ParseNewTargetExpression(bool* ok) {
3288 int pos = position(); 3308 int pos = position();
3289 ExpectMetaProperty(CStrVector("target"), "new.target", pos, CHECK_OK); 3309 ExpectMetaProperty(CStrVector("target"), "new.target", pos, CHECK_OK);
3290 3310
3291 if (!GetReceiverScope()->is_function_scope()) { 3311 if (GetReceiverScopeType() != FUNCTION_SCOPE) {
3292 impl()->ReportMessageAt(scanner()->location(), 3312 impl()->ReportMessageAt(scanner()->location(),
3293 MessageTemplate::kUnexpectedNewTarget); 3313 MessageTemplate::kUnexpectedNewTarget);
3294 *ok = false; 3314 *ok = false;
3295 return impl()->EmptyExpression(); 3315 return impl()->EmptyExpression();
3296 } 3316 }
3297 3317
3298 return impl()->NewTargetExpression(pos); 3318 return impl()->NewTargetExpression(pos);
3299 } 3319 }
3300 3320
3301 template <typename Impl> 3321 template <typename Impl>
(...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after
4436 has_seen_constructor_ = true; 4456 has_seen_constructor_ = true;
4437 return; 4457 return;
4438 } 4458 }
4439 } 4459 }
4440 4460
4441 4461
4442 } // namespace internal 4462 } // namespace internal
4443 } // namespace v8 4463 } // namespace v8
4444 4464
4445 #endif // V8_PARSING_PARSER_BASE_H 4465 #endif // V8_PARSING_PARSER_BASE_H
OLDNEW
« src/parsing/parser.h ('K') | « src/parsing/parser.cc ('k') | test/cctest/test-parsing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698