blob: 0c411f7b4c2e71bbaecf8d0e5cd9a3bcffa08953 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "src/heap/gc-idle-time-handler.h"
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00006
7#include "src/flags.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include "src/heap/gc-tracer.h"
9#include "src/utils.h"
10
11namespace v8 {
12namespace internal {
13
14const double GCIdleTimeHandler::kConservativeTimeRatio = 0.9;
Emily Bernierd0a1eb72015-03-24 16:35:39 -040015const size_t GCIdleTimeHandler::kMaxFinalIncrementalMarkCompactTimeInMs = 1000;
Emily Bernierd0a1eb72015-03-24 16:35:39 -040016const double GCIdleTimeHandler::kHighContextDisposalRate = 100;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000017const size_t GCIdleTimeHandler::kMinTimeForOverApproximatingWeakClosureInMs = 1;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000018
19
20void GCIdleTimeAction::Print() {
21 switch (type) {
22 case DONE:
23 PrintF("done");
24 break;
25 case DO_NOTHING:
26 PrintF("no action");
27 break;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000028 case DO_INCREMENTAL_STEP:
29 PrintF("incremental step");
Emily Bernierd0a1eb72015-03-24 16:35:39 -040030 if (additional_work) {
31 PrintF("; finalized marking");
32 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +000033 break;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000034 case DO_FULL_GC:
35 PrintF("full GC");
36 break;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000037 }
38}
39
40
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000041void GCIdleTimeHeapState::Print() {
Emily Bernierd0a1eb72015-03-24 16:35:39 -040042 PrintF("contexts_disposed=%d ", contexts_disposed);
43 PrintF("contexts_disposal_rate=%f ", contexts_disposal_rate);
Ben Murdochc5610432016-08-08 18:44:38 +010044 PrintF("size_of_objects=%" PRIuS " ", size_of_objects);
Emily Bernierd0a1eb72015-03-24 16:35:39 -040045 PrintF("incremental_marking_stopped=%d ", incremental_marking_stopped);
Emily Bernierd0a1eb72015-03-24 16:35:39 -040046}
47
Ben Murdochb8a8cc12014-11-26 15:28:44 +000048size_t GCIdleTimeHandler::EstimateMarkingStepSize(
Ben Murdochda12d292016-06-02 14:46:10 +010049 double idle_time_in_ms, double marking_speed_in_bytes_per_ms) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000050 DCHECK(idle_time_in_ms > 0);
51
52 if (marking_speed_in_bytes_per_ms == 0) {
53 marking_speed_in_bytes_per_ms = kInitialConservativeMarkingSpeed;
54 }
55
Ben Murdochda12d292016-06-02 14:46:10 +010056 double marking_step_size = marking_speed_in_bytes_per_ms * idle_time_in_ms;
57 if (marking_step_size >= kMaximumMarkingStepSize) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000058 return kMaximumMarkingStepSize;
59 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +000060 return static_cast<size_t>(marking_step_size * kConservativeTimeRatio);
61}
62
Ben Murdochda12d292016-06-02 14:46:10 +010063double GCIdleTimeHandler::EstimateFinalIncrementalMarkCompactTime(
Emily Bernierd0a1eb72015-03-24 16:35:39 -040064 size_t size_of_objects,
Ben Murdochda12d292016-06-02 14:46:10 +010065 double final_incremental_mark_compact_speed_in_bytes_per_ms) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -040066 if (final_incremental_mark_compact_speed_in_bytes_per_ms == 0) {
67 final_incremental_mark_compact_speed_in_bytes_per_ms =
68 kInitialConservativeFinalIncrementalMarkCompactSpeed;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000069 }
Ben Murdochda12d292016-06-02 14:46:10 +010070 double result =
Emily Bernierd0a1eb72015-03-24 16:35:39 -040071 size_of_objects / final_incremental_mark_compact_speed_in_bytes_per_ms;
Ben Murdochda12d292016-06-02 14:46:10 +010072 return Min<double>(result, kMaxFinalIncrementalMarkCompactTimeInMs);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000073}
74
Emily Bernierd0a1eb72015-03-24 16:35:39 -040075bool GCIdleTimeHandler::ShouldDoContextDisposalMarkCompact(
76 int contexts_disposed, double contexts_disposal_rate) {
77 return contexts_disposed > 0 && contexts_disposal_rate > 0 &&
78 contexts_disposal_rate < kHighContextDisposalRate;
79}
80
Emily Bernierd0a1eb72015-03-24 16:35:39 -040081bool GCIdleTimeHandler::ShouldDoFinalIncrementalMarkCompact(
Ben Murdochda12d292016-06-02 14:46:10 +010082 double idle_time_in_ms, size_t size_of_objects,
83 double final_incremental_mark_compact_speed_in_bytes_per_ms) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -040084 return idle_time_in_ms >=
85 EstimateFinalIncrementalMarkCompactTime(
86 size_of_objects,
87 final_incremental_mark_compact_speed_in_bytes_per_ms);
88}
89
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000090bool GCIdleTimeHandler::ShouldDoOverApproximateWeakClosure(
Ben Murdochda12d292016-06-02 14:46:10 +010091 double idle_time_in_ms) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000092 // TODO(jochen): Estimate the time it will take to build the object groups.
93 return idle_time_in_ms >= kMinTimeForOverApproximatingWeakClosureInMs;
94}
95
96
97GCIdleTimeAction GCIdleTimeHandler::NothingOrDone(double idle_time_in_ms) {
98 if (idle_time_in_ms >= kMinBackgroundIdleTime) {
99 return GCIdleTimeAction::Nothing();
100 }
101 if (idle_times_which_made_no_progress_ >= kMaxNoProgressIdleTimes) {
102 return GCIdleTimeAction::Done();
103 } else {
104 idle_times_which_made_no_progress_++;
105 return GCIdleTimeAction::Nothing();
106 }
107}
108
109
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000110// The following logic is implemented by the controller:
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400111// (1) If we don't have any idle time, do nothing, unless a context was
112// disposed, incremental marking is stopped, and the heap is small. Then do
113// a full GC.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000114// (2) If the context disposal rate is high and we cannot perform a full GC,
115// we do nothing until the context disposal rate becomes lower.
116// (3) If the new space is almost full and we can affort a scavenge or if the
117// next scavenge will very likely take long, then a scavenge is performed.
118// (4) If sweeping is in progress and we received a large enough idle time
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000119// request, we finalize sweeping here.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000120// (5) If incremental marking is in progress, we perform a marking step. Note,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000121// that this currently may trigger a full garbage collection.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400122GCIdleTimeAction GCIdleTimeHandler::Compute(double idle_time_in_ms,
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000123 GCIdleTimeHeapState heap_state) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400124 if (static_cast<int>(idle_time_in_ms) <= 0) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400125 if (heap_state.incremental_marking_stopped) {
126 if (ShouldDoContextDisposalMarkCompact(
127 heap_state.contexts_disposed,
128 heap_state.contexts_disposal_rate)) {
129 return GCIdleTimeAction::FullGC();
130 }
131 }
132 return GCIdleTimeAction::Nothing();
133 }
134
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000135 // We are in a context disposal GC scenario. Don't do anything if we do not
136 // get the right idle signal.
137 if (ShouldDoContextDisposalMarkCompact(heap_state.contexts_disposed,
138 heap_state.contexts_disposal_rate)) {
139 return NothingOrDone(idle_time_in_ms);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000140 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400141
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000142 if (!FLAG_incremental_marking || heap_state.incremental_marking_stopped) {
143 return GCIdleTimeAction::Done();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000144 }
145
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000146 return GCIdleTimeAction::IncrementalStep();
147}
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000148
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000149
150} // namespace internal
151} // namespace v8