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

Unified Diff: runtime/vm/service.cc

Issue 342513004: Visual refresh of allocation profile page (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
« runtime/vm/isolate.h ('K') | « runtime/vm/scavenger.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service.cc
diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
index bd24d2a39a71a73e14565a2e76dcc94e8c36e51d..2798aa95f10c09de397f8b84a08621d7094631dc 100644
--- a/runtime/vm/service.cc
+++ b/runtime/vm/service.cc
@@ -1667,9 +1667,11 @@ static bool HandleAllocationProfile(Isolate* isolate, JSONStream* js) {
}
}
if (should_reset_accumulator) {
+ isolate->timestampLastAllocationProfileAccumulatorReset();
isolate->class_table()->ResetAllocationAccumulators();
}
if (should_collect) {
+ isolate->timestampLastAllocationProfileGC();
isolate->heap()->CollectAllGarbage();
}
isolate->class_table()->AllocationProfilePrintJSON(js);
@@ -1938,6 +1940,7 @@ static bool HandleVM(JSONStream* js) {
jsobj.AddProperty("id", "vm");
jsobj.AddProperty("targetCPU", CPU::Id());
jsobj.AddProperty("hostCPU", HostCPUFeatures::hardware());
+ jsobj.AddPropertyF("date", "%" Pd64 "", OS::GetCurrentTimeMillis());
koda 2014/06/17 21:04:07 It's potentially confusing that 'date' is in milli
jsobj.AddProperty("version", Version::String());
jsobj.AddProperty("assertsEnabled", FLAG_enable_asserts);
jsobj.AddProperty("typeChecksEnabled", FLAG_enable_type_checks);
« runtime/vm/isolate.h ('K') | « runtime/vm/scavenger.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698