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

Side by Side Diff: src/parsing/parser.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_H_ 5 #ifndef V8_PARSING_PARSER_H_
6 #define V8_PARSING_PARSER_H_ 6 #define V8_PARSING_PARSER_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/parsing/parser-base.h" 10 #include "src/parsing/parser-base.h"
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 cached_parse_data_ = NULL; 175 cached_parse_data_ = NULL;
176 } 176 }
177 177
178 // Parses the source code represented by the compilation info and sets its 178 // Parses the source code represented by the compilation info and sets its
179 // function literal. Returns false (and deallocates any allocated AST 179 // function literal. Returns false (and deallocates any allocated AST
180 // nodes) if parsing failed. 180 // nodes) if parsing failed.
181 static bool ParseStatic(ParseInfo* info); 181 static bool ParseStatic(ParseInfo* info);
182 bool Parse(ParseInfo* info); 182 bool Parse(ParseInfo* info);
183 void ParseOnBackground(ParseInfo* info); 183 void ParseOnBackground(ParseInfo* info);
184 184
185 void DeserializeScopeChain(ParseInfo* info, Handle<Context> context, 185 // Inspect the scope chain prior to parsing in which the script is going to
186 Scope::DeserializationMode deserialization_mode); 186 // be executed. If the script is a top-level script, or the scope chain
187 // consists of only a native context, scope_info should be an empty handle.
188 //
189 // This only stores information in the parser about the general shape of the
190 // scope chain, such as the type of the declaration context it contains, but
191 // doesn't yet deserialize the scope chain.
192 void InspectScopeChain(ParseInfo* info, MaybeHandle<ScopeInfo> scope_info);
adamk 2016/09/12 16:57:47 "Inspect" in this function name isn't helpful at a
jochen (gone - plz use gerrit) 2016/09/12 19:00:43 done
187 193
188 // Handle errors detected during parsing, move statistics to Isolate, 194 // Handle errors detected during parsing, move statistics to Isolate,
189 // internalize strings (move them to the heap). 195 // internalize strings (move them to the heap).
190 void Internalize(Isolate* isolate, Handle<Script> script, bool error); 196 void Internalize(Isolate* isolate, Handle<Script> script, bool error);
191 void HandleSourceURLComments(Isolate* isolate, Handle<Script> script); 197 void HandleSourceURLComments(Isolate* isolate, Handle<Script> script);
192 198
193 private: 199 private:
194 friend class ParserBase<Parser>; 200 friend class ParserBase<Parser>;
195 friend class v8::internal::ExpressionClassifier<ParserTypes<Parser>>; 201 friend class v8::internal::ExpressionClassifier<ParserTypes<Parser>>;
196 202
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 // 447 //
442 // The var declarations are hoisted to the function scope, but originate from 448 // The var declarations are hoisted to the function scope, but originate from
443 // a scope where the name has also been let bound or the var declaration is 449 // a scope where the name has also been let bound or the var declaration is
444 // hoisted over such a scope. 450 // hoisted over such a scope.
445 void CheckConflictingVarDeclarations(Scope* scope, bool* ok); 451 void CheckConflictingVarDeclarations(Scope* scope, bool* ok);
446 452
447 // Insert initializer statements for var-bindings shadowing parameter bindings 453 // Insert initializer statements for var-bindings shadowing parameter bindings
448 // from a non-simple parameter list. 454 // from a non-simple parameter list.
449 void InsertShadowingVarBindingInitializers(Block* block); 455 void InsertShadowingVarBindingInitializers(Block* block);
450 456
451 // Implement sloppy block-scoped functions, ES2015 Annex B 3.3
452 void InsertSloppyBlockFunctionVarBindings(DeclarationScope* scope,
453 bool* ok);
454
455 VariableProxy* NewUnresolved(const AstRawString* name, int begin_pos, 457 VariableProxy* NewUnresolved(const AstRawString* name, int begin_pos,
456 int end_pos = kNoSourcePosition, 458 int end_pos = kNoSourcePosition,
457 VariableKind kind = NORMAL_VARIABLE); 459 VariableKind kind = NORMAL_VARIABLE);
458 VariableProxy* NewUnresolved(const AstRawString* name); 460 VariableProxy* NewUnresolved(const AstRawString* name);
459 Variable* Declare(Declaration* declaration, 461 Variable* Declare(Declaration* declaration,
460 DeclarationDescriptor::Kind declaration_kind, 462 DeclarationDescriptor::Kind declaration_kind,
461 VariableMode mode, InitializationFlag init, bool* ok, 463 VariableMode mode, InitializationFlag init, bool* ok,
462 Scope* declaration_scope = nullptr); 464 Scope* declaration_scope = nullptr);
463 Declaration* DeclareVariable(const AstRawString* name, VariableMode mode, 465 Declaration* DeclareVariable(const AstRawString* name, VariableMode mode,
464 int pos, bool* ok); 466 int pos, bool* ok);
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 } 1035 }
1034 1036
1035 V8_INLINE void CountUsage(v8::Isolate::UseCounterFeature feature) { 1037 V8_INLINE void CountUsage(v8::Isolate::UseCounterFeature feature) {
1036 ++use_counts_[feature]; 1038 ++use_counts_[feature];
1037 } 1039 }
1038 1040
1039 // Parser's private field members. 1041 // Parser's private field members.
1040 1042
1041 Scanner scanner_; 1043 Scanner scanner_;
1042 PreParser* reusable_preparser_; 1044 PreParser* reusable_preparser_;
1043 Scope* original_scope_; // for ES5 function declarations in sloppy eval
1044
1045 friend class ParserTarget; 1045 friend class ParserTarget;
1046 friend class ParserTargetScope; 1046 friend class ParserTargetScope;
1047 ParserTarget* target_stack_; // for break, continue statements 1047 ParserTarget* target_stack_; // for break, continue statements
1048
1049 ScriptCompiler::CompileOptions compile_options_; 1048 ScriptCompiler::CompileOptions compile_options_;
1050 ParseData* cached_parse_data_; 1049 ParseData* cached_parse_data_;
1051 1050
1052 PendingCompilationErrorHandler pending_error_handler_; 1051 PendingCompilationErrorHandler pending_error_handler_;
1053 1052
1054 // Other information which will be stored in Parser and moved to Isolate after 1053 // Other information which will be stored in Parser and moved to Isolate after
1055 // parsing. 1054 // parsing.
1056 int use_counts_[v8::Isolate::kUseCounterFeatureCount]; 1055 int use_counts_[v8::Isolate::kUseCounterFeatureCount];
1057 int total_preparse_skipped_; 1056 int total_preparse_skipped_;
1058 HistogramTimer* pre_parse_timer_; 1057 HistogramTimer* pre_parse_timer_;
1059 1058
1060 bool parsing_on_main_thread_; 1059 bool parsing_on_main_thread_;
1061 1060
1062 #ifdef DEBUG 1061 #ifdef DEBUG
1063 void Print(AstNode* node); 1062 void Print(AstNode* node);
1064 #endif // DEBUG 1063 #endif // DEBUG
1065 }; 1064 };
1066 1065
1067 } // namespace internal 1066 } // namespace internal
1068 } // namespace v8 1067 } // namespace v8
1069 1068
1070 #endif // V8_PARSING_PARSER_H_ 1069 #endif // V8_PARSING_PARSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698