Home
last modified time | relevance | path

Searched refs:shared_isolate (Results 1 – 16 of 16) sorted by relevance

/third_party/node/deps/v8/src/heap/
Dsafepoint.cc75 shared_isolate()->global_safepoint()->AssertActive(); in InitiateGlobalSafepointScope()
83 shared_isolate()->global_safepoint()->AssertActive(); in TryInitiateGlobalSafepointScope()
278 Isolate* IsolateSafepoint::shared_isolate() const { in shared_isolate() function in v8::internal::IsolateSafepoint
279 return isolate()->shared_isolate(); in shared_isolate()
377 DCHECK_EQ(client.isolate()->shared_isolate(), shared_isolate_); in EnterGlobalSafepointScope()
402 : initiator_(initiator), shared_isolate_(initiator->shared_isolate()) { in GlobalSafepointScope()
Dheap-allocator.cc117 heap_->isolate()->shared_isolate()->heap()); in AllocateRawWithRetryOrFailSlowPath()
Dsafepoint.h136 Isolate* shared_isolate() const;
Dgc-tracer.cc51 Isolate* shared_isolate = isolate->shared_isolate(); in AssertMainThread() local
57 (shared_isolate && shared_isolate->thread_id() == thread_id)); in AssertMainThread()
Dlocal-heap.cc117 if (heap_->isolate()->shared_isolate()) { in SetUp()
Dheap.cc2394 DCHECK_NOT_NULL(isolate()->shared_isolate()); in CollectSharedGarbage()
2396 isolate()->shared_isolate()->heap()->PerformSharedGarbageCollection( in CollectSharedGarbage()
2595 isolate()->shared_isolate() ? isolate()->shared_isolate()->heap() in MarkCompact()
2642 isolate()->shared_isolate() ? isolate()->shared_isolate()->heap() in MinorMarkCompact()
2782 isolate()->shared_isolate() ? isolate()->shared_isolate()->heap() in Scavenge()
3719 if (!isolate()->shared_isolate()) return; in FreeSharedLinearAllocationAreas()
3727 if (!isolate()->shared_isolate()) return; in FreeMainThreadSharedLinearAllocationAreas()
5103 if (isolate_->shared_isolate() == nullptr) { in IterateRoots()
5888 if (isolate()->shared_isolate()) { in SetUpSpaces()
5889 Heap* shared_heap = isolate()->shared_isolate()->heap(); in SetUpSpaces()
Dscavenger.cc554 if (FLAG_shared_string_table && heap->isolate()->shared_isolate()) { in CreateSharedOldAllocator()
Dfactory.cc1853 : isolate()->shared_isolate()->heap(); in NewMap()
Dmark-compact.cc3538 if (FLAG_shared_string_table && heap->isolate()->shared_isolate()) { in CreateSharedOldAllocator()
/third_party/node/deps/v8/src/snapshot/
Dshared-heap-deserializer.cc16 DCHECK_IMPLIES(isolate()->shared_isolate() != nullptr, in DeserializeIntoIsolate()
18 if (isolate()->shared_isolate() != nullptr) return; in DeserializeIntoIsolate()
Dshared-heap-serializer.cc99 isolate()->shared_isolate()->shared_heap_object_cache(); in SerializeUsingSharedHeapObjectCache()
205 isolate()->shared_isolate() != nullptr; in ShouldReconstructSharedHeapObjectCacheForTesting()
210 isolate()->shared_isolate()->shared_heap_object_cache(); in ReconstructSharedHeapObjectCacheForTesting()
Dsnapshot.cc321 ((isolate->shared_isolate() || ReadOnlyHeap::IsReadOnlySpaceShared()) in SerializeDeserializeAndVerifyForTesting()
340 if (Isolate* shared_isolate = isolate->shared_isolate()) { in SerializeDeserializeAndVerifyForTesting() local
341 new_isolate->set_shared_isolate(shared_isolate); in SerializeDeserializeAndVerifyForTesting()
/third_party/node/deps/v8/src/execution/
Disolate.h1673 if (shared_isolate()) return shared_isolate()->shared_heap_object_cache(); in shared_heap_object_cache()
1924 Isolate* shared_isolate() const { in shared_isolate() function
1929 void set_shared_isolate(Isolate* shared_isolate) { in set_shared_isolate() argument
1930 DCHECK(shared_isolate->is_shared()); in set_shared_isolate()
1933 shared_isolate_ = shared_isolate; in set_shared_isolate()
Disolate.cc3986 DCHECK_NOT_NULL(shared_isolate()); in ThrowInternal()
3987 string_table_ = shared_isolate()->string_table_; in ThrowInternal()
/third_party/node/deps/v8/src/d8/
Dd8.cc483 Isolate* Shell::shared_isolate = nullptr; member in v8::Shell
3460 if (shared_isolate) { in OnExit()
3461 i::Isolate::Delete(reinterpret_cast<i::Isolate*>(shared_isolate)); in OnExit()
4030 create_params.experimental_attach_to_shared_isolate = Shell::shared_isolate; in ExecuteInThread()
4266 create_params.experimental_attach_to_shared_isolate = Shell::shared_isolate; in ExecuteInThread()
5023 DCHECK_EQ(reinterpret_cast<i::Isolate*>(isolate)->shared_isolate(), in GetSharedValueId()
5024 reinterpret_cast<i::Isolate*>(Shell::shared_isolate)); in GetSharedValueId()
5025 v8::Locker locker(Shell::shared_isolate); in GetSharedValueId()
5026 data_->shared_values_.emplace_back(Shell::shared_isolate, shared_value); in GetSharedValueId()
5100 v8::Locker locker(Shell::shared_isolate); in ClearSharedValuesUnderLockIfNeeded()
[all …]
Dd8.h674 static Isolate* shared_isolate; variable