OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_HEAP_INCREMENTAL_MARKING_H_ | 5 #ifndef V8_HEAP_INCREMENTAL_MARKING_H_ |
6 #define V8_HEAP_INCREMENTAL_MARKING_H_ | 6 #define V8_HEAP_INCREMENTAL_MARKING_H_ |
7 | 7 |
8 #include "src/cancelable-task.h" | 8 #include "src/cancelable-task.h" |
9 #include "src/execution.h" | 9 #include "src/execution.h" |
| 10 #include "src/heap/heap.h" |
10 #include "src/heap/incremental-marking-job.h" | 11 #include "src/heap/incremental-marking-job.h" |
11 #include "src/heap/spaces.h" | 12 #include "src/heap/spaces.h" |
12 #include "src/objects.h" | 13 #include "src/objects.h" |
13 | 14 |
14 namespace v8 { | 15 namespace v8 { |
15 namespace internal { | 16 namespace internal { |
16 | 17 |
17 // Forward declarations. | 18 // Forward declarations. |
18 class MarkBit; | 19 class MarkBit; |
19 class PagedSpace; | 20 class PagedSpace; |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 GCRequestType request_type_; | 298 GCRequestType request_type_; |
298 | 299 |
299 IncrementalMarkingJob incremental_marking_job_; | 300 IncrementalMarkingJob incremental_marking_job_; |
300 | 301 |
301 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); | 302 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); |
302 }; | 303 }; |
303 } // namespace internal | 304 } // namespace internal |
304 } // namespace v8 | 305 } // namespace v8 |
305 | 306 |
306 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ | 307 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ |
OLD | NEW |