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

Unified Diff: runtime/vm/compiler_stats.cc

Issue 23072026: fix cpp11 compile errors (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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/compiler.cc ('k') | runtime/vm/dart_api_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/compiler_stats.cc
===================================================================
--- runtime/vm/compiler_stats.cc (revision 26375)
+++ runtime/vm/compiler_stats.cc (working copy)
@@ -66,69 +66,69 @@
return;
}
OS::Print("==== Compiler Stats ====\n");
- OS::Print("Number of tokens: %"Pd"\n", num_tokens_total);
- OS::Print(" Literal tokens: %"Pd"\n", num_literal_tokens_total);
- OS::Print(" Ident tokens: %"Pd"\n", num_ident_tokens_total);
- OS::Print("Tokens consumed: %"Pd" (%.2f times number of tokens)\n",
+ OS::Print("Number of tokens: %" Pd "\n", num_tokens_total);
+ OS::Print(" Literal tokens: %" Pd "\n", num_literal_tokens_total);
+ OS::Print(" Ident tokens: %" Pd "\n", num_ident_tokens_total);
+ OS::Print("Tokens consumed: %" Pd " (%.2f times number of tokens)\n",
num_tokens_consumed,
(1.0 * num_tokens_consumed) / num_tokens_total);
- OS::Print("Tokens checked: %"Pd" (%.2f times tokens consumed)\n",
+ OS::Print("Tokens checked: %" Pd " (%.2f times tokens consumed)\n",
num_token_checks, (1.0 * num_token_checks) / num_tokens_consumed);
- OS::Print("Token rewind: %"Pd" (%"Pd"%% of tokens checked)\n",
+ OS::Print("Token rewind: %" Pd " (%" Pd "%% of tokens checked)\n",
num_tokens_rewind, (100 * num_tokens_rewind) / num_token_checks);
- OS::Print("Token lookahead: %"Pd" (%"Pd"%% of tokens checked)\n",
+ OS::Print("Token lookahead: %" Pd " (%" Pd "%% of tokens checked)\n",
num_tokens_lookahead,
(100 * num_tokens_lookahead) / num_token_checks);
- OS::Print("Source length: %"Pd" characters\n", src_length);
+ OS::Print("Source length: %" Pd " characters\n", src_length);
int64_t scan_usecs = scanner_timer.TotalElapsedTime();
- OS::Print("Scanner time: %"Pd64" msecs\n",
+ OS::Print("Scanner time: %" Pd64 " msecs\n",
scan_usecs / 1000);
int64_t parse_usecs = parser_timer.TotalElapsedTime();
- OS::Print("Parser time: %"Pd64" msecs\n",
+ OS::Print("Parser time: %" Pd64 " msecs\n",
parse_usecs / 1000);
int64_t codegen_usecs = codegen_timer.TotalElapsedTime();
- OS::Print("Code gen. time: %"Pd64" msecs\n",
+ OS::Print("Code gen. time: %" Pd64 " msecs\n",
codegen_usecs / 1000);
int64_t graphbuilder_usecs = graphbuilder_timer.TotalElapsedTime();
- OS::Print(" Graph builder: %"Pd64" msecs\n", graphbuilder_usecs / 1000);
+ OS::Print(" Graph builder: %" Pd64 " msecs\n", graphbuilder_usecs / 1000);
int64_t ssa_usecs = ssa_timer.TotalElapsedTime();
- OS::Print(" Graph SSA: %"Pd64" msecs\n", ssa_usecs / 1000);
+ OS::Print(" Graph SSA: %" Pd64 " msecs\n", ssa_usecs / 1000);
int64_t graphinliner_usecs = graphinliner_timer.TotalElapsedTime();
- OS::Print(" Graph inliner: %"Pd64" msecs\n", graphinliner_usecs / 1000);
+ OS::Print(" Graph inliner: %" Pd64 " msecs\n", graphinliner_usecs / 1000);
int64_t graphinliner_parse_usecs =
graphinliner_parse_timer.TotalElapsedTime();
- OS::Print(" Parsing: %"Pd64" msecs\n",
+ OS::Print(" Parsing: %" Pd64 " msecs\n",
graphinliner_parse_usecs / 1000);
int64_t graphinliner_build_usecs =
graphinliner_build_timer.TotalElapsedTime();
- OS::Print(" Building: %"Pd64" msecs\n",
+ OS::Print(" Building: %" Pd64 " msecs\n",
graphinliner_build_usecs / 1000);
int64_t graphinliner_ssa_usecs = graphinliner_ssa_timer.TotalElapsedTime();
- OS::Print(" SSA: %"Pd64" msecs\n",
+ OS::Print(" SSA: %" Pd64 " msecs\n",
graphinliner_ssa_usecs / 1000);
int64_t graphinliner_opt_usecs = graphinliner_opt_timer.TotalElapsedTime();
- OS::Print(" Optimization: %"Pd64" msecs\n",
+ OS::Print(" Optimization: %" Pd64 " msecs\n",
graphinliner_opt_usecs / 1000);
int64_t graphinliner_subst_usecs =
graphinliner_subst_timer.TotalElapsedTime();
- OS::Print(" Substitution: %"Pd64" msecs\n",
+ OS::Print(" Substitution: %" Pd64 " msecs\n",
graphinliner_subst_usecs / 1000);
int64_t graphoptimizer_usecs = graphoptimizer_timer.TotalElapsedTime();
- OS::Print(" Graph optimizer: %"Pd64" msecs\n",
+ OS::Print(" Graph optimizer: %" Pd64 " msecs\n",
(graphoptimizer_usecs - graphinliner_usecs) / 1000);
int64_t graphcompiler_usecs = graphcompiler_timer.TotalElapsedTime();
- OS::Print(" Graph compiler: %"Pd64" msecs\n",
+ OS::Print(" Graph compiler: %" Pd64 " msecs\n",
graphcompiler_usecs / 1000);
int64_t codefinalizer_usecs = codefinalizer_timer.TotalElapsedTime();
- OS::Print(" Code finalizer: %"Pd64" msecs\n",
+ OS::Print(" Code finalizer: %" Pd64 " msecs\n",
codefinalizer_usecs / 1000);
- OS::Print("Compilation speed: %"Pd64" tokens per msec\n",
+ OS::Print("Compilation speed: %" Pd64 " tokens per msec\n",
1000 * num_tokens_total / (parse_usecs + codegen_usecs));
- OS::Print("Code size: %"Pd" KB\n",
+ OS::Print("Code size: %" Pd " KB\n",
code_allocated / 1024);
- OS::Print("Code density: %"Pd" tokens per KB\n",
+ OS::Print("Code density: %" Pd " tokens per KB\n",
num_tokens_total * 1024 / code_allocated);
}
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/dart_api_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698