Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: src/heap/incremental-marking.h

Issue 2599283002: Reland "[heap] Ensure progress when incrementally marking wrappers" (Closed)
Patch Set: Fix: Make toggle a IM global to avoid only advancing wrappers Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/heap/heap.cc ('k') | src/heap/incremental-marking.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « src/heap/heap.cc ('k') | src/heap/incremental-marking.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698