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

Unified Diff: runtime/vm/compiler_stats.h

Issue 11236063: Restructure code generation timers and add sub-timers for inlining phases. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
Index: runtime/vm/compiler_stats.h
diff --git a/runtime/vm/compiler_stats.h b/runtime/vm/compiler_stats.h
index 60b3555ca528f66e15e8e85b17bef910124b8966..aefc28d18be3f1ac3e38390fd9f0f1f5ca196f28 100644
--- a/runtime/vm/compiler_stats.h
+++ b/runtime/vm/compiler_stats.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
Kevin Millikin (Google) 2012/10/23 07:54:56 I'm not sure we do this any more. Let me ask.
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -32,8 +32,19 @@ class CompilerStats : AllStatic {
static Timer scanner_timer; // Cumulative runtime of scanner.
static Timer codegen_timer; // Cumulative runtime of code generator.
static Timer graphbuilder_timer; // Included in codegen_timer.
- static Timer graphcompiler_timer; // Included in codegen_timer.
- static Timer codefinalizer_timer; // Included in codegen_timer.
+ static Timer graphssa_timer; // Included in codegen_timer.
+ static Timer graphinliner_timer; // Included in codegen_timer.
+ static Timer graphinliner_parse_timer; // Included in codegen_timer.
+ static Timer graphinliner_build_timer; // Included in codegen_timer.
+ static Timer graphinliner_ssa_timer; // Included in codegen_timer.
+ static Timer graphinliner_opt_timer; // Included in codegen_timer.
+ static Timer graphinliner_find_timer; // Included in codegen_timer.
+ static Timer graphinliner_plug_timer; // Included in codegen_timer.
+ static Timer graphinliner_subst_timer; // Included in codegen_timer.
+
+ static Timer graphoptimizer_timer; // Included in codegen_timer.
+ static Timer graphcompiler_timer; // Included in codegen_timer.
+ static Timer codefinalizer_timer; // Included in codegen_timer.
static void Print();
};

Powered by Google App Engine
This is Rietveld 408576698