HomeSort by relevance Sort by last modified time
    Searched refs:started_gcs (Results 1 - 2 of 2) sorted by null

  /external/v8/src/heap/
memory-reducer.h 27 // - WAIT <started_gcs> <next_gc_start_ms> <last_gc_time_ms>
28 // - RUN <started_gcs> <last_gc_time_ms>
29 // The <started_gcs> is an integer in range from 0..kMaxNumberOfGCs that stores
88 State(Action action, int started_gcs, double next_gc_start_ms,
91 started_gcs(started_gcs),
95 int started_gcs; member in struct:v8::internal::MemoryReducer::State
133 return state_.action == kDone && state_.started_gcs > 0;
memory-reducer.cc 63 state_.started_gcs);
104 "Memory reducer: finished GC #%d (%s)\n", state_.started_gcs,
148 if (state.started_gcs >= kMaxNumberOfGCs) {
154 return State(kRun, state.started_gcs + 1, 0.0,
160 return State(kWait, state.started_gcs, event.time_ms + kLongDelayMs,
164 return State(kWait, state.started_gcs, event.time_ms + kLongDelayMs,
171 if (state.started_gcs < kMaxNumberOfGCs &&
172 (event.next_gc_likely_to_collect_more || state.started_gcs == 1)) {
173 return State(kWait, state.started_gcs, event.time_ms + kShortDelayMs,

Completed in 456 milliseconds