-
Notifications
You must be signed in to change notification settings - Fork 30k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
worker: keep allocators for transferred SAB instances alive longer #29637
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,30 @@ class SABLifetimePartner : public BaseObject { | |
: BaseObject(env, obj), | ||
reference(std::move(r)) { | ||
MakeWeak(); | ||
env->AddCleanupHook(CleanupHook, static_cast<void*>(this)); | ||
} | ||
|
||
~SABLifetimePartner() { | ||
env()->RemoveCleanupHook(CleanupHook, static_cast<void*>(this)); | ||
} | ||
|
||
static void CleanupHook(void* data) { | ||
// There is another cleanup hook attached to this object because it is a | ||
// BaseObject. Cleanup hooks are triggered in reverse order of addition, | ||
// so if this object is destroyed through GC, the destructor removes all | ||
// hooks associated with this object, meaning that this cleanup hook | ||
// only runs at the end of the Environment’s lifetime. | ||
// In that case, V8 still knows about the SharedArrayBuffer and tries to | ||
// free it when the last Isolate with access to it is disposed; for that, | ||
// the ArrayBuffer::Allocator needs to be kept alive longer than this | ||
// object and longer than the Environment instance. | ||
// | ||
// This is a workaround for https://github.com/nodejs/node-v8/issues/115 | ||
// (introduced in V8 7.9) and we should be able to remove it once V8 | ||
// ArrayBuffer::Allocator refactoring/removal is complete. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shout out to long and helpful comments! |
||
SABLifetimePartner* self = static_cast<SABLifetimePartner*>(data); | ||
self->env()->AddArrayBufferAllocatorToKeepAliveUntilIsolateDispose( | ||
self->reference->allocator()); | ||
} | ||
|
||
SET_NO_MEMORY_INFO() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
test/parallel/test-worker-sharedarraybuffer-from-worker-thread.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean, I’m happy to take a more concise suggestion, but given the very specific use case I’m fine with a long name.