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

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

Issue 1038653003: Change halfway-to-the-max GC trigger to measure committed pages, not allocated objects Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix thinko Created 5 years, 8 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/heap-inl.h ('k') | 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 b08ff36ea8ace70ccf860fb6dbc66a8a22465814..887cd4d6e9df681320144cdede0fde4bf19ab992 100644
--- a/src/heap/mark-compact.h
+++ b/src/heap/mark-compact.h
@@ -615,7 +615,9 @@ class MarkCompactCollector {
void ClearMarkbits();
- bool abort_incremental_marking() const { return abort_incremental_marking_; }
+ bool incremental_marking_abort_requested() const {
+ return incremental_marking_abort_requested_;
+ }
bool is_compacting() const { return compacting_; }
@@ -705,7 +707,7 @@ class MarkCompactCollector {
bool reduce_memory_footprint_;
- bool abort_incremental_marking_;
+ bool incremental_marking_abort_requested_;
MarkingParity marking_parity_;
« no previous file with comments | « src/heap/heap-inl.h ('k') | src/heap/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698