diff options
author | Roland Levillain <rpl@google.com> | 2015-04-10 16:20:23 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-10 16:20:23 +0000 |
commit | 8e5fc53bd2f9ab5a46547959a176eba176ee115f (patch) | |
tree | a480bdc4a80f63d46abcde2ef7a36e1ad072d624 /compiler/optimizing/optimizing_compiler_stats.h | |
parent | 27ef3177fb164b5e1a3b8a6fd43d25f3074e586d (diff) | |
parent | 188d4316a880ae24aed315aa52dc503c4fcb1ec7 (diff) | |
download | android_art-8e5fc53bd2f9ab5a46547959a176eba176ee115f.tar.gz android_art-8e5fc53bd2f9ab5a46547959a176eba176ee115f.tar.bz2 android_art-8e5fc53bd2f9ab5a46547959a176eba176ee115f.zip |
Merge "Opt compiler: Instruction simplification for HAdd, HNeg, HNot, HSub."
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 b97a66719d..4d5b8d0639 100644 --- a/compiler/optimizing/optimizing_compiler_stats.h +++ b/compiler/optimizing/optimizing_compiler_stats.h @@ -47,6 +47,7 @@ enum MethodCompilationStat { kNotCompiledUnhandledInstruction, kRemovedCheckedCast, kRemovedNullCheck, + kInstructionSimplifications, kLastStat }; @@ -110,6 +111,7 @@ class OptimizingCompilerStats { case kNotCompiledUnhandledInstruction : return "kNotCompiledUnhandledInstruction"; case kRemovedCheckedCast: return "kRemovedCheckedCast"; case kRemovedNullCheck: return "kRemovedNullCheck"; + case kInstructionSimplifications: return "kInstructionSimplifications"; default: LOG(FATAL) << "invalid stat"; } return ""; |