Home
last modified time | relevance | path

Searched refs:allocation_trackers_ (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/heap/
Dheap-allocator-inl.h153 for (auto& tracker : heap_->allocation_trackers_) { in AllocateRaw()
Dheap.cc831 if (allocation_trackers_.empty() && FLAG_inline_new) { in AddHeapObjectAllocationTracker()
834 allocation_trackers_.push_back(tracker); in AddHeapObjectAllocationTracker()
839 allocation_trackers_.erase(std::remove(allocation_trackers_.begin(), in RemoveHeapObjectAllocationTracker()
840 allocation_trackers_.end(), tracker), in RemoveHeapObjectAllocationTracker()
841 allocation_trackers_.end()); in RemoveHeapObjectAllocationTracker()
842 if (allocation_trackers_.empty() && FLAG_inline_new) { in RemoveHeapObjectAllocationTracker()
3485 for (auto& tracker : allocation_trackers_) { in OnMoveEvent()
3683 for (auto& tracker : allocation_trackers_) { in CreateFillerForArray()
Dheap.h1545 return !allocation_trackers_.empty(); in has_heap_object_allocation_tracker()
2423 std::vector<HeapObjectAllocationTracker*> allocation_trackers_; variable