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

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

Issue 1474303002: [heap] Remove live weak cells from weak cell list when finalizing incremental marking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 | « no previous file | 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/incremental-marking-job.h" 10 #include "src/heap/incremental-marking-job.h"
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 int64_t SpaceLeftInOldSpace(); 233 int64_t SpaceLeftInOldSpace();
234 234
235 void SpeedUp(); 235 void SpeedUp();
236 236
237 void ResetStepCounters(); 237 void ResetStepCounters();
238 238
239 void StartMarking(); 239 void StartMarking();
240 240
241 void MarkRoots(); 241 void MarkRoots();
242 void MarkObjectGroups(); 242 void MarkObjectGroups();
243 void ProcessWeakCells();
243 244
244 void ActivateIncrementalWriteBarrier(PagedSpace* space); 245 void ActivateIncrementalWriteBarrier(PagedSpace* space);
245 static void ActivateIncrementalWriteBarrier(NewSpace* space); 246 static void ActivateIncrementalWriteBarrier(NewSpace* space);
246 void ActivateIncrementalWriteBarrier(); 247 void ActivateIncrementalWriteBarrier();
247 248
248 static void DeactivateIncrementalWriteBarrierForSpace(PagedSpace* space); 249 static void DeactivateIncrementalWriteBarrierForSpace(PagedSpace* space);
249 static void DeactivateIncrementalWriteBarrierForSpace(NewSpace* space); 250 static void DeactivateIncrementalWriteBarrierForSpace(NewSpace* space);
250 void DeactivateIncrementalWriteBarrier(); 251 void DeactivateIncrementalWriteBarrier();
251 252
252 static void SetOldSpacePageFlags(MemoryChunk* chunk, bool is_marking, 253 static void SetOldSpacePageFlags(MemoryChunk* chunk, bool is_marking,
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 GCRequestType request_type_; 294 GCRequestType request_type_;
294 295
295 IncrementalMarkingJob incremental_marking_job_; 296 IncrementalMarkingJob incremental_marking_job_;
296 297
297 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); 298 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking);
298 }; 299 };
299 } // namespace internal 300 } // namespace internal
300 } // namespace v8 301 } // namespace v8
301 302
302 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ 303 #endif // V8_HEAP_INCREMENTAL_MARKING_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap/incremental-marking.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698