Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_COMPILER_OPTIMIZING_OPTIMIZING_COMPILER_STATS_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_OPTIMIZING_COMPILER_STATS_H_ |
| 19 | |
| 20 | #include <sstream> |
| 21 | #include <string> |
Andreas Gampe | da9badb | 2015-06-05 20:22:12 -0700 | [diff] [blame] | 22 | #include <type_traits> |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 23 | |
| 24 | #include "atomic.h" |
| 25 | |
| 26 | namespace art { |
| 27 | |
| 28 | enum MethodCompilationStat { |
| 29 | kAttemptCompilation = 0, |
| 30 | kCompiledBaseline, |
| 31 | kCompiledOptimized, |
Nicolas Geoffray | 12be74e | 2015-03-30 13:29:08 +0100 | [diff] [blame] | 32 | kCompiledQuick, |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 33 | kInlinedInvoke, |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 34 | kInstructionSimplifications, |
| 35 | kNotCompiledBranchOutsideMethodCode, |
| 36 | kNotCompiledCannotBuildSSA, |
| 37 | kNotCompiledCantAccesType, |
| 38 | kNotCompiledClassNotVerified, |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 39 | kNotCompiledHugeMethod, |
| 40 | kNotCompiledLargeMethodNoBranches, |
Nicolas Geoffray | 2e33525 | 2015-06-18 11:11:27 +0100 | [diff] [blame] | 41 | kNotCompiledMalformedOpcode, |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 42 | kNotCompiledNoCodegen, |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 43 | kNotCompiledPathological, |
Nicolas Geoffray | 36540cb | 2015-03-23 14:45:53 +0000 | [diff] [blame] | 44 | kNotCompiledSpaceFilter, |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 45 | kNotCompiledUnhandledInstruction, |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 46 | kNotCompiledUnresolvedField, |
| 47 | kNotCompiledUnresolvedMethod, |
| 48 | kNotCompiledUnsupportedIsa, |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 49 | kNotCompiledVerifyAtRuntime, |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 50 | kNotOptimizedDisabled, |
| 51 | kNotOptimizedRegisterAllocator, |
| 52 | kNotOptimizedTryCatch, |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 53 | kRemovedCheckedCast, |
Calin Juravle | 8f20bdb | 2015-04-21 14:07:50 +0100 | [diff] [blame] | 54 | kRemovedDeadInstruction, |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 55 | kRemovedNullCheck, |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 56 | kLastStat |
| 57 | }; |
| 58 | |
| 59 | class OptimizingCompilerStats { |
| 60 | public: |
| 61 | OptimizingCompilerStats() {} |
| 62 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 63 | void RecordStat(MethodCompilationStat stat, size_t count = 1) { |
| 64 | compile_stats_[stat] += count; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | void Log() const { |
| 68 | if (compile_stats_[kAttemptCompilation] == 0) { |
| 69 | LOG(INFO) << "Did not compile any method."; |
| 70 | } else { |
| 71 | size_t unoptimized_percent = |
| 72 | compile_stats_[kCompiledBaseline] * 100 / compile_stats_[kAttemptCompilation]; |
| 73 | size_t optimized_percent = |
| 74 | compile_stats_[kCompiledOptimized] * 100 / compile_stats_[kAttemptCompilation]; |
Nicolas Geoffray | 12be74e | 2015-03-30 13:29:08 +0100 | [diff] [blame] | 75 | size_t quick_percent = |
| 76 | compile_stats_[kCompiledQuick] * 100 / compile_stats_[kAttemptCompilation]; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 77 | std::ostringstream oss; |
Nicolas Geoffray | 12be74e | 2015-03-30 13:29:08 +0100 | [diff] [blame] | 78 | oss << "Attempted compilation of " << compile_stats_[kAttemptCompilation] << " methods: "; |
| 79 | |
| 80 | oss << unoptimized_percent << "% (" << compile_stats_[kCompiledBaseline] << ") unoptimized, "; |
| 81 | oss << optimized_percent << "% (" << compile_stats_[kCompiledOptimized] << ") optimized, "; |
| 82 | oss << quick_percent << "% (" << compile_stats_[kCompiledQuick] << ") quick."; |
| 83 | |
| 84 | LOG(INFO) << oss.str(); |
| 85 | |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 86 | for (int i = 0; i < kLastStat; i++) { |
| 87 | if (compile_stats_[i] != 0) { |
Andreas Gampe | da9badb | 2015-06-05 20:22:12 -0700 | [diff] [blame] | 88 | LOG(INFO) << PrintMethodCompilationStat(static_cast<MethodCompilationStat>(i)) << ": " |
| 89 | << compile_stats_[i]; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 90 | } |
| 91 | } |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | |
| 95 | private: |
Andreas Gampe | da9badb | 2015-06-05 20:22:12 -0700 | [diff] [blame] | 96 | std::string PrintMethodCompilationStat(MethodCompilationStat stat) const { |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 97 | switch (stat) { |
| 98 | case kAttemptCompilation : return "kAttemptCompilation"; |
| 99 | case kCompiledBaseline : return "kCompiledBaseline"; |
| 100 | case kCompiledOptimized : return "kCompiledOptimized"; |
Nicolas Geoffray | 12be74e | 2015-03-30 13:29:08 +0100 | [diff] [blame] | 101 | case kCompiledQuick : return "kCompiledQuick"; |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 102 | case kInlinedInvoke : return "kInlinedInvoke"; |
Calin Juravle | 8f20bdb | 2015-04-21 14:07:50 +0100 | [diff] [blame] | 103 | case kInstructionSimplifications: return "kInstructionSimplifications"; |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 104 | case kNotCompiledBranchOutsideMethodCode: return "kNotCompiledBranchOutsideMethodCode"; |
| 105 | case kNotCompiledCannotBuildSSA : return "kNotCompiledCannotBuildSSA"; |
| 106 | case kNotCompiledCantAccesType : return "kNotCompiledCantAccesType"; |
| 107 | case kNotCompiledClassNotVerified : return "kNotCompiledClassNotVerified"; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 108 | case kNotCompiledHugeMethod : return "kNotCompiledHugeMethod"; |
| 109 | case kNotCompiledLargeMethodNoBranches : return "kNotCompiledLargeMethodNoBranches"; |
Nicolas Geoffray | 2e33525 | 2015-06-18 11:11:27 +0100 | [diff] [blame] | 110 | case kNotCompiledMalformedOpcode : return "kNotCompiledMalformedOpcode"; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 111 | case kNotCompiledNoCodegen : return "kNotCompiledNoCodegen"; |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 112 | case kNotCompiledPathological : return "kNotCompiledPathological"; |
Nicolas Geoffray | 36540cb | 2015-03-23 14:45:53 +0000 | [diff] [blame] | 113 | case kNotCompiledSpaceFilter : return "kNotCompiledSpaceFilter"; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 114 | case kNotCompiledUnhandledInstruction : return "kNotCompiledUnhandledInstruction"; |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 115 | case kNotCompiledUnresolvedField : return "kNotCompiledUnresolvedField"; |
| 116 | case kNotCompiledUnresolvedMethod : return "kNotCompiledUnresolvedMethod"; |
| 117 | case kNotCompiledUnsupportedIsa : return "kNotCompiledUnsupportedIsa"; |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 118 | case kNotCompiledVerifyAtRuntime : return "kNotCompiledVerifyAtRuntime"; |
Calin Juravle | 702d260 | 2015-04-30 19:28:21 +0100 | [diff] [blame] | 119 | case kNotOptimizedDisabled : return "kNotOptimizedDisabled"; |
| 120 | case kNotOptimizedRegisterAllocator : return "kNotOptimizedRegisterAllocator"; |
| 121 | case kNotOptimizedTryCatch : return "kNotOptimizedTryCatch"; |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 122 | case kRemovedCheckedCast: return "kRemovedCheckedCast"; |
Calin Juravle | 8f20bdb | 2015-04-21 14:07:50 +0100 | [diff] [blame] | 123 | case kRemovedDeadInstruction: return "kRemovedDeadInstruction"; |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 124 | case kRemovedNullCheck: return "kRemovedNullCheck"; |
Andreas Gampe | da9badb | 2015-06-05 20:22:12 -0700 | [diff] [blame] | 125 | |
| 126 | case kLastStat: break; // Invalid to print out. |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 127 | } |
Andreas Gampe | da9badb | 2015-06-05 20:22:12 -0700 | [diff] [blame] | 128 | LOG(FATAL) << "invalid stat " |
| 129 | << static_cast<std::underlying_type<MethodCompilationStat>::type>(stat); |
| 130 | UNREACHABLE(); |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | AtomicInteger compile_stats_[kLastStat]; |
| 134 | |
| 135 | DISALLOW_COPY_AND_ASSIGN(OptimizingCompilerStats); |
| 136 | }; |
| 137 | |
| 138 | } // namespace art |
| 139 | |
| 140 | #endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_COMPILER_STATS_H_ |