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

Unified Diff: runtime/vm/isolate.cc

Issue 2638173002: Compact the symbol table when creating core snapshots or JIT app snapshots. (Closed)
Patch Set: Created 3 years, 11 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 | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index 5e43f3a05bc1d7d5a077b7801806c260bf0c81d8..ca81a6303f4354ce19565fb4c5d5a41c7dabbbaa 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -1681,9 +1681,11 @@ void Isolate::LowLevelShutdown() {
if (FLAG_dump_megamorphic_stats) {
MegamorphicCacheTable::PrintSizes(this);
}
+ if (FLAG_dump_symbol_stats) {
+ Symbols::DumpStats(this);
+ }
if (FLAG_trace_isolates) {
heap()->PrintSizes();
- Symbols::DumpStats();
OS::Print(
"[-] Stopping isolate:\n"
"\tisolate: %s\n",
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698