@@ -595,6 +595,20 @@ void Environment::AssignToContext(Local<v8::Context> context,
595
595
TrackContext (context);
596
596
}
597
597
598
+ void Environment::UnassignToContext (Local<v8::Context> context) {
599
+ if (!context.IsEmpty ()) {
600
+ context->SetAlignedPointerInEmbedderData (ContextEmbedderIndex::kEnvironment ,
601
+ nullptr );
602
+ context->SetAlignedPointerInEmbedderData (ContextEmbedderIndex::kRealm ,
603
+ nullptr );
604
+ context->SetAlignedPointerInEmbedderData (
605
+ ContextEmbedderIndex::kBindingDataStoreIndex , nullptr );
606
+ context->SetAlignedPointerInEmbedderData (
607
+ ContextEmbedderIndex::kContextifyContext , nullptr );
608
+ }
609
+ UntrackContext (context);
610
+ }
611
+
598
612
void Environment::TryLoadAddon (
599
613
const char * filename,
600
614
int flags,
@@ -820,7 +834,6 @@ void Environment::InitializeMainContext(Local<Context> context,
820
834
const EnvSerializeInfo* env_info) {
821
835
principal_realm_ = std::make_unique<PrincipalRealm>(
822
836
this , context, MAYBE_FIELD_PTR (env_info, principal_realm));
823
- AssignToContext (context, principal_realm_.get (), ContextInfo (" " ));
824
837
if (env_info != nullptr ) {
825
838
DeserializeProperties (env_info);
826
839
}
@@ -890,9 +903,9 @@ Environment::~Environment() {
890
903
inspector_agent_.reset ();
891
904
#endif
892
905
893
- ctx-> SetAlignedPointerInEmbedderData (ContextEmbedderIndex:: kEnvironment ,
894
- nullptr );
895
- ctx-> SetAlignedPointerInEmbedderData (ContextEmbedderIndex:: kRealm , nullptr );
906
+ // Sub-realms should have been cleared with Environment's cleanup.
907
+ DCHECK_EQ (shadow_realms_. size (), 0 );
908
+ principal_realm_. reset ( );
896
909
897
910
if (trace_state_observer_) {
898
911
tracing::AgentWriterHandle* writer = GetTracingAgentWriter ();
@@ -915,10 +928,6 @@ Environment::~Environment() {
915
928
addon.Close ();
916
929
}
917
930
}
918
-
919
- for (auto realm : shadow_realms_) {
920
- realm->OnEnvironmentDestruct ();
921
- }
922
931
}
923
932
924
933
void Environment::InitializeLibuv () {
@@ -1714,6 +1723,9 @@ void Environment::DeserializeProperties(const EnvSerializeInfo* info) {
1714
1723
std::cerr << *info << " \n " ;
1715
1724
}
1716
1725
1726
+ // Deserialize the realm's properties before running the deserialize
1727
+ // requests as the requests may need to access the realm's properties.
1728
+ principal_realm_->DeserializeProperties (&info->principal_realm );
1717
1729
RunDeserializeRequests ();
1718
1730
1719
1731
async_hooks_.Deserialize (ctx);
@@ -1724,8 +1736,6 @@ void Environment::DeserializeProperties(const EnvSerializeInfo* info) {
1724
1736
exit_info_.Deserialize (ctx);
1725
1737
stream_base_state_.Deserialize (ctx);
1726
1738
should_abort_on_uncaught_toggle_.Deserialize (ctx);
1727
-
1728
- principal_realm_->DeserializeProperties (&info->principal_realm );
1729
1739
}
1730
1740
1731
1741
uint64_t GuessMemoryAvailableToTheProcess () {
0 commit comments