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

Unified Diff: runtime/vm/isolate.cc

Issue 12221022: Initial prototype of vmstats support, based on Dart VM Stats draft design doc. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Code review feedback response Created 7 years, 10 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/bin/vmstats_impl.cc ('K') | « runtime/vm/isolate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.cc
===================================================================
--- runtime/vm/isolate.cc (revision 18591)
+++ runtime/vm/isolate.cc (working copy)
@@ -627,4 +627,40 @@
}
}
+
+char* Isolate::GetStatus(const char* request) {
+ char* p = const_cast<char*>(request);
+ const char* service_type = "/isolate/";
+ ASSERT(strncmp(p, service_type, strlen(service_type)) == 0);
+ p += strlen(service_type);
+
+ // Extract isolate handle.
+ int64_t addr;
+ OS::StringToInt64(p, &addr);
+ Isolate* isolate = reinterpret_cast<Isolate*>(addr);
+ Heap* heap = isolate->heap();
+
+ char buffer[256];
+ int n = OS::SNPrint(buffer, 256, "{\n"
+ " \"name\": \"%s\",\n"
+ " \"port\": %lld,\n"
+ " \"starttime\": %lld,\n"
+ " \"stacklimit\": %d,\n"
+ " \"newspace\": {\n"
+ " \"used\": %d,\n"
+ " \"capacity\": %d\n"
+ " },\n"
+ " \"oldspace\": {\n"
+ " \"used\": %d,\n"
+ " \"capacity\": %d\n"
+ " }\n"
+ "}",
+ isolate->name(), isolate->main_port(),
+ (isolate->start_time() / 1000), isolate->saved_stack_limit(),
+ heap->Used(Heap::kNew) / KB, heap->Capacity(Heap::kNew) / KB,
+ heap->Used(Heap::kOld) / KB, heap->Capacity(Heap::kOld) / KB);
+ ASSERT(n < 256);
+ return strdup(buffer);
+}
+
} // namespace dart
« runtime/bin/vmstats_impl.cc ('K') | « runtime/vm/isolate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698