Home
last modified time | relevance | path

Searched refs:IsPendingAllocation (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/heap/third-party/
Dheap-api-stub.cc42 bool Heap::IsPendingAllocation(HeapObject) { return false; } in IsPendingAllocation() function in v8::internal::third_party_heap::Heap
Dheap-api.h33 bool IsPendingAllocation(HeapObject object);
/third_party/node/deps/v8/src/heap/
Dheap-inl.h428 return tp_heap_->IsPendingAllocation(object); in IsPendingAllocationInternal()
476 bool Heap::IsPendingAllocation(HeapObject object) { in IsPendingAllocation() function
485 bool Heap::IsPendingAllocation(Object object) { in IsPendingAllocation() function
486 return object.IsHeapObject() && IsPendingAllocation(HeapObject::cast(object)); in IsPendingAllocation()
Dheap.h1528 inline bool IsPendingAllocation(HeapObject object);
1529 inline bool IsPendingAllocation(Object object);
/third_party/node/deps/v8/src/objects/
Ddictionary-inl.h52 SLOW_DCHECK(!isolate->heap()->IsPendingAllocation(*this)); in TryValueAt()
Dswiss-name-dictionary-inl.h313 SLOW_DCHECK(!isolate->heap()->IsPendingAllocation(*this)); in TryValueAt()
Djs-objects.cc4459 if (heap->IsPendingAllocation(HeapObject::cast(backing_store))) return {}; in DictionaryPropertyAt()
Dobjects.cc5964 if (isolate->heap()->IsPendingAllocation(element)) return {}; in TryFindPropertyCellForConcurrentLookupIterator()
/third_party/node/deps/v8/src/compiler/
Djs-heap-broker.cc221 return !IsMainThread() && isolate()->heap()->IsPendingAllocation(object); in ObjectMayBeUninitialized()