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

Unified Diff: src/heap/gc-idle-time-handler.h

Issue 775013002: Print finalize incremental marking event in idle notification. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/heap/gc-idle-time-handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/gc-idle-time-handler.h
diff --git a/src/heap/gc-idle-time-handler.h b/src/heap/gc-idle-time-handler.h
index 9b7f2b59977f1e96d571be1dd843c13ba798b118..204e57936b847aea093aac0e2de1bce05c9383a0 100644
--- a/src/heap/gc-idle-time-handler.h
+++ b/src/heap/gc-idle-time-handler.h
@@ -26,6 +26,7 @@ class GCIdleTimeAction {
GCIdleTimeAction result;
result.type = DONE;
result.parameter = 0;
+ result.additional_work = false;
return result;
}
@@ -33,6 +34,7 @@ class GCIdleTimeAction {
GCIdleTimeAction result;
result.type = DO_NOTHING;
result.parameter = 0;
+ result.additional_work = false;
return result;
}
@@ -40,6 +42,7 @@ class GCIdleTimeAction {
GCIdleTimeAction result;
result.type = DO_INCREMENTAL_MARKING;
result.parameter = step_size;
+ result.additional_work = false;
return result;
}
@@ -47,6 +50,7 @@ class GCIdleTimeAction {
GCIdleTimeAction result;
result.type = DO_SCAVENGE;
result.parameter = 0;
+ result.additional_work = false;
return result;
}
@@ -54,6 +58,7 @@ class GCIdleTimeAction {
GCIdleTimeAction result;
result.type = DO_FULL_GC;
result.parameter = 0;
+ result.additional_work = false;
return result;
}
@@ -61,6 +66,7 @@ class GCIdleTimeAction {
GCIdleTimeAction result;
result.type = DO_FINALIZE_SWEEPING;
result.parameter = 0;
+ result.additional_work = false;
return result;
}
@@ -68,6 +74,7 @@ class GCIdleTimeAction {
GCIdleTimeActionType type;
intptr_t parameter;
+ bool additional_work;
};
« no previous file with comments | « no previous file | src/heap/gc-idle-time-handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698