Home
last modified time | relevance | path

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

/external/v8/src/heap/cppgc/
Dstats-collector.cc75 DCHECK_EQ(GarbageCollectionState::kNotRunning, gc_state_); in NotifyMarkingStarted()
76 gc_state_ = GarbageCollectionState::kMarking; in NotifyMarkingStarted()
80 DCHECK_EQ(GarbageCollectionState::kMarking, gc_state_); in NotifyMarkingCompleted()
81 gc_state_ = GarbageCollectionState::kSweeping; in NotifyMarkingCompleted()
105 DCHECK_EQ(GarbageCollectionState::kSweeping, gc_state_); in NotifySweepingCompleted()
106 gc_state_ = GarbageCollectionState::kNotRunning; in NotifySweepingCompleted()
117 gc_state_ == GarbageCollectionState::kSweeping ? current_ : previous_; in allocated_object_size()
Dstats-collector.h115 GarbageCollectionState gc_state_ = GarbageCollectionState::kNotRunning; variable
/external/v8/src/heap/
Dheap.h659 return gc_state_.load(std::memory_order_relaxed); in gc_state()
2097 std::atomic<HeapState> gc_state_{NOT_IN_GC};
Dheap.cc460 gc_state_.store(state, std::memory_order_relaxed); in SetGCState()