diff options
author | 2015-09-17 12:29:02 +0000 | |
---|---|---|
committer | 2015-09-17 12:29:02 +0000 | |
commit | 9d567824e101428adfde58976a1307fbd6c0e247 (patch) | |
tree | 9ea1b98840ee6108408d6f11e0c670e39eb28136 /compiler/optimizing/optimizing_compiler_stats.h | |
parent | b4b543d79b427fa96f0dd635014bd8754a798cc9 (diff) | |
parent | 175dc732c80e6f2afd83209348124df349290ba8 (diff) |
Merge "Support unresolved methods in Optimizing"
Diffstat (limited to 'compiler/optimizing/optimizing_compiler_stats.h')
-rw-r--r-- | compiler/optimizing/optimizing_compiler_stats.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/optimizing_compiler_stats.h b/compiler/optimizing/optimizing_compiler_stats.h index da5cb578b8..c7701b70ad 100644 --- a/compiler/optimizing/optimizing_compiler_stats.h +++ b/compiler/optimizing/optimizing_compiler_stats.h @@ -33,6 +33,7 @@ enum MethodCompilationStat { kInlinedInvoke, kInstructionSimplifications, kInstructionSimplificationsArch, + kUnresolvedMethod, kNotCompiledBranchOutsideMethodCode, kNotCompiledCannotBuildSSA, kNotCompiledCantAccesType, @@ -45,7 +46,6 @@ enum MethodCompilationStat { kNotCompiledSpaceFilter, kNotCompiledUnhandledInstruction, kNotCompiledUnresolvedField, - kNotCompiledUnresolvedMethod, kNotCompiledUnsupportedIsa, kNotCompiledVerifyAtRuntime, kNotOptimizedDisabled, @@ -103,6 +103,7 @@ class OptimizingCompilerStats { case kInlinedInvoke : return "kInlinedInvoke"; case kInstructionSimplifications: return "kInstructionSimplifications"; case kInstructionSimplificationsArch: return "kInstructionSimplificationsArch"; + case kUnresolvedMethod : return "kUnresolvedMethod"; case kNotCompiledBranchOutsideMethodCode: return "kNotCompiledBranchOutsideMethodCode"; case kNotCompiledCannotBuildSSA : return "kNotCompiledCannotBuildSSA"; case kNotCompiledCantAccesType : return "kNotCompiledCantAccesType"; @@ -115,7 +116,6 @@ class OptimizingCompilerStats { case kNotCompiledSpaceFilter : return "kNotCompiledSpaceFilter"; case kNotCompiledUnhandledInstruction : return "kNotCompiledUnhandledInstruction"; case kNotCompiledUnresolvedField : return "kNotCompiledUnresolvedField"; - case kNotCompiledUnresolvedMethod : return "kNotCompiledUnresolvedMethod"; case kNotCompiledUnsupportedIsa : return "kNotCompiledUnsupportedIsa"; case kNotCompiledVerifyAtRuntime : return "kNotCompiledVerifyAtRuntime"; case kNotOptimizedDisabled : return "kNotOptimizedDisabled"; |