diff options
| author | 2016-04-04 11:11:34 +0000 | |
|---|---|---|
| committer | 2016-04-04 11:11:34 +0000 | |
| commit | a2013f66442bfe429f027b6f8fb5f88635fe51d5 (patch) | |
| tree | 01702f6df5c39925b354a3152dd04289e7d97062 /compiler/optimizing/optimizing_compiler_stats.h | |
| parent | 0cb5c86b7021e70cbf584c1455aad1ef383af786 (diff) | |
| parent | 86ea7eeabe30c98bbe1651a51d03cb89776724e7 (diff) | |
Merge "Build dominator tree before generating HInstructions"
Diffstat (limited to 'compiler/optimizing/optimizing_compiler_stats.h')
| -rw-r--r-- | compiler/optimizing/optimizing_compiler_stats.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/optimizing/optimizing_compiler_stats.h b/compiler/optimizing/optimizing_compiler_stats.h index 3717926a97..9cc6ea45d0 100644 --- a/compiler/optimizing/optimizing_compiler_stats.h +++ b/compiler/optimizing/optimizing_compiler_stats.h @@ -38,7 +38,8 @@ enum MethodCompilationStat { kRemovedCheckedCast, kRemovedDeadInstruction, kRemovedNullCheck, - kNotCompiledBranchOutsideMethodCode, + kNotCompiledSkipped, + kNotCompiledInvalidBytecode, kNotCompiledThrowCatchLoop, kNotCompiledAmbiguousArrayOp, kNotCompiledHugeMethod, @@ -115,7 +116,8 @@ class OptimizingCompilerStats { case kRemovedCheckedCast: name = "RemovedCheckedCast"; break; case kRemovedDeadInstruction: name = "RemovedDeadInstruction"; break; case kRemovedNullCheck: name = "RemovedNullCheck"; break; - case kNotCompiledBranchOutsideMethodCode: name = "NotCompiledBranchOutsideMethodCode"; break; + case kNotCompiledSkipped: name = "NotCompiledSkipped"; break; + case kNotCompiledInvalidBytecode: name = "NotCompiledInvalidBytecode"; break; case kNotCompiledThrowCatchLoop : name = "NotCompiledThrowCatchLoop"; break; case kNotCompiledAmbiguousArrayOp : name = "NotCompiledAmbiguousArrayOp"; break; case kNotCompiledHugeMethod : name = "NotCompiledHugeMethod"; break; |