@@ -74,22 +74,27 @@ static kj::Own<v8::Platform> userPlatform(v8::Platform& platform) {
74
74
return kj::Own<v8::Platform>(&platform, kj::NullDisposer::instance);
75
75
}
76
76
77
- V8System::V8System (): V8System(defaultPlatform(0 ), nullptr ) {}
78
- V8System::V8System (kj::ArrayPtr<const kj::StringPtr > flags): V8System(defaultPlatform(0 ), flags) {}
79
- V8System::V8System (v8::Platform& platformParam): V8System(platformParam, nullptr ) {}
77
+ V8System::V8System (kj::ArrayPtr<const kj::StringPtr > flags) {
78
+ auto platform = defaultPlatform (0 );
79
+ auto defaultPlatformPtr = platform.get ();
80
+ init (kj::mv (platform), flags, defaultPlatformPtr);
81
+ }
82
+
80
83
V8System::V8System (v8::Platform& platformParam,
81
84
kj::ArrayPtr<const kj::StringPtr > flags,
82
- v8::Platform* defaultPlatformPtr)
83
- : V8System(userPlatform(platformParam), flags, defaultPlatformPtr) {}
84
- V8System::V8System (kj::Own<v8::Platform> platformParam,
85
+ v8::Platform* defaultPlatformPtr) {
86
+ init (userPlatform (platformParam), flags, defaultPlatformPtr);
87
+ }
88
+
89
+ void V8System::init (kj::Own<v8::Platform> platformParam,
85
90
kj::ArrayPtr<const kj::StringPtr > flags,
86
- v8::Platform* defaultPlatformPtr)
87
- : platformInner( kj::mv(platformParam)),
88
- platformWrapper (*platformInner),
89
- defaultPlatformPtr_{ defaultPlatformPtr} {
90
- if (!defaultPlatformPtr_) {
91
- defaultPlatformPtr_ = platformInner. get ( );
92
- }
91
+ v8::Platform* defaultPlatformPtr) {
92
+ platformInner = kj::mv (platformParam);
93
+ platformWrapper = kj::heap<V8PlatformWrapper> (*platformInner);
94
+ defaultPlatformPtr_ = defaultPlatformPtr;
95
+
96
+ KJ_ASSERT ( defaultPlatformPtr_ != nullptr );
97
+
93
98
#if V8_HAS_STACK_START_MARKER
94
99
v8::StackStartMarker::EnableForProcess ();
95
100
#endif
@@ -157,9 +162,9 @@ V8System::V8System(kj::Own<v8::Platform> platformParam,
157
162
v8::V8::InitializeICUDefaultLocation (nullptr );
158
163
#endif
159
164
160
- v8::V8::InitializePlatform (& platformWrapper);
165
+ v8::V8::InitializePlatform (platformWrapper. get () );
161
166
v8::V8::Initialize ();
162
- cppgc::InitializeProcess (platformWrapper. GetPageAllocator ());
167
+ cppgc::InitializeProcess (platformWrapper-> GetPageAllocator ());
163
168
v8Initialized = true ;
164
169
}
165
170
@@ -337,8 +342,8 @@ static v8::Isolate* newIsolate(v8::Isolate::CreateParams&& params, v8::CppHeap*
337
342
338
343
IsolateBase::IsolateBase (
339
344
V8System& system, v8::Isolate::CreateParams&& createParams, kj::Own<IsolateObserver> observer)
340
- : defaultPlatform(& system.getDefaultPlatform() ),
341
- cppHeap(newCppHeap(const_cast <V8PlatformWrapper*>(& system.platformWrapper))),
345
+ : defaultPlatform(system.defaultPlatformPtr_ ),
346
+ cppHeap(newCppHeap(const_cast <V8PlatformWrapper*>(system.platformWrapper.get() ))),
342
347
ptr(newIsolate(kj::mv(createParams), cppHeap.release())),
343
348
envAsyncContextKey(kj::refcounted<AsyncContextFrame::StorageKey>()),
344
349
heapTracer(ptr),
0 commit comments