/third_party/node/deps/v8/src/handles/ |
D | local-handles-inl.h | 44 local_heap_ = local_heap; in LocalHandleScope() 52 if (local_heap_->is_main_thread()) { in ~LocalHandleScope() 53 CloseMainThreadScope(local_heap_, prev_next_, prev_limit_); in ~LocalHandleScope() 55 CloseScope(local_heap_, prev_next_, prev_limit_); in ~LocalHandleScope() 64 if (local_heap_->is_main_thread()) { in CloseAndEscape() 65 current = local_heap_->heap()->isolate()->handle_scope_data(); in CloseAndEscape() 66 CloseMainThreadScope(local_heap_, prev_next_, prev_limit_); in CloseAndEscape() 68 current = &local_heap_->handles()->scope_; in CloseAndEscape() 69 CloseScope(local_heap_, prev_next_, prev_limit_); in CloseAndEscape() 73 Handle<T> result(value, local_heap_); in CloseAndEscape()
|
D | local-handles.h | 74 LocalHeap* local_heap_; variable
|
D | local-handles.cc | 25 local_heap_ = local_heap; in OpenMainThreadScope()
|
/third_party/node/deps/v8/src/codegen/ |
D | tick-counter.cc | 22 if (local_heap_) local_heap_->Safepoint(); in TickAndMaybeEnterSafepoint() 26 DCHECK_NULL(local_heap_); in AttachLocalHeap() 27 local_heap_ = local_heap; in AttachLocalHeap() 28 DCHECK_NOT_NULL(local_heap_); in AttachLocalHeap() 31 void TickCounter::DetachLocalHeap() { local_heap_ = nullptr; } in DetachLocalHeap()
|
D | tick-counter.h | 29 LocalHeap* local_heap_ = nullptr; variable
|
/third_party/node/deps/v8/src/heap/ |
D | parked-scope.h | 21 explicit ParkedScope(LocalHeap* local_heap) : local_heap_(local_heap) { in ParkedScope() 22 local_heap_->Park(); in ParkedScope() 25 ~ParkedScope() { local_heap_->Unpark(); } in ~ParkedScope() 28 LocalHeap* const local_heap_; 37 explicit UnparkedScope(LocalHeap* local_heap) : local_heap_(local_heap) { in UnparkedScope() 38 local_heap_->Unpark(); in UnparkedScope() 41 ~UnparkedScope() { local_heap_->Park(); } in ~UnparkedScope() 44 LocalHeap* const local_heap_;
|
D | concurrent-allocator-inl.h | 27 if (local_heap_) local_heap_->VerifyCurrent(); in AllocateRaw()
|
D | concurrent-allocator.h | 41 : local_heap_(local_heap), in ConcurrentAllocator() 72 LocalHeap* const local_heap_; variable
|
D | concurrent-allocator.cc | 136 local_heap_, kLabSize, kMaxLabSize, kTaggedAligned, origin); in EnsureLab() 158 auto result = space_->RawRefillLabBackground(local_heap_, object_size, in AllocateOutsideLab()
|
/third_party/node/deps/v8/src/baseline/ |
D | bytecode-offset-iterator.cc | 20 local_heap_(LocalHeap::Current() in BytecodeOffsetIterator() 23 local_heap_->AddGCEpilogueCallback(UpdatePointersCallback, this); in BytecodeOffsetIterator() 38 local_heap_(nullptr) { in BytecodeOffsetIterator() 44 if (local_heap_ != nullptr) { in ~BytecodeOffsetIterator() 45 local_heap_->RemoveGCEpilogueCallback(UpdatePointersCallback, this); in ~BytecodeOffsetIterator()
|
D | bytecode-offset-iterator.h | 90 LocalHeap* local_heap_; variable
|
/third_party/node/deps/v8/src/interpreter/ |
D | bytecode-array-iterator.cc | 26 local_heap_(LocalHeap::Current() in BytecodeArrayIterator() 29 local_heap_->AddGCEpilogueCallback(UpdatePointersCallback, this); in BytecodeArrayIterator() 34 local_heap_->RemoveGCEpilogueCallback(UpdatePointersCallback, this); in ~BytecodeArrayIterator()
|
D | bytecode-array-iterator.h | 186 LocalHeap* const local_heap_; variable
|
/third_party/node/deps/v8/src/objects/ |
D | feedback-vector.h | 670 return local_heap_ == nullptr ? MainThread : BackgroundThread; in mode() 696 : isolate_(isolate), local_heap_(nullptr) {} in NexusConfig() 698 : isolate_(isolate), local_heap_(local_heap) {} in NexusConfig() 701 LocalHeap* const local_heap_; variable
|
D | feedback-vector.cc | 483 return handle(object, local_heap_); in NewHandle() 492 return handle(object, local_heap_); in NewHandle()
|