blob: 6296eedfb03a5d2db2fb7218703cff7e9435562f [file] [log] [blame]
Calin Juravle48c2b032014-12-09 18:11:36 +00001/*
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
Calin Juravlead543382015-11-19 17:26:29 +000020#include <iomanip>
Calin Juravle48c2b032014-12-09 18:11:36 +000021#include <string>
Andreas Gampeda9badb2015-06-05 20:22:12 -070022#include <type_traits>
Calin Juravle48c2b032014-12-09 18:11:36 +000023
24#include "atomic.h"
25
26namespace art {
27
28enum MethodCompilationStat {
29 kAttemptCompilation = 0,
Calin Juravlead543382015-11-19 17:26:29 +000030 kCompiled,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000031 kInlinedInvoke,
Calin Juravle702d2602015-04-30 19:28:21 +010032 kInstructionSimplifications,
Alexandre Rames44b9cf92015-08-19 15:39:06 +010033 kInstructionSimplificationsArch,
Calin Juravle175dc732015-08-25 15:42:32 +010034 kUnresolvedMethod,
Calin Juravlee460d1d2015-09-29 04:52:17 +010035 kUnresolvedField,
Calin Juravle07380a22015-09-17 14:15:12 +010036 kUnresolvedFieldNotAFastAccess,
Calin Juravlead543382015-11-19 17:26:29 +000037 kRemovedCheckedCast,
38 kRemovedDeadInstruction,
39 kRemovedNullCheck,
Calin Juravle702d2602015-04-30 19:28:21 +010040 kNotCompiledBranchOutsideMethodCode,
Alex Light68289a52015-12-15 17:30:30 -080041 kNotCompiledCannotBuildSSA,
Calin Juravle48c2b032014-12-09 18:11:36 +000042 kNotCompiledHugeMethod,
43 kNotCompiledLargeMethodNoBranches,
Nicolas Geoffray2e335252015-06-18 11:11:27 +010044 kNotCompiledMalformedOpcode,
Calin Juravle48c2b032014-12-09 18:11:36 +000045 kNotCompiledNoCodegen,
Calin Juravle702d2602015-04-30 19:28:21 +010046 kNotCompiledPathological,
Nicolas Geoffray36540cb2015-03-23 14:45:53 +000047 kNotCompiledSpaceFilter,
Calin Juravle48c2b032014-12-09 18:11:36 +000048 kNotCompiledUnhandledInstruction,
Calin Juravle702d2602015-04-30 19:28:21 +010049 kNotCompiledUnsupportedIsa,
Calin Juravlead543382015-11-19 17:26:29 +000050 kNotCompiledVerificationError,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010051 kNotCompiledVerifyAtRuntime,
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010052 kInlinedMonomorphicCall,
53 kMonomorphicCall,
54 kPolymorphicCall,
55 kMegamorphicCall,
Calin Juravle48c2b032014-12-09 18:11:36 +000056 kLastStat
57};
58
59class OptimizingCompilerStats {
60 public:
61 OptimizingCompilerStats() {}
62
David Brazdil2d7352b2015-04-20 14:52:42 +010063 void RecordStat(MethodCompilationStat stat, size_t count = 1) {
64 compile_stats_[stat] += count;
Calin Juravle48c2b032014-12-09 18:11:36 +000065 }
66
67 void Log() const {
Calin Juravlead543382015-11-19 17:26:29 +000068 if (!kIsDebugBuild && !VLOG_IS_ON(compiler)) {
69 // Log only in debug builds or if the compiler is verbose.
70 return;
71 }
72
Calin Juravle48c2b032014-12-09 18:11:36 +000073 if (compile_stats_[kAttemptCompilation] == 0) {
74 LOG(INFO) << "Did not compile any method.";
75 } else {
Calin Juravlead543382015-11-19 17:26:29 +000076 float compiled_percent =
77 compile_stats_[kCompiled] * 100.0f / compile_stats_[kAttemptCompilation];
78 LOG(INFO) << "Attempted compilation of " << compile_stats_[kAttemptCompilation]
79 << " methods: " << std::fixed << std::setprecision(2)
80 << compiled_percent << "% (" << compile_stats_[kCompiled] << ") compiled.";
Nicolas Geoffray12be74e2015-03-30 13:29:08 +010081
Calin Juravle48c2b032014-12-09 18:11:36 +000082 for (int i = 0; i < kLastStat; i++) {
83 if (compile_stats_[i] != 0) {
Andreas Gampeda9badb2015-06-05 20:22:12 -070084 LOG(INFO) << PrintMethodCompilationStat(static_cast<MethodCompilationStat>(i)) << ": "
85 << compile_stats_[i];
Calin Juravle48c2b032014-12-09 18:11:36 +000086 }
87 }
Calin Juravle48c2b032014-12-09 18:11:36 +000088 }
89 }
90
91 private:
Andreas Gampeda9badb2015-06-05 20:22:12 -070092 std::string PrintMethodCompilationStat(MethodCompilationStat stat) const {
Calin Juravlead543382015-11-19 17:26:29 +000093 std::string name;
Calin Juravle48c2b032014-12-09 18:11:36 +000094 switch (stat) {
Calin Juravlead543382015-11-19 17:26:29 +000095 case kAttemptCompilation : name = "AttemptCompilation"; break;
96 case kCompiled : name = "Compiled"; break;
97 case kInlinedInvoke : name = "InlinedInvoke"; break;
98 case kInstructionSimplifications: name = "InstructionSimplifications"; break;
99 case kInstructionSimplificationsArch: name = "InstructionSimplificationsArch"; break;
100 case kUnresolvedMethod : name = "UnresolvedMethod"; break;
101 case kUnresolvedField : name = "UnresolvedField"; break;
102 case kUnresolvedFieldNotAFastAccess : name = "UnresolvedFieldNotAFastAccess"; break;
103 case kRemovedCheckedCast: name = "RemovedCheckedCast"; break;
104 case kRemovedDeadInstruction: name = "RemovedDeadInstruction"; break;
105 case kRemovedNullCheck: name = "RemovedNullCheck"; break;
106 case kNotCompiledBranchOutsideMethodCode: name = "NotCompiledBranchOutsideMethodCode"; break;
Alex Light68289a52015-12-15 17:30:30 -0800107 case kNotCompiledCannotBuildSSA : name = "NotCompiledCannotBuildSSA"; break;
Calin Juravlead543382015-11-19 17:26:29 +0000108 case kNotCompiledHugeMethod : name = "NotCompiledHugeMethod"; break;
109 case kNotCompiledLargeMethodNoBranches : name = "NotCompiledLargeMethodNoBranches"; break;
110 case kNotCompiledMalformedOpcode : name = "NotCompiledMalformedOpcode"; break;
111 case kNotCompiledNoCodegen : name = "NotCompiledNoCodegen"; break;
112 case kNotCompiledPathological : name = "NotCompiledPathological"; break;
113 case kNotCompiledSpaceFilter : name = "NotCompiledSpaceFilter"; break;
114 case kNotCompiledUnhandledInstruction : name = "NotCompiledUnhandledInstruction"; break;
115 case kNotCompiledUnsupportedIsa : name = "NotCompiledUnsupportedIsa"; break;
116 case kNotCompiledVerificationError : name = "NotCompiledVerificationError"; break;
117 case kNotCompiledVerifyAtRuntime : name = "NotCompiledVerifyAtRuntime"; break;
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100118 case kInlinedMonomorphicCall: name = "InlinedMonomorphicCall"; break;
119 case kMonomorphicCall: name = "MonomorphicCall"; break;
120 case kPolymorphicCall: name = "PolymorphicCall"; break;
121 case kMegamorphicCall: name = "kMegamorphicCall"; break;
Andreas Gampeda9badb2015-06-05 20:22:12 -0700122
Calin Juravlead543382015-11-19 17:26:29 +0000123 case kLastStat:
124 LOG(FATAL) << "invalid stat "
125 << static_cast<std::underlying_type<MethodCompilationStat>::type>(stat);
126 UNREACHABLE();
Calin Juravle48c2b032014-12-09 18:11:36 +0000127 }
Calin Juravlead543382015-11-19 17:26:29 +0000128 return "OptStat#" + name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000129 }
130
131 AtomicInteger compile_stats_[kLastStat];
132
133 DISALLOW_COPY_AND_ASSIGN(OptimizingCompilerStats);
134};
135
136} // namespace art
137
138#endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_COMPILER_STATS_H_