Home
last modified time | relevance | path

Searched refs:create_heap_objects (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/init/
Dsetup-isolate.h34 explicit SetupIsolateDelegate(bool create_heap_objects) in SetupIsolateDelegate() argument
35 : create_heap_objects_(create_heap_objects) {} in SetupIsolateDelegate()
Dbootstrapper.h28 void Initialize(Isolate* isolate, bool create_heap_objects);
53 void Initialize(bool create_heap_objects);
Dbootstrapper.cc81 void SourceCodeCache::Initialize(Isolate* isolate, bool create_heap_objects) { in Initialize() argument
82 cache_ = create_heap_objects ? ReadOnlyRoots(isolate).empty_fixed_array() in Initialize()
128 void Bootstrapper::Initialize(bool create_heap_objects) { in Initialize() argument
129 extensions_cache_.Initialize(isolate_, create_heap_objects); in Initialize()
/third_party/node/deps/v8/src/execution/
Disolate.cc3884 const bool create_heap_objects = (read_only_snapshot_data == nullptr); in ThrowInternal() local
3886 DCHECK_EQ(create_heap_objects, startup_snapshot_data == nullptr); in ThrowInternal()
3887 DCHECK_EQ(create_heap_objects, shared_heap_snapshot_data == nullptr); in ThrowInternal()
3890 if (create_heap_objects && FLAG_profile_deserialization) timer.Start(); in ThrowInternal()
4032 setup_delegate_ = new SetupIsolateDelegate(create_heap_objects); in ThrowInternal()
4041 if (create_heap_objects) { in ThrowInternal()
4053 bootstrapper_->Initialize(create_heap_objects); in ThrowInternal()
4055 if (create_heap_objects) { in ThrowInternal()
4105 if (create_heap_objects) { in ThrowInternal()
4166 if (!create_heap_objects) in ThrowInternal()
[all …]