[v22.x] vm: sync-ify SourceTextModule linkage #60152
Open
+729
−129
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
src: clear all linked module caches once instantiated
There are two phases in module linking: link, and instantiate. These
two operations are required to be separated to allow cyclic
dependencies.
v8::Module::InstantiateModule
is only required to be invoked on theroot module. The global references created by
ModuleWrap::Link
areonly cleared at
ModuleWrap::Instantiate
. So the global referencescreated for depended modules are usually not cleared because
ModuleWrap::Instantiate
is not invoked for each of depended modules,and caused memory leak.
The change references the linked modules in an object internal slot.
This is not an issue for Node.js ESM support as these modules can not be
off-loaded. However, this could be outstanding for
vm.Module
.PR-URL: #59117
Fixes: #50113
Reviewed-By: Joyee Cheung [email protected]
Reviewed-By: Matteo Collina [email protected]
module: allow overriding linked requests for a ModuleWrap
This allows overriding linked requests for a
ModuleWrap
. ThestatusOverride
invm.SourceTextModule
could callmoduleWrap.link
a second time when
statusOverride
oflinking
is set to undefined.Overriding of linked requests should be no harm but better to be
avoided. However, this will require a follow-up fix on
statusOverride
in
vm.SourceTextModule
.PR-URL: #59527
Fixes: #59480
Reviewed-By: Joyee Cheung [email protected]
Reviewed-By: Marco Ippolito [email protected]
vm: sync-ify SourceTextModule linkage
Split
module.link(linker)
into two synchronous stepsourceTextModule.linkRequests()
andsourceTextModule.instantiate()
. This allows creating vm modules andresolving the dependencies in a complete synchronous procedure.
This also makes
syntheticModule.link()
redundant. The link step for aSyntheticModule is no-op and is already taken care in the constructor
by initializing the binding slots with the given export names.
PR-URL: #59000
Refs: #37648
Reviewed-By: Joyee Cheung [email protected]