diff options
author | Vladimir Marko <vmarko@google.com> | 2016-01-22 12:09:44 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2016-01-28 18:13:53 +0000 |
commit | be10e8e99a78caae01fb65769218800d465144ae (patch) | |
tree | cfa5cd3264137febdba6e49cae0393c779c6439c /compiler/optimizing/optimizing_compiler_stats.h | |
parent | fa72bf1823a39b43552fa1b9ae572023830a4ac1 (diff) |
Optimizing: Try pattern substitution when we cannot inline.
Change-Id: I7c01f4494bac8498accc0f087044ec509fee4c98
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; |