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

Unified Diff: src/heap/mark-compact.h

Issue 2124433002: [heap] Clean up RawSweep (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comment Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/heap/mark-compact.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/mark-compact.h
diff --git a/src/heap/mark-compact.h b/src/heap/mark-compact.h
index 07b289e2ba10225be9ef8a509e84783a88639fd3..9918fef172093785a8d9103d4980b02f8f5548d7 100644
--- a/src/heap/mark-compact.h
+++ b/src/heap/mark-compact.h
@@ -406,20 +406,14 @@ class MarkCompactCollector {
public:
class SweeperTask;
- enum SweepingMode { SWEEP_ONLY, SWEEP_AND_VISIT_LIVE_OBJECTS };
- enum SkipListRebuildingMode { REBUILD_SKIP_LIST, IGNORE_SKIP_LIST };
enum FreeListRebuildingMode { REBUILD_FREE_LIST, IGNORE_FREE_LIST };
enum FreeSpaceTreatmentMode { IGNORE_FREE_SPACE, ZAP_FREE_SPACE };
- enum SweepingParallelism { SWEEP_ON_MAIN_THREAD, SWEEP_IN_PARALLEL };
typedef std::deque<Page*> SweepingList;
typedef List<Page*> SweptList;
- template <SweepingMode sweeping_mode, SweepingParallelism parallelism,
- SkipListRebuildingMode skip_list_mode,
- FreeListRebuildingMode free_list_mode,
- FreeSpaceTreatmentMode free_space_mode>
- static int RawSweep(PagedSpace* space, Page* p, ObjectVisitor* v);
+ static int RawSweep(Page* p, FreeListRebuildingMode free_list_mode,
+ FreeSpaceTreatmentMode free_space_mode);
explicit Sweeper(Heap* heap)
: heap_(heap),
« no previous file with comments | « no previous file | src/heap/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698