| Index: runtime/vm/compiler_stats.h
|
| diff --git a/runtime/vm/compiler_stats.h b/runtime/vm/compiler_stats.h
|
| index 60b3555ca528f66e15e8e85b17bef910124b8966..363a537ad610e20c95a54b3b9da9d82b78519f13 100644
|
| --- a/runtime/vm/compiler_stats.h
|
| +++ b/runtime/vm/compiler_stats.h
|
| @@ -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 ssa_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();
|
| };
|
|
|