-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
wip: crypto: use cppgc to manage Hash #51017
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Draft
joyeecheung
wants to merge
3
commits into
nodejs:main
Choose a base branch
from
joyeecheung:cppgc-hash
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#ifndef SRC_CPPGC_HELPERS_INL_H_ | ||
#define SRC_CPPGC_HELPERS_INL_H_ | ||
|
||
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS | ||
|
||
#include "cppgc_helpers.h" | ||
#include "env-inl.h" | ||
|
||
namespace node { | ||
|
||
template <typename T> | ||
void CppgcMixin::Wrap(T* ptr, Realm* realm, v8::Local<v8::Object> obj) { | ||
CHECK_GE(obj->InternalFieldCount(), T::kInternalFieldCount); | ||
ptr->realm_ = realm; | ||
v8::Isolate* isolate = realm->isolate(); | ||
ptr->traced_reference_ = v8::TracedReference<v8::Object>(isolate, obj); | ||
// Note that ptr must be of concrete type T in Wrap. | ||
v8::Object::Wrap<v8::CppHeapPointerTag::kDefaultTag>(isolate, obj, ptr); | ||
// Keep the layout consistent with BaseObjects. | ||
obj->SetAlignedPointerInInternalField( | ||
kEmbedderType, realm->isolate_data()->embedder_id_for_cppgc()); | ||
obj->SetAlignedPointerInInternalField(kSlot, ptr); | ||
realm->TrackCppgcWrapper(ptr); | ||
} | ||
|
||
template <typename T> | ||
void CppgcMixin::Wrap(T* ptr, Environment* env, v8::Local<v8::Object> obj) { | ||
Wrap(ptr, env->principal_realm(), obj); | ||
} | ||
|
||
template <typename T> | ||
T* CppgcMixin::Unwrap(v8::Local<v8::Object> obj) { | ||
// We are not using v8::Object::Unwrap currently because that requires | ||
// access to isolate which the ASSIGN_OR_RETURN_UNWRAP macro that we'll shim | ||
// with ASSIGN_OR_RETURN_UNWRAP_GC doesn't take, and we also want a | ||
// signature consistent with BaseObject::Unwrap() to avoid churn. Since | ||
// cppgc-managed objects share the same layout as BaseObjects, just unwrap | ||
// from the pointer in the internal field, which should be valid as long as | ||
// the object is still alive. | ||
if (obj->InternalFieldCount() != T::kInternalFieldCount) { | ||
return nullptr; | ||
} | ||
T* ptr = static_cast<T*>(obj->GetAlignedPointerFromInternalField(T::kSlot)); | ||
return ptr; | ||
} | ||
|
||
v8::Local<v8::Object> CppgcMixin::object() const { | ||
return traced_reference_.Get(realm_->isolate()); | ||
} | ||
|
||
Environment* CppgcMixin::env() const { | ||
return realm_->env(); | ||
} | ||
|
||
} // namespace node | ||
|
||
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS | ||
|
||
#endif // SRC_CPPGC_HELPERS_INL_H_ |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#include "cppgc_helpers.h" | ||
#include "env-inl.h" | ||
|
||
namespace node { | ||
|
||
void CppgcWrapperList::Cleanup() { | ||
for (auto handle : *this) { | ||
handle->Finalize(); | ||
} | ||
} | ||
|
||
void CppgcWrapperList::MemoryInfo(MemoryTracker* tracker) const { | ||
for (auto handle : *this) { | ||
tracker->Track(handle); | ||
} | ||
} | ||
|
||
} // namespace node |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
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.
Would you mind adding a comment to here why we don't call new Hash but prefer the recommended change to here.