Searched refs:started_gcs (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/heap/ |
D | memory-reducer.cc | 76 state_.started_gcs); in NotifyTimer() 118 "Memory reducer: finished GC #%d (%s)\n", state_.started_gcs, in NotifyMarkCompact() 176 if (state.started_gcs >= kMaxNumberOfGCs) { in Step() 183 return State(kRun, state.started_gcs + 1, 0.0, in Step() 189 return State(kWait, state.started_gcs, event.time_ms + kLongDelayMs, in Step() 193 return State(kWait, state.started_gcs, event.time_ms + kLongDelayMs, in Step() 200 if (state.started_gcs < kMaxNumberOfGCs && in Step() 201 (event.next_gc_likely_to_collect_more || state.started_gcs == 1)) { in Step() 202 return State(kWait, state.started_gcs, event.time_ms + kShortDelayMs, in Step()
|
D | memory-reducer.h | 92 State(Action action, int started_gcs, double next_gc_start_ms, in State() 95 started_gcs(started_gcs), in State() 100 int started_gcs; member 144 return state_.action == kDone && state_.started_gcs > 0; in ShouldGrowHeapSlowly()
|