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

Unified Diff: src/mark-compact.h

Issue 398333002: Concurrent/parallel precise sweeping. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « src/heap-snapshot-generator.cc ('k') | src/mark-compact.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mark-compact.h
diff --git a/src/mark-compact.h b/src/mark-compact.h
index 65167799ebc0afadb2741daeea83183ae78704cb..624f2b09a4a3e7d2483003584d53cfd82c731217 100644
--- a/src/mark-compact.h
+++ b/src/mark-compact.h
@@ -572,6 +572,8 @@ class MarkCompactCollector {
enum SweeperType {
PARALLEL_CONSERVATIVE,
CONCURRENT_CONSERVATIVE,
+ PARALLEL_PRECISE,
+ CONCURRENT_PRECISE,
PRECISE
};
@@ -591,7 +593,7 @@ class MarkCompactCollector {
// Sweep a single page from the given space conservatively.
// Returns the size of the biggest continuous freed memory chunk in bytes.
template<SweepingParallelism type>
- static intptr_t SweepConservatively(PagedSpace* space,
+ static int SweepConservatively(PagedSpace* space,
FreeList* free_list,
Page* p);
« no previous file with comments | « src/heap-snapshot-generator.cc ('k') | src/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698