blob: 9c78182f2ed3b81a6f08d43fba852aa903b5e986 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2012 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#ifndef V8_HEAP_INCREMENTAL_MARKING_JOB_H_
6#define V8_HEAP_INCREMENTAL_MARKING_JOB_H_
7
8#include "src/cancelable-task.h"
9
10namespace v8 {
11namespace internal {
12
13class Heap;
14class Isolate;
15
16// The incremental marking job uses platform tasks to perform incremental
17// marking steps. The job posts an idle and a delayed task with a large delay.
18// The delayed task performs steps only if the idle task is not making progress.
19// We expect this to be a rare event since incremental marking should finish
20// quickly with the help of the mutator and the idle task.
21// The delayed task guarantees that we eventually finish incremental marking
22// even if the mutator becomes idle and the platform stops running idle tasks,
23// which can happen for background tabs in Chrome.
24class IncrementalMarkingJob {
25 public:
26 class IdleTask : public CancelableIdleTask {
27 public:
28 explicit IdleTask(Isolate* isolate, IncrementalMarkingJob* job)
29 : CancelableIdleTask(isolate), job_(job) {}
30 enum Progress { kDone, kMoreWork };
31 static Progress Step(Heap* heap, double deadline_in_ms);
32 // CancelableIdleTask overrides.
33 void RunInternal(double deadline_in_seconds) override;
34
35 private:
36 IncrementalMarkingJob* job_;
37 };
38
39 class DelayedTask : public CancelableTask {
40 public:
41 explicit DelayedTask(Isolate* isolate, IncrementalMarkingJob* job)
42 : CancelableTask(isolate), job_(job) {}
43 static void Step(Heap* heap);
44 // CancelableTask overrides.
45 void RunInternal() override;
46
47 private:
48 IncrementalMarkingJob* job_;
49 };
50
51 // Delay of the delayed task.
Ben Murdochda12d292016-06-02 14:46:10 +010052 static const double kLongDelayInSeconds;
53 static const double kShortDelayInSeconds;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000054
55 IncrementalMarkingJob()
56 : idle_task_pending_(false),
57 delayed_task_pending_(false),
58 made_progress_since_last_delayed_task_(false) {}
59
60 bool ShouldForceMarkingStep() {
61 return !made_progress_since_last_delayed_task_;
62 }
63
64 bool IdleTaskPending() { return idle_task_pending_; }
65
66 void Start(Heap* heap);
67
68 void NotifyIdleTask();
69 void NotifyDelayedTask();
70 void NotifyIdleTaskProgress();
71 void ScheduleIdleTask(Heap* heap);
72 void ScheduleDelayedTask(Heap* heap);
73
74 private:
75 bool idle_task_pending_;
76 bool delayed_task_pending_;
77 bool made_progress_since_last_delayed_task_;
78};
79} // namespace internal
80} // namespace v8
81
82#endif // V8_HEAP_INCREMENTAL_MARKING_JOB_H_