OLD | NEW |
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_PARSER_H_ | 5 #ifndef V8_PARSER_H_ |
6 #define V8_PARSER_H_ | 6 #define V8_PARSER_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/ast.h" | 9 #include "src/ast.h" |
10 #include "src/compiler.h" // For CachedDataMode | 10 #include "src/compiler.h" // For CachedDataMode |
11 #include "src/pending-compilation-error-handler.h" | 11 #include "src/pending-compilation-error-handler.h" |
12 #include "src/preparse-data.h" | 12 #include "src/preparse-data.h" |
13 #include "src/preparse-data-format.h" | 13 #include "src/preparse-data-format.h" |
14 #include "src/preparser.h" | 14 #include "src/preparser.h" |
15 #include "src/scopes.h" | 15 #include "src/scopes.h" |
16 | 16 |
17 namespace v8 { | 17 namespace v8 { |
18 class ScriptCompiler; | 18 class ScriptCompiler; |
19 | 19 |
20 namespace internal { | 20 namespace internal { |
21 | 21 |
22 class CompilationInfo; | |
23 class ParserLog; | 22 class ParserLog; |
24 class PositionStack; | 23 class PositionStack; |
25 class Target; | 24 class Target; |
26 | 25 |
| 26 // TODO(titzer): move this to preparse-data.h? |
| 27 class ScriptData { |
| 28 public: |
| 29 ScriptData(const byte* data, int length); |
| 30 ~ScriptData() { |
| 31 if (owns_data_) DeleteArray(data_); |
| 32 } |
| 33 |
| 34 const byte* data() const { return data_; } |
| 35 int length() const { return length_; } |
| 36 bool rejected() const { return rejected_; } |
| 37 |
| 38 void Reject() { rejected_ = true; } |
| 39 |
| 40 void AcquireDataOwnership() { |
| 41 DCHECK(!owns_data_); |
| 42 owns_data_ = true; |
| 43 } |
| 44 |
| 45 void ReleaseDataOwnership() { |
| 46 DCHECK(owns_data_); |
| 47 owns_data_ = false; |
| 48 } |
| 49 |
| 50 private: |
| 51 bool owns_data_ : 1; |
| 52 bool rejected_ : 1; |
| 53 const byte* data_; |
| 54 int length_; |
| 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(ScriptData); |
| 57 }; |
| 58 |
| 59 // Collects the data necessary to parse a function as well as the outcome |
| 60 // of parsing, which includes an AST. |
| 61 class ParseInfo { |
| 62 public: |
| 63 explicit ParseInfo(Zone* zone) { |
| 64 memset(this, 0, sizeof(ParseInfo)); |
| 65 zone_ = zone; |
| 66 } |
| 67 |
| 68 ~ParseInfo() { |
| 69 if (ast_value_factory_owned()) { |
| 70 delete ast_value_factory_; |
| 71 set_ast_value_factory_owned(false); |
| 72 } |
| 73 ast_value_factory_ = nullptr; |
| 74 } |
| 75 |
| 76 ParseInfo* InitializeFromJSFunction(Handle<JSFunction> function); |
| 77 ParseInfo* InitializeFromSharedFunctionInfo( |
| 78 Handle<SharedFunctionInfo> shared); |
| 79 ParseInfo* InitializeFromScript(Handle<Script> script); |
| 80 |
| 81 Zone* zone() { return zone_; } |
| 82 |
| 83 // Convenience accessor methods for flags. |
| 84 #define FLAG_ACCESSOR(flag, getter, setter) \ |
| 85 bool getter() const { return GetFlag(flag); } \ |
| 86 void setter() { SetFlag(flag); } \ |
| 87 void setter(bool val) { SetFlag(flag, val); } |
| 88 |
| 89 FLAG_ACCESSOR(kToplevel, is_toplevel, set_toplevel) |
| 90 FLAG_ACCESSOR(kLazy, is_lazy, set_lazy) |
| 91 FLAG_ACCESSOR(kEval, is_eval, set_eval) |
| 92 FLAG_ACCESSOR(kGlobal, is_global, set_global) |
| 93 FLAG_ACCESSOR(kStrictMode, is_strict_mode, set_strict_mode) |
| 94 FLAG_ACCESSOR(kStrongMode, is_strong_mode, set_strong_mode) |
| 95 FLAG_ACCESSOR(kNative, is_native, set_native) |
| 96 FLAG_ACCESSOR(kModule, is_module, set_module) |
| 97 FLAG_ACCESSOR(kAllowLazyParsing, allow_lazy_parsing, set_allow_lazy_parsing) |
| 98 FLAG_ACCESSOR(kThisHasUses, this_has_uses, set_this_has_uses) |
| 99 FLAG_ACCESSOR(kAstValueFactoryOwned, ast_value_factory_owned, |
| 100 set_ast_value_factory_owned) |
| 101 |
| 102 #undef FLAG_ACCESSOR |
| 103 |
| 104 void set_parse_restriction(ParseRestriction restriction) { |
| 105 SetFlag(kParseRestriction, restriction != NO_PARSE_RESTRICTION); |
| 106 } |
| 107 |
| 108 ParseRestriction parse_restriction() const { |
| 109 return GetFlag(kParseRestriction) ? ONLY_SINGLE_FUNCTION_LITERAL |
| 110 : NO_PARSE_RESTRICTION; |
| 111 } |
| 112 |
| 113 ScriptCompiler::ExternalSourceStream* source_stream() { |
| 114 return source_stream_; |
| 115 } |
| 116 void set_source_stream(ScriptCompiler::ExternalSourceStream* source_stream) { |
| 117 source_stream_ = source_stream; |
| 118 } |
| 119 |
| 120 ScriptCompiler::StreamedSource::Encoding source_stream_encoding() { |
| 121 return source_stream_encoding_; |
| 122 } |
| 123 void set_source_stream_encoding( |
| 124 ScriptCompiler::StreamedSource::Encoding source_stream_encoding) { |
| 125 source_stream_encoding_ = source_stream_encoding; |
| 126 } |
| 127 |
| 128 v8::Extension* extension() { return extension_; } |
| 129 void set_extension(v8::Extension* extension) { extension_ = extension; } |
| 130 |
| 131 ScriptData** cached_data() { return cached_data_; } |
| 132 void set_cached_data(ScriptData** cached_data) { cached_data_ = cached_data; } |
| 133 |
| 134 ScriptCompiler::CompileOptions compile_options() { return compile_options_; } |
| 135 void set_compile_options(ScriptCompiler::CompileOptions compile_options) { |
| 136 compile_options_ = compile_options; |
| 137 } |
| 138 |
| 139 Scope* script_scope() { return script_scope_; } |
| 140 void set_script_scope(Scope* script_scope) { script_scope_ = script_scope; } |
| 141 |
| 142 AstValueFactory* ast_value_factory() { return ast_value_factory_; } |
| 143 void set_ast_value_factory(AstValueFactory* ast_value_factory) { |
| 144 ast_value_factory_ = ast_value_factory; |
| 145 } |
| 146 |
| 147 FunctionLiteral* function() { // TODO(titzer): temporary name adapter |
| 148 return literal_; |
| 149 } |
| 150 FunctionLiteral* literal() { return literal_; } |
| 151 void set_literal(FunctionLiteral* literal) { literal_ = literal; } |
| 152 |
| 153 Scope* scope() { return scope_; } |
| 154 void set_scope(Scope* scope) { scope_ = scope; } |
| 155 |
| 156 UnicodeCache* unicode_cache() { return unicode_cache_; } |
| 157 void set_unicode_cache(UnicodeCache* unicode_cache) { |
| 158 unicode_cache_ = unicode_cache; |
| 159 } |
| 160 |
| 161 uintptr_t stack_limit() { return stack_limit_; } |
| 162 void set_stack_limit(uintptr_t stack_limit) { stack_limit_ = stack_limit; } |
| 163 |
| 164 uint32_t hash_seed() { return hash_seed_; } |
| 165 void set_hash_seed(uint32_t hash_seed) { hash_seed_ = hash_seed; } |
| 166 |
| 167 //-------------------------------------------------------------------------- |
| 168 // TODO(titzer): these should not be part of ParseInfo. |
| 169 //-------------------------------------------------------------------------- |
| 170 Isolate* isolate() { return isolate_; } |
| 171 Handle<JSFunction> closure() { return closure_; } |
| 172 Handle<SharedFunctionInfo> shared_info() { return shared_; } |
| 173 Handle<Script> script() { return script_; } |
| 174 Handle<Context> context() { return context_; } |
| 175 void clear_script() { script_ = Handle<Script>::null(); } |
| 176 void set_context(Handle<Context> context) { context_ = context; } |
| 177 void set_script(Handle<Script> script) { script_ = script; } |
| 178 //-------------------------------------------------------------------------- |
| 179 |
| 180 LanguageMode language_mode() { |
| 181 return construct_language_mode(is_strict_mode(), is_strong_mode()); |
| 182 } |
| 183 void set_language_mode(LanguageMode language_mode) { |
| 184 STATIC_ASSERT(LANGUAGE_END == 3); |
| 185 set_strict_mode(language_mode & STRICT_BIT); |
| 186 set_strong_mode(language_mode & STRONG_BIT); |
| 187 } |
| 188 |
| 189 void ReopenHandlesInNewHandleScope() { |
| 190 closure_ = Handle<JSFunction>(*closure_); |
| 191 shared_ = Handle<SharedFunctionInfo>(*shared_); |
| 192 script_ = Handle<Script>(*script_); |
| 193 context_ = Handle<Context>(*context_); |
| 194 } |
| 195 |
| 196 private: |
| 197 // Various configuration flags for parsing. |
| 198 enum Flag { |
| 199 // ---------- Input flags --------------------------- |
| 200 kToplevel = 1 << 0, |
| 201 kLazy = 1 << 1, |
| 202 kEval = 1 << 2, |
| 203 kGlobal = 1 << 3, |
| 204 kStrictMode = 1 << 4, |
| 205 kStrongMode = 1 << 5, |
| 206 kNative = 1 << 6, |
| 207 kParseRestriction = 1 << 7, |
| 208 kModule = 1 << 8, |
| 209 kAllowLazyParsing = 1 << 9, |
| 210 // ---------- Output flags -------------------------- |
| 211 kThisHasUses = 1 << 10, |
| 212 kAstValueFactoryOwned = 1 << 11 |
| 213 }; |
| 214 |
| 215 //------------- Inputs to parsing and scope analysis ----------------------- |
| 216 Zone* zone_; |
| 217 unsigned flags_; |
| 218 ScriptCompiler::ExternalSourceStream* source_stream_; |
| 219 ScriptCompiler::StreamedSource::Encoding source_stream_encoding_; |
| 220 v8::Extension* extension_; |
| 221 ScriptCompiler::CompileOptions compile_options_; |
| 222 Scope* script_scope_; |
| 223 UnicodeCache* unicode_cache_; |
| 224 uintptr_t stack_limit_; |
| 225 uint32_t hash_seed_; |
| 226 |
| 227 // TODO(titzer): Move handles and isolate out of ParseInfo. |
| 228 Isolate* isolate_; |
| 229 Handle<JSFunction> closure_; |
| 230 Handle<SharedFunctionInfo> shared_; |
| 231 Handle<Script> script_; |
| 232 Handle<Context> context_; |
| 233 |
| 234 //----------- Inputs+Outputs of parsing and scope analysis ----------------- |
| 235 ScriptData** cached_data_; // used if available, populated if requested. |
| 236 AstValueFactory* ast_value_factory_; // used if available, otherwise new. |
| 237 |
| 238 //----------- Outputs of parsing and scope analysis ------------------------ |
| 239 FunctionLiteral* literal_; // produced by full parser. |
| 240 Scope* scope_; // produced by scope analysis. |
| 241 |
| 242 void SetFlag(Flag f) { flags_ |= f; } |
| 243 void SetFlag(Flag f, bool v) { flags_ = v ? flags_ | f : flags_ & ~f; } |
| 244 bool GetFlag(Flag f) const { return (flags_ & f) != 0; } |
| 245 |
| 246 void set_shared_info(Handle<SharedFunctionInfo> shared) { shared_ = shared; } |
| 247 void set_closure(Handle<JSFunction> closure) { closure_ = closure; } |
| 248 }; |
27 | 249 |
28 class FunctionEntry BASE_EMBEDDED { | 250 class FunctionEntry BASE_EMBEDDED { |
29 public: | 251 public: |
30 enum { | 252 enum { |
31 kStartPositionIndex, | 253 kStartPositionIndex, |
32 kEndPositionIndex, | 254 kEndPositionIndex, |
33 kLiteralCountIndex, | 255 kLiteralCountIndex, |
34 kPropertyCountIndex, | 256 kPropertyCountIndex, |
35 kLanguageModeIndex, | 257 kLanguageModeIndex, |
36 kUsesSuperPropertyIndex, | 258 kUsesSuperPropertyIndex, |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 return tag != NULL; | 851 return tag != NULL; |
630 } | 852 } |
631 | 853 |
632 private: | 854 private: |
633 Parser* parser_; | 855 Parser* parser_; |
634 }; | 856 }; |
635 | 857 |
636 | 858 |
637 class Parser : public ParserBase<ParserTraits> { | 859 class Parser : public ParserBase<ParserTraits> { |
638 public: | 860 public: |
639 Parser(CompilationInfo* info, uintptr_t stack_limit, uint32_t hash_seed, | 861 explicit Parser(ParseInfo* info); |
640 UnicodeCache* unicode_cache); | |
641 ~Parser() { | 862 ~Parser() { |
642 delete reusable_preparser_; | 863 delete reusable_preparser_; |
643 reusable_preparser_ = NULL; | 864 reusable_preparser_ = NULL; |
644 delete cached_parse_data_; | 865 delete cached_parse_data_; |
645 cached_parse_data_ = NULL; | 866 cached_parse_data_ = NULL; |
646 } | 867 } |
647 | 868 |
648 // Parses the source code represented by the compilation info and sets its | 869 // Parses the source code represented by the compilation info and sets its |
649 // function literal. Returns false (and deallocates any allocated AST | 870 // function literal. Returns false (and deallocates any allocated AST |
650 // nodes) if parsing failed. | 871 // nodes) if parsing failed. |
651 static bool ParseStatic(CompilationInfo* info, bool allow_lazy = false); | 872 static bool ParseStatic(ParseInfo* info, bool allow_lazy = false); |
652 bool Parse(CompilationInfo* info); | 873 bool Parse(ParseInfo* info); |
653 void ParseOnBackground(CompilationInfo* info); | 874 void ParseOnBackground(ParseInfo* info); |
654 | 875 |
655 // Handle errors detected during parsing, move statistics to Isolate, | 876 // Handle errors detected during parsing, move statistics to Isolate, |
656 // internalize strings (move them to the heap). | 877 // internalize strings (move them to the heap). |
657 void Internalize(Isolate* isolate, Handle<Script> script, bool error); | 878 void Internalize(Isolate* isolate, Handle<Script> script, bool error); |
658 void HandleSourceURLComments(Isolate* isolate, Handle<Script> script); | 879 void HandleSourceURLComments(Isolate* isolate, Handle<Script> script); |
659 | 880 |
660 private: | 881 private: |
661 friend class ParserTraits; | 882 friend class ParserTraits; |
662 | 883 |
663 // Limit the allowed number of local variables in a function. The hard limit | 884 // Limit the allowed number of local variables in a function. The hard limit |
664 // is that offsets computed by FullCodeGenerator::StackOperand and similar | 885 // is that offsets computed by FullCodeGenerator::StackOperand and similar |
665 // functions are ints, and they should not overflow. In addition, accessing | 886 // functions are ints, and they should not overflow. In addition, accessing |
666 // local variables creates user-controlled constants in the generated code, | 887 // local variables creates user-controlled constants in the generated code, |
667 // and we don't want too much user-controlled memory inside the code (this was | 888 // and we don't want too much user-controlled memory inside the code (this was |
668 // the reason why this limit was introduced in the first place; see | 889 // the reason why this limit was introduced in the first place; see |
669 // https://codereview.chromium.org/7003030/ ). | 890 // https://codereview.chromium.org/7003030/ ). |
670 static const int kMaxNumFunctionLocals = 4194303; // 2^22-1 | 891 static const int kMaxNumFunctionLocals = 4194303; // 2^22-1 |
671 | 892 |
672 // Returns NULL if parsing failed. | 893 // Returns NULL if parsing failed. |
673 FunctionLiteral* ParseProgram(Isolate* isolate, CompilationInfo* info); | 894 FunctionLiteral* ParseProgram(Isolate* isolate, ParseInfo* info); |
674 | 895 |
675 FunctionLiteral* ParseLazy(Isolate* isolate, CompilationInfo* info); | 896 FunctionLiteral* ParseLazy(Isolate* isolate, ParseInfo* info); |
676 FunctionLiteral* ParseLazy(Isolate* isolate, CompilationInfo* info, | 897 FunctionLiteral* ParseLazy(Isolate* isolate, ParseInfo* info, |
677 Utf16CharacterStream* source); | 898 Utf16CharacterStream* source); |
678 | 899 |
679 // Called by ParseProgram after setting up the scanner. | 900 // Called by ParseProgram after setting up the scanner. |
680 FunctionLiteral* DoParseProgram(CompilationInfo* info, Scope** scope, | 901 FunctionLiteral* DoParseProgram(ParseInfo* info, Scope** scope, |
681 Scope** ad_hoc_eval_scope); | 902 Scope** ad_hoc_eval_scope); |
682 | 903 |
683 void SetCachedData(CompilationInfo* info); | 904 void SetCachedData(ParseInfo* info); |
684 | 905 |
685 bool inside_with() const { return scope_->inside_with(); } | 906 bool inside_with() const { return scope_->inside_with(); } |
686 ScriptCompiler::CompileOptions compile_options() const { | 907 ScriptCompiler::CompileOptions compile_options() const { |
687 return compile_options_; | 908 return compile_options_; |
688 } | 909 } |
689 bool consume_cached_parse_data() const { | 910 bool consume_cached_parse_data() const { |
690 return compile_options_ == ScriptCompiler::kConsumeParserCache && | 911 return compile_options_ == ScriptCompiler::kConsumeParserCache && |
691 cached_parse_data_ != NULL; | 912 cached_parse_data_ != NULL; |
692 } | 913 } |
693 bool produce_cached_parse_data() const { | 914 bool produce_cached_parse_data() const { |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
941 } | 1162 } |
942 | 1163 |
943 | 1164 |
944 Expression* ParserTraits::CloseTemplateLiteral(TemplateLiteralState* state, | 1165 Expression* ParserTraits::CloseTemplateLiteral(TemplateLiteralState* state, |
945 int start, Expression* tag) { | 1166 int start, Expression* tag) { |
946 return parser_->CloseTemplateLiteral(state, start, tag); | 1167 return parser_->CloseTemplateLiteral(state, start, tag); |
947 } | 1168 } |
948 } } // namespace v8::internal | 1169 } } // namespace v8::internal |
949 | 1170 |
950 #endif // V8_PARSER_H_ | 1171 #endif // V8_PARSER_H_ |
OLD | NEW |