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

Unified Diff: runtime/vm/isolate.cc

Issue 293133003: Emit intrinsified code even if optimization is turned off. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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/flow_graph_compiler.cc ('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 36527)
+++ runtime/vm/isolate.cc (working copy)
@@ -37,8 +37,6 @@
namespace dart {
-DEFINE_FLAG(bool, report_usage_count, false,
- "Track function usage and report.");
DEFINE_FLAG(bool, trace_isolates, false,
"Trace isolate creation and shut down.");
DEFINE_FLAG(bool, pause_isolates_on_start, false,
@@ -762,11 +760,8 @@
delete message_handler();
set_message_handler(NULL);
- // Dump all accumalated timer data for the isolate.
+ // Dump all accumulated timer data for the isolate.
timer_list_.ReportTimers();
- if (FLAG_report_usage_count) {
- PrintInvokedFunctions();
Ivan Posva 2014/05/22 21:15:38 This is the only call. Please remove the function
- }
// Write out profiler data if requested.
Profiler::WriteProfile(this);
« no previous file with comments | « runtime/vm/flow_graph_compiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698