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

Unified Diff: src/heap/gc-tracer.cc

Issue 1413763011: [heap] Fix rescanning live objects when aborting compaction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments Created 5 years, 2 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/gc-tracer.h ('k') | src/heap/mark-compact.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/gc-tracer.cc
diff --git a/src/heap/gc-tracer.cc b/src/heap/gc-tracer.cc
index 231c4e9c8d76f15d6d9cb5d2b40f74cfdb8b7644..9e5e469deab82aabd71d6042b90a7e0293fcedf9 100644
--- a/src/heap/gc-tracer.cc
+++ b/src/heap/gc-tracer.cc
@@ -491,6 +491,7 @@ void GCTracer::PrintNVP() const {
"sweepcode=%.2f "
"sweepcell=%.2f "
"sweepmap=%.2f "
+ "sweepaborted=%.2f "
"evacuate=%.1f "
"new_new=%.1f "
"root_new=%.1f "
@@ -554,6 +555,7 @@ void GCTracer::PrintNVP() const {
current_.scopes[Scope::MC_SWEEP_CODE],
current_.scopes[Scope::MC_SWEEP_CELL],
current_.scopes[Scope::MC_SWEEP_MAP],
+ current_.scopes[Scope::MC_SWEEP_ABORTED],
current_.scopes[Scope::MC_EVACUATE_PAGES],
current_.scopes[Scope::MC_UPDATE_NEW_TO_NEW_POINTERS],
current_.scopes[Scope::MC_UPDATE_ROOT_TO_NEW_POINTERS],
« no previous file with comments | « src/heap/gc-tracer.h ('k') | src/heap/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698