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/heap.h" |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 size_t unscanned_bytes_of_large_object_; | 291 size_t unscanned_bytes_of_large_object_; |
292 | 292 |
293 int idle_marking_delay_counter_; | 293 int idle_marking_delay_counter_; |
294 int incremental_marking_finalization_rounds_; | 294 int incremental_marking_finalization_rounds_; |
295 | 295 |
296 bool is_compacting_; | 296 bool is_compacting_; |
297 bool should_hurry_; | 297 bool should_hurry_; |
298 bool was_activated_; | 298 bool was_activated_; |
299 bool black_allocation_; | 299 bool black_allocation_; |
300 bool finalize_marking_completed_; | 300 bool finalize_marking_completed_; |
| 301 bool trace_wrappers_toggle_; |
301 | 302 |
302 GCRequestType request_type_; | 303 GCRequestType request_type_; |
303 | 304 |
304 IncrementalMarkingJob incremental_marking_job_; | 305 IncrementalMarkingJob incremental_marking_job_; |
305 Observer new_generation_observer_; | 306 Observer new_generation_observer_; |
306 Observer old_generation_observer_; | 307 Observer old_generation_observer_; |
307 | 308 |
308 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); | 309 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); |
309 }; | 310 }; |
310 } // namespace internal | 311 } // namespace internal |
311 } // namespace v8 | 312 } // namespace v8 |
312 | 313 |
313 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ | 314 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ |
OLD | NEW |