Chromium Code Reviews| 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(); |
| }; |