Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/cppgc/
Dstats-collector.cc112 DCHECK_EQ(GarbageCollectionState::kNotRunning, gc_state_); in NotifyMarkingStarted()
115 gc_state_ = GarbageCollectionState::kMarking; in NotifyMarkingStarted()
119 DCHECK_EQ(GarbageCollectionState::kMarking, gc_state_); in NotifyMarkingCompleted()
120 gc_state_ = GarbageCollectionState::kSweeping; in NotifyMarkingCompleted()
229 DCHECK_EQ(GarbageCollectionState::kSweeping, gc_state_); in NotifySweepingCompleted()
230 gc_state_ = GarbageCollectionState::kNotRunning; in NotifySweepingCompleted()
265 DCHECK_NE(GarbageCollectionState::kMarking, gc_state_); in marked_bytes()
270 DCHECK_NE(GarbageCollectionState::kNotRunning, gc_state_); in marked_bytes_on_current_cycle()
275 DCHECK_NE(GarbageCollectionState::kMarking, gc_state_); in marking_time()
280 gc_state_ == GarbageCollectionState::kSweeping ? current_ : previous_; in marking_time()
Dstats-collector.h363 GarbageCollectionState gc_state_ = GarbageCollectionState::kNotRunning; variable
477 DCHECK_NE(GarbageCollectionState::kNotRunning, stats_collector_->gc_state_); in IncreaseScopeTime()
/third_party/node/deps/v8/src/heap/
Dheap.h648 return gc_state_.load(std::memory_order_relaxed); in gc_state()
2204 std::atomic<HeapState> gc_state_{NOT_IN_GC};
Dheap.cc498 gc_state_.store(state, std::memory_order_relaxed); in SetGCState()