// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_PARSING_PARSE_INFO_H_ #define V8_PARSING_PARSE_INFO_H_ #include #include #include #include "include/v8.h" #include "src/base/bit-field.h" #include "src/base/export-template.h" #include "src/base/logging.h" #include "src/common/globals.h" #include "src/handles/handles.h" #include "src/objects/function-kind.h" #include "src/objects/function-syntax-kind.h" #include "src/objects/script.h" #include "src/parsing/pending-compilation-error-handler.h" #include "src/parsing/preparse-data.h" namespace v8 { class Extension; namespace internal { class AccountingAllocator; class AstRawString; class AstStringConstants; class AstValueFactory; class CompilerDispatcher; class DeclarationScope; class FunctionLiteral; class RuntimeCallStats; class Logger; class SourceRangeMap; class Utf16CharacterStream; class Zone; // The flags for a parse + unoptimized compile operation. #define FLAG_FIELDS(V, _) \ V(is_toplevel, bool, 1, _) \ V(is_eager, bool, 1, _) \ V(is_eval, bool, 1, _) \ V(outer_language_mode, LanguageMode, 1, _) \ V(parse_restriction, ParseRestriction, 1, _) \ V(is_module, bool, 1, _) \ V(allow_lazy_parsing, bool, 1, _) \ V(is_lazy_compile, bool, 1, _) \ V(collect_type_profile, bool, 1, _) \ V(coverage_enabled, bool, 1, _) \ V(block_coverage_enabled, bool, 1, _) \ V(is_asm_wasm_broken, bool, 1, _) \ V(class_scope_has_private_brand, bool, 1, _) \ V(requires_instance_members_initializer, bool, 1, _) \ V(has_static_private_methods_or_accessors, bool, 1, _) \ V(might_always_opt, bool, 1, _) \ V(allow_natives_syntax, bool, 1, _) \ V(allow_lazy_compile, bool, 1, _) \ V(allow_harmony_private_methods, bool, 1, _) \ V(is_oneshot_iife, bool, 1, _) \ V(collect_source_positions, bool, 1, _) \ V(allow_harmony_top_level_await, bool, 1, _) \ V(is_repl_mode, bool, 1, _) \ V(allow_harmony_logical_assignment, bool, 1, _) class V8_EXPORT_PRIVATE UnoptimizedCompileFlags { public: // Set-up flags for a toplevel compilation. static UnoptimizedCompileFlags ForToplevelCompile(Isolate* isolate, bool is_user_javascript, LanguageMode language_mode, REPLMode repl_mode); // Set-up flags for a compiling a particular function (either a lazy compile // or a recompile). static UnoptimizedCompileFlags ForFunctionCompile(Isolate* isolate, SharedFunctionInfo shared); // Set-up flags for a full compilation of a given script. static UnoptimizedCompileFlags ForScriptCompile(Isolate* isolate, Script script); // Set-up flags for a parallel toplevel function compilation, based on the // flags of an existing toplevel compilation. static UnoptimizedCompileFlags ForToplevelFunction( const UnoptimizedCompileFlags toplevel_flags, const FunctionLiteral* literal); // Create flags for a test. static UnoptimizedCompileFlags ForTest(Isolate* isolate); #define FLAG_GET_SET(NAME, TYPE, SIZE, _) \ TYPE NAME() const { return BitFields::NAME::decode(flags_); } \ UnoptimizedCompileFlags& set_##NAME(TYPE value) { \ flags_ = BitFields::NAME::update(flags_, value); \ return *this; \ } FLAG_FIELDS(FLAG_GET_SET, _) int script_id() const { return script_id_; } UnoptimizedCompileFlags& set_script_id(int value) { script_id_ = value; return *this; } FunctionKind function_kind() const { return function_kind_; } UnoptimizedCompileFlags& set_function_kind(FunctionKind value) { function_kind_ = value; return *this; } FunctionSyntaxKind function_syntax_kind() const { return function_syntax_kind_; } UnoptimizedCompileFlags& set_function_syntax_kind(FunctionSyntaxKind value) { function_syntax_kind_ = value; return *this; } private: struct BitFields { DEFINE_BIT_FIELDS(FLAG_FIELDS) }; UnoptimizedCompileFlags(Isolate* isolate, int script_id); // Set function info flags based on those in either FunctionLiteral or // SharedFunctionInfo |function| template void SetFlagsFromFunction(T function); void SetFlagsForToplevelCompile(bool is_collecting_type_profile, bool is_user_javascript, LanguageMode language_mode, REPLMode repl_mode); void SetFlagsForFunctionFromScript(Script script); uint32_t flags_; int script_id_; FunctionKind function_kind_; FunctionSyntaxKind function_syntax_kind_; }; #undef FLAG_FIELDS class ParseInfo; // The mutable state for a parse + unoptimized compile operation. class V8_EXPORT_PRIVATE UnoptimizedCompileState { public: explicit UnoptimizedCompileState(Isolate*); UnoptimizedCompileState(const UnoptimizedCompileState& other) V8_NOEXCEPT; class ParallelTasks { public: explicit ParallelTasks(CompilerDispatcher* compiler_dispatcher) : dispatcher_(compiler_dispatcher) { DCHECK_NOT_NULL(dispatcher_); } void Enqueue(ParseInfo* outer_parse_info, const AstRawString* function_name, FunctionLiteral* literal); using EnqueuedJobsIterator = std::forward_list>::iterator; EnqueuedJobsIterator begin() { return enqueued_jobs_.begin(); } EnqueuedJobsIterator end() { return enqueued_jobs_.end(); } CompilerDispatcher* dispatcher() { return dispatcher_; } private: CompilerDispatcher* dispatcher_; std::forward_list> enqueued_jobs_; }; uint64_t hash_seed() const { return hash_seed_; } AccountingAllocator* allocator() const { return allocator_; } const AstStringConstants* ast_string_constants() const { return ast_string_constants_; } Logger* logger() const { return logger_; } PendingCompilationErrorHandler* pending_error_handler() { return &pending_error_handler_; } const PendingCompilationErrorHandler* pending_error_handler() const { return &pending_error_handler_; } ParallelTasks* parallel_tasks() const { return parallel_tasks_.get(); } private: uint64_t hash_seed_; AccountingAllocator* allocator_; const AstStringConstants* ast_string_constants_; PendingCompilationErrorHandler pending_error_handler_; Logger* logger_; std::unique_ptr parallel_tasks_; }; // A container for the inputs, configuration options, and outputs of parsing. class V8_EXPORT_PRIVATE ParseInfo { public: ParseInfo(Isolate* isolate, const UnoptimizedCompileFlags flags, UnoptimizedCompileState* state); // Creates a new parse info based on parent top-level |outer_parse_info| for // function |literal|. static std::unique_ptr ForToplevelFunction( const UnoptimizedCompileFlags flags, UnoptimizedCompileState* compile_state, const FunctionLiteral* literal, const AstRawString* function_name); ~ParseInfo(); template EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE) Handle