diff options
| author | 2016-01-28 18:16:14 +0000 | |
|---|---|---|
| committer | 2016-01-28 18:16:14 +0000 | |
| commit | 1c7736c2823b1127e0e19fa4d71795b894632bc0 (patch) | |
| tree | 6b505829be9a2e0f5ac43a4005c048015e930842 /compiler/optimizing/optimizing_compiler_stats.h | |
| parent | 09cd656da2bb278d376105deea8c1cf357cc0752 (diff) | |
| parent | be10e8e99a78caae01fb65769218800d465144ae (diff) | |
Merge "Optimizing: Try pattern substitution when we cannot inline."
Diffstat (limited to 'compiler/optimizing/optimizing_compiler_stats.h')
| -rw-r--r-- | compiler/optimizing/optimizing_compiler_stats.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/optimizing/optimizing_compiler_stats.h b/compiler/optimizing/optimizing_compiler_stats.h index 881beb49a6..52a7b10cad 100644 --- a/compiler/optimizing/optimizing_compiler_stats.h +++ b/compiler/optimizing/optimizing_compiler_stats.h @@ -29,6 +29,7 @@ enum MethodCompilationStat { kAttemptCompilation = 0, kCompiled, kInlinedInvoke, + kReplacedInvokeWithSimplePattern, kInstructionSimplifications, kInstructionSimplificationsArch, kUnresolvedMethod, @@ -97,6 +98,7 @@ class OptimizingCompilerStats { case kAttemptCompilation : name = "AttemptCompilation"; break; case kCompiled : name = "Compiled"; break; case kInlinedInvoke : name = "InlinedInvoke"; break; + case kReplacedInvokeWithSimplePattern: name = "ReplacedInvokeWithSimplePattern"; break; case kInstructionSimplifications: name = "InstructionSimplifications"; break; case kInstructionSimplificationsArch: name = "InstructionSimplificationsArch"; break; case kUnresolvedMethod : name = "UnresolvedMethod"; break; |