// Copyright 2019 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_OBJECTS_SOURCE_TEXT_MODULE_H_ #define V8_OBJECTS_SOURCE_TEXT_MODULE_H_ #include "src/objects/module.h" #include "src/objects/promise.h" #include "torque-generated/bit-fields.h" // Has to be the last include (doesn't have include guards): #include "src/objects/object-macros.h" namespace v8 { namespace internal { class UnorderedModuleSet; #include "torque-generated/src/objects/source-text-module-tq.inc" // The runtime representation of an ECMAScript Source Text Module Record. // https://tc39.github.io/ecma262/#sec-source-text-module-records class SourceTextModule : public TorqueGeneratedSourceTextModule { public: NEVER_READ_ONLY_SPACE DECL_VERIFIER(SourceTextModule) DECL_PRINTER(SourceTextModule) // The shared function info in case {status} is not kEvaluating, kEvaluated or // kErrored. SharedFunctionInfo GetSharedFunctionInfo() const; // Whether or not this module is an async module. Set during module creation // and does not change afterwards. DECL_BOOLEAN_ACCESSORS(async) // Get the SourceTextModuleInfo associated with the code. inline SourceTextModuleInfo info() const; Cell GetCell(int cell_index); static Handle LoadVariable(Isolate* isolate, Handle module, int cell_index); static void StoreVariable(Handle module, int cell_index, Handle value); static int ImportIndex(int cell_index); static int ExportIndex(int cell_index); // Used by builtins to fulfill or reject the promise associated // with async SourceTextModules. static void AsyncModuleExecutionFulfilled(Isolate* isolate, Handle module); static void AsyncModuleExecutionRejected(Isolate* isolate, Handle module, Handle exception); // Get the namespace object for [module_request] of [module]. If it doesn't // exist yet, it is created. static Handle GetModuleNamespace( Isolate* isolate, Handle module, int module_request); // Get the import.meta object of [module]. If it doesn't exist yet, it is // created and passed to the embedder callback for initialization. V8_EXPORT_PRIVATE static MaybeHandle GetImportMeta( Isolate* isolate, Handle module); using BodyDescriptor = SubclassBodyDescriptor>; private: friend class Factory; friend class Module; // Appends a tuple of module and generator to the async parent modules // ArrayList. inline static void AddAsyncParentModule(Isolate* isolate, Handle module, Handle parent); // Returns a SourceTextModule, the // ith parent in depth first traversal order of a given async child. inline Handle GetAsyncParentModule(Isolate* isolate, int index); // Returns the number of async parent modules for a given async child. inline int AsyncParentModuleCount(); inline bool HasPendingAsyncDependencies(); inline void IncrementPendingAsyncDependencies(); inline void DecrementPendingAsyncDependencies(); // Bits for flags. DEFINE_TORQUE_GENERATED_SOURCE_TEXT_MODULE_FLAGS() // async_evaluating, top_level_capability, pending_async_dependencies, and // async_parent_modules are used exclusively during evaluation of async // modules and the modules which depend on them. // // Whether or not this module is async and evaluating or currently evaluating // an async child. DECL_BOOLEAN_ACCESSORS(async_evaluating) // The top level promise capability of this module. Will only be defined // for cycle roots. DECL_ACCESSORS(top_level_capability, HeapObject) // The parent modules of a given async dependency, use async_parent_modules() // to retrieve the ArrayList representation. DECL_ACCESSORS(async_parent_modules, ArrayList) // Helpers for Instantiate and Evaluate. static void CreateExport(Isolate* isolate, Handle module, int cell_index, Handle names); static void CreateIndirectExport(Isolate* isolate, Handle module, Handle name, Handle entry); static V8_WARN_UNUSED_RESULT MaybeHandle ResolveExport( Isolate* isolate, Handle module, Handle module_specifier, Handle export_name, MessageLocation loc, bool must_resolve, ResolveSet* resolve_set); static V8_WARN_UNUSED_RESULT MaybeHandle ResolveImport( Isolate* isolate, Handle module, Handle name, int module_request_index, MessageLocation loc, bool must_resolve, ResolveSet* resolve_set); static V8_WARN_UNUSED_RESULT MaybeHandle ResolveExportUsingStarExports( Isolate* isolate, Handle module, Handle module_specifier, Handle export_name, MessageLocation loc, bool must_resolve, ResolveSet* resolve_set); static V8_WARN_UNUSED_RESULT bool PrepareInstantiate( Isolate* isolate, Handle module, v8::Local context, v8::Module::ResolveCallback callback); static V8_WARN_UNUSED_RESULT bool FinishInstantiate( Isolate* isolate, Handle module, ZoneForwardList>* stack, unsigned* dfs_index, Zone* zone); static V8_WARN_UNUSED_RESULT bool RunInitializationCode( Isolate* isolate, Handle module); static void FetchStarExports(Isolate* isolate, Handle module, Zone* zone, UnorderedModuleSet* visited); // Implementation of spec concrete method Evaluate. static V8_WARN_UNUSED_RESULT MaybeHandle EvaluateMaybeAsync( Isolate* isolate, Handle module); // Continued implementation of spec concrete method Evaluate. static V8_WARN_UNUSED_RESULT MaybeHandle Evaluate( Isolate* isolate, Handle module); // Implementation of spec abstract operation InnerModuleEvaluation. static V8_WARN_UNUSED_RESULT MaybeHandle InnerModuleEvaluation( Isolate* isolate, Handle module, ZoneForwardList>* stack, unsigned* dfs_index); static V8_WARN_UNUSED_RESULT bool MaybeTransitionComponent( Isolate* isolate, Handle module, ZoneForwardList>* stack, Status new_status); // Implementation of spec GetAsyncCycleRoot. static V8_WARN_UNUSED_RESULT Handle GetAsyncCycleRoot( Isolate* isolate, Handle module); // Implementation of spec ExecuteModule is broken up into // InnerExecuteAsyncModule for asynchronous modules and ExecuteModule // for synchronous modules. static V8_WARN_UNUSED_RESULT MaybeHandle InnerExecuteAsyncModule( Isolate* isolate, Handle module, Handle capability); static V8_WARN_UNUSED_RESULT MaybeHandle ExecuteModule( Isolate* isolate, Handle module); // Implementation of spec ExecuteAsyncModule. static void ExecuteAsyncModule(Isolate* isolate, Handle module); static void Reset(Isolate* isolate, Handle module); TQ_OBJECT_CONSTRUCTORS(SourceTextModule) }; // SourceTextModuleInfo is to SourceTextModuleDescriptor what ScopeInfo is to // Scope. class SourceTextModuleInfo : public FixedArray { public: DECL_CAST(SourceTextModuleInfo) template static Handle New(LocalIsolate* isolate, Zone* zone, SourceTextModuleDescriptor* descr); inline FixedArray module_requests() const; inline FixedArray special_exports() const; inline FixedArray regular_exports() const; inline FixedArray regular_imports() const; inline FixedArray namespace_imports() const; inline FixedArray module_request_positions() const; // Accessors for [regular_exports]. int RegularExportCount() const; String RegularExportLocalName(int i) const; int RegularExportCellIndex(int i) const; FixedArray RegularExportExportNames(int i) const; #ifdef DEBUG inline bool Equals(SourceTextModuleInfo other) const; #endif private: template friend class FactoryBase; friend class SourceTextModuleDescriptor; enum { kModuleRequestsIndex, kSpecialExportsIndex, kRegularExportsIndex, kNamespaceImportsIndex, kRegularImportsIndex, kModuleRequestPositionsIndex, kLength }; enum { kRegularExportLocalNameOffset, kRegularExportCellIndexOffset, kRegularExportExportNamesOffset, kRegularExportLength }; OBJECT_CONSTRUCTORS(SourceTextModuleInfo, FixedArray); }; class ModuleRequest : public TorqueGeneratedModuleRequest { public: NEVER_READ_ONLY_SPACE DECL_VERIFIER(ModuleRequest) template static Handle New(LocalIsolate* isolate, Handle specifier, Handle import_assertions); TQ_OBJECT_CONSTRUCTORS(ModuleRequest) }; class SourceTextModuleInfoEntry : public TorqueGeneratedSourceTextModuleInfoEntry { public: DECL_PRINTER(SourceTextModuleInfoEntry) DECL_VERIFIER(SourceTextModuleInfoEntry) template static Handle New( LocalIsolate* isolate, Handle export_name, Handle local_name, Handle import_name, int module_request, int cell_index, int beg_pos, int end_pos); TQ_OBJECT_CONSTRUCTORS(SourceTextModuleInfoEntry) }; } // namespace internal } // namespace v8 #include "src/objects/object-macros-undef.h" #endif // V8_OBJECTS_SOURCE_TEXT_MODULE_H_