blob: 1056fac5ef8741f88b2f537639772b9695ab46c3 [file] [log] [blame]
Nicolas Geoffray5550ca82015-08-21 18:38:30 +01001/*
2 * Copyright (C) 2015 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_RUNTIME_JIT_PROFILING_INFO_H_
18#define ART_RUNTIME_JIT_PROFILING_INFO_H_
19
20#include <vector>
21
22#include "base/macros.h"
23#include "gc_root.h"
24
25namespace art {
26
27class ArtMethod;
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010028class ProfilingInfo;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010029
Nicolas Geoffray26705e22015-10-28 12:50:11 +000030namespace jit {
31class JitCodeCache;
32}
33
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010034namespace mirror {
35class Class;
36}
37
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010038// Structure to store the classes seen at runtime for a specific instruction.
39// Once the classes_ array is full, we consider the INVOKE to be megamorphic.
40class InlineCache {
41 public:
42 bool IsMonomorphic() const {
43 DCHECK_GE(kIndividualCacheSize, 2);
44 return !classes_[0].IsNull() && classes_[1].IsNull();
45 }
46
47 bool IsMegamorphic() const {
48 for (size_t i = 0; i < kIndividualCacheSize; ++i) {
49 if (classes_[i].IsNull()) {
50 return false;
51 }
52 }
53 return true;
54 }
55
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070056 mirror::Class* GetMonomorphicType() const REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010057 // Note that we cannot ensure the inline cache is actually monomorphic
58 // at this point, as other threads may have updated it.
Nicolas Geoffray07e3ca92016-03-11 09:57:57 +000059 DCHECK(!classes_[0].IsNull());
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010060 return classes_[0].Read();
61 }
62
Nicolas Geoffray07e3ca92016-03-11 09:57:57 +000063 bool IsUninitialized() const {
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010064 return classes_[0].IsNull();
65 }
66
67 bool IsPolymorphic() const {
68 DCHECK_GE(kIndividualCacheSize, 3);
69 return !classes_[1].IsNull() && classes_[kIndividualCacheSize - 1].IsNull();
70 }
71
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070072 mirror::Class* GetTypeAt(size_t i) const REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffraya42363f2015-12-17 14:57:09 +000073 return classes_[i].Read();
74 }
75
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010076 static constexpr uint16_t kIndividualCacheSize = 5;
Nicolas Geoffraya42363f2015-12-17 14:57:09 +000077
78 private:
Nicolas Geoffray73be1e82015-09-17 15:22:56 +010079 uint32_t dex_pc_;
80 GcRoot<mirror::Class> classes_[kIndividualCacheSize];
81
82 friend class ProfilingInfo;
83
84 DISALLOW_COPY_AND_ASSIGN(InlineCache);
85};
86
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010087/**
88 * Profiling info for a method, created and filled by the interpreter once the
89 * method is warm, and used by the compiler to drive optimizations.
90 */
91class ProfilingInfo {
92 public:
Nicolas Geoffray26705e22015-10-28 12:50:11 +000093 // Create a ProfilingInfo for 'method'. Return whether it succeeded, or if it is
94 // not needed in case the method does not have virtual/interface invocations.
95 static bool Create(Thread* self, ArtMethod* method, bool retry_allocation)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070096 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010097
98 // Add information from an executed INVOKE instruction to the profile.
Nicolas Geoffray26705e22015-10-28 12:50:11 +000099 void AddInvokeInfo(uint32_t dex_pc, mirror::Class* cls)
100 // Method should not be interruptible, as it manipulates the ProfilingInfo
101 // which can be concurrently collected.
102 REQUIRES(Roles::uninterruptible_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700103 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100104
105 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
106 template<typename RootVisitorType>
107 void VisitRoots(RootVisitorType& visitor) NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartier65975772016-08-05 10:46:36 -0700108 visitor.VisitRootIfNonNull(holding_class_.AddressWithoutBarrier());
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100109 for (size_t i = 0; i < number_of_inline_caches_; ++i) {
110 InlineCache* cache = &cache_[i];
111 for (size_t j = 0; j < InlineCache::kIndividualCacheSize; ++j) {
112 visitor.VisitRootIfNonNull(cache->classes_[j].AddressWithoutBarrier());
113 }
114 }
115 }
116
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000117 ArtMethod* GetMethod() const {
118 return method_;
119 }
120
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100121 InlineCache* GetInlineCache(uint32_t dex_pc);
122
buzbee454b3b62016-04-07 14:42:47 -0700123 bool IsMethodBeingCompiled(bool osr) const {
124 return osr
125 ? is_osr_method_being_compiled_
126 : is_method_being_compiled_;
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100127 }
128
buzbee454b3b62016-04-07 14:42:47 -0700129 void SetIsMethodBeingCompiled(bool value, bool osr) {
130 if (osr) {
131 is_osr_method_being_compiled_ = value;
132 } else {
133 is_method_being_compiled_ = value;
134 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100135 }
136
Nicolas Geoffray35122442016-03-02 12:05:30 +0000137 void SetSavedEntryPoint(const void* entry_point) {
138 saved_entry_point_ = entry_point;
139 }
140
141 const void* GetSavedEntryPoint() const {
142 return saved_entry_point_;
143 }
144
Nicolas Geoffrayb6e20ae2016-03-07 14:29:04 +0000145 void ClearGcRootsInInlineCaches() {
146 for (size_t i = 0; i < number_of_inline_caches_; ++i) {
147 InlineCache* cache = &cache_[i];
148 memset(&cache->classes_[0],
149 0,
150 InlineCache::kIndividualCacheSize * sizeof(GcRoot<mirror::Class>));
151 }
152 }
153
154 void IncrementInlineUse() {
155 DCHECK_NE(current_inline_uses_, std::numeric_limits<uint16_t>::max());
156 current_inline_uses_++;
157 }
158
159 void DecrementInlineUse() {
160 DCHECK_GT(current_inline_uses_, 0);
161 current_inline_uses_--;
162 }
163
164 bool IsInUseByCompiler() const {
buzbee454b3b62016-04-07 14:42:47 -0700165 return IsMethodBeingCompiled(/*osr*/ true) || IsMethodBeingCompiled(/*osr*/ false) ||
166 (current_inline_uses_ > 0);
Nicolas Geoffray511e41b2016-03-02 17:09:35 +0000167 }
168
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100169 private:
Mathieu Chartier65975772016-08-05 10:46:36 -0700170 ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries);
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100171
172 // Number of instructions we are profiling in the ArtMethod.
173 const uint32_t number_of_inline_caches_;
174
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000175 // Method this profiling info is for.
176 ArtMethod* const method_;
177
Mathieu Chartier65975772016-08-05 10:46:36 -0700178 // Holding class for the method in case method is a copied method.
179 GcRoot<mirror::Class> holding_class_;
180
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100181 // Whether the ArtMethod is currently being compiled. This flag
182 // is implicitly guarded by the JIT code cache lock.
183 // TODO: Make the JIT code cache lock global.
184 bool is_method_being_compiled_;
buzbee454b3b62016-04-07 14:42:47 -0700185 bool is_osr_method_being_compiled_;
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100186
Nicolas Geoffrayb6e20ae2016-03-07 14:29:04 +0000187 // When the compiler inlines the method associated to this ProfilingInfo,
188 // it updates this counter so that the GC does not try to clear the inline caches.
189 uint16_t current_inline_uses_;
190
Nicolas Geoffray35122442016-03-02 12:05:30 +0000191 // Entry point of the corresponding ArtMethod, while the JIT code cache
192 // is poking for the liveness of compiled code.
193 const void* saved_entry_point_;
194
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100195 // Dynamically allocated array of size `number_of_inline_caches_`.
196 InlineCache cache_[0];
197
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000198 friend class jit::JitCodeCache;
199
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100200 DISALLOW_COPY_AND_ASSIGN(ProfilingInfo);
201};
202
203} // namespace art
204
205#endif // ART_RUNTIME_JIT_PROFILING_INFO_H_