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

Unified Diff: runtime/vm/pages.cc

Issue 11416384: Improve the reporting of scavenger and free list reports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « runtime/vm/freelist.cc ('k') | runtime/vm/scavenger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/pages.cc
diff --git a/runtime/vm/pages.cc b/runtime/vm/pages.cc
index 68a0530a83b9ad1cfe4b2f20118e576c574cfd32..503d2b2d6a2be765ba4c897e2ebcc63475d83eaa 100644
--- a/runtime/vm/pages.cc
+++ b/runtime/vm/pages.cc
@@ -404,9 +404,9 @@ void PageSpace::MarkSweep(bool invoke_api_callbacks, const char* gc_reason) {
NoHandleScope no_handles(isolate);
if (FLAG_print_free_list_before_gc) {
- OS::Print("Data Freelist:\n");
+ OS::Print("Data Freelist (before GC):\n");
freelist_[HeapPage::kData].Print();
- OS::Print("Executable Freelist:\n");
+ OS::Print("Executable Freelist (before GC):\n");
freelist_[HeapPage::kExecutable].Print();
}
@@ -486,9 +486,9 @@ void PageSpace::MarkSweep(bool invoke_api_callbacks, const char* gc_reason) {
}
if (FLAG_print_free_list_after_gc) {
- OS::Print("Data Freelist:\n");
+ OS::Print("Data Freelist (after GC):\n");
freelist_[HeapPage::kData].Print();
- OS::Print("Executable Freelist:\n");
+ OS::Print("Executable Freelist (after GC):\n");
freelist_[HeapPage::kExecutable].Print();
}
« no previous file with comments | « runtime/vm/freelist.cc ('k') | runtime/vm/scavenger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698