blob: 1d14203b8130ac971cd73953635c34052db247d3 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 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
Mathieu Chartiere401d142015-04-22 13:56:20 -070017#ifndef ART_RUNTIME_ART_METHOD_H_
18#define ART_RUNTIME_ART_METHOD_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
Andreas Gampe479b1de2016-07-19 18:27:17 -070020#include <cstddef>
21
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010022#include "base/bit_utils.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010023#include "base/casts.h"
Jeff Hao790ad902013-05-22 15:02:08 -070024#include "dex_file.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070025#include "gc_root.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "invoke_type.h"
Mathieu Chartier36b58f52014-12-10 12:06:45 -080027#include "method_reference.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "modifiers.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "mirror/object.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070030#include "read_barrier_option.h"
Sebastien Hertze4b7c892014-12-17 20:02:50 +010031#include "stack.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070032#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033
34namespace art {
35
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036union JValue;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010037class OatQuickMethodHeader;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010038class ProfilingInfo;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070039class ScopedObjectAccessAlreadyRunnable;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040class StringPiece;
Jeff Hao16743632013-05-08 10:59:04 -070041class ShadowFrame;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042
43namespace mirror {
Mathieu Chartiere401d142015-04-22 13:56:20 -070044class Array;
45class Class;
Mathieu Chartiere42888f2016-04-14 10:49:19 -070046class IfTable;
Mathieu Chartiere401d142015-04-22 13:56:20 -070047class PointerArray;
48} // namespace mirror
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049
Nicolas Geoffray796d6302016-03-13 22:22:31 +000050// Table to resolve IMT conflicts at runtime. The table is attached to
51// the jni entrypoint of IMT conflict ArtMethods.
52// The table contains a list of pairs of { interface_method, implementation_method }
53// with the last entry being null to make an assembly implementation of a lookup
54// faster.
55class ImtConflictTable {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070056 enum MethodIndex {
57 kMethodInterface,
58 kMethodImplementation,
59 kMethodCount, // Number of elements in enum.
60 };
61
Nicolas Geoffray796d6302016-03-13 22:22:31 +000062 public:
63 // Build a new table copying `other` and adding the new entry formed of
64 // the pair { `interface_method`, `implementation_method` }
65 ImtConflictTable(ImtConflictTable* other,
66 ArtMethod* interface_method,
Mathieu Chartiere42888f2016-04-14 10:49:19 -070067 ArtMethod* implementation_method,
68 size_t pointer_size) {
69 const size_t count = other->NumEntries(pointer_size);
70 for (size_t i = 0; i < count; ++i) {
71 SetInterfaceMethod(i, pointer_size, other->GetInterfaceMethod(i, pointer_size));
72 SetImplementationMethod(i, pointer_size, other->GetImplementationMethod(i, pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +000073 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -070074 SetInterfaceMethod(count, pointer_size, interface_method);
75 SetImplementationMethod(count, pointer_size, implementation_method);
Nicolas Geoffray796d6302016-03-13 22:22:31 +000076 // Add the null marker.
Mathieu Chartiere42888f2016-04-14 10:49:19 -070077 SetInterfaceMethod(count + 1, pointer_size, nullptr);
78 SetImplementationMethod(count + 1, pointer_size, nullptr);
Nicolas Geoffray796d6302016-03-13 22:22:31 +000079 }
80
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070081 // num_entries excludes the header.
Mathieu Chartiere42888f2016-04-14 10:49:19 -070082 ImtConflictTable(size_t num_entries, size_t pointer_size) {
83 SetInterfaceMethod(num_entries, pointer_size, nullptr);
84 SetImplementationMethod(num_entries, pointer_size, nullptr);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070085 }
86
87 // Set an entry at an index.
Mathieu Chartiere42888f2016-04-14 10:49:19 -070088 void SetInterfaceMethod(size_t index, size_t pointer_size, ArtMethod* method) {
89 SetMethod(index * kMethodCount + kMethodInterface, pointer_size, method);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070090 }
91
Mathieu Chartiere42888f2016-04-14 10:49:19 -070092 void SetImplementationMethod(size_t index, size_t pointer_size, ArtMethod* method) {
93 SetMethod(index * kMethodCount + kMethodImplementation, pointer_size, method);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070094 }
95
Mathieu Chartiere42888f2016-04-14 10:49:19 -070096 ArtMethod* GetInterfaceMethod(size_t index, size_t pointer_size) const {
97 return GetMethod(index * kMethodCount + kMethodInterface, pointer_size);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070098 }
99
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700100 ArtMethod* GetImplementationMethod(size_t index, size_t pointer_size) const {
101 return GetMethod(index * kMethodCount + kMethodImplementation, pointer_size);
102 }
103
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000104 // Return true if two conflict tables are the same.
105 bool Equals(ImtConflictTable* other, size_t pointer_size) const {
106 size_t num = NumEntries(pointer_size);
107 if (num != other->NumEntries(pointer_size)) {
108 return false;
109 }
110 for (size_t i = 0; i < num; ++i) {
111 if (GetInterfaceMethod(i, pointer_size) != other->GetInterfaceMethod(i, pointer_size) ||
112 GetImplementationMethod(i, pointer_size) !=
113 other->GetImplementationMethod(i, pointer_size)) {
114 return false;
115 }
116 }
117 return true;
118 }
119
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700120 // Visit all of the entries.
121 // NO_THREAD_SAFETY_ANALYSIS for calling with held locks. Visitor is passed a pair of ArtMethod*
122 // and also returns one. The order is <interface, implementation>.
123 template<typename Visitor>
124 void Visit(const Visitor& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS {
125 uint32_t table_index = 0;
126 for (;;) {
127 ArtMethod* interface_method = GetInterfaceMethod(table_index, pointer_size);
128 if (interface_method == nullptr) {
129 break;
130 }
131 ArtMethod* implementation_method = GetImplementationMethod(table_index, pointer_size);
132 auto input = std::make_pair(interface_method, implementation_method);
133 std::pair<ArtMethod*, ArtMethod*> updated = visitor(input);
134 if (input.first != updated.first) {
135 SetInterfaceMethod(table_index, pointer_size, updated.first);
136 }
137 if (input.second != updated.second) {
138 SetImplementationMethod(table_index, pointer_size, updated.second);
139 }
140 ++table_index;
141 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700142 }
143
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000144 // Lookup the implementation ArtMethod associated to `interface_method`. Return null
145 // if not found.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700146 ArtMethod* Lookup(ArtMethod* interface_method, size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000147 uint32_t table_index = 0;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700148 for (;;) {
149 ArtMethod* current_interface_method = GetInterfaceMethod(table_index, pointer_size);
150 if (current_interface_method == nullptr) {
151 break;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000152 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700153 if (current_interface_method == interface_method) {
154 return GetImplementationMethod(table_index, pointer_size);
155 }
156 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000157 }
158 return nullptr;
159 }
160
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700161 // Compute the number of entries in this table.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700162 size_t NumEntries(size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000163 uint32_t table_index = 0;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700164 while (GetInterfaceMethod(table_index, pointer_size) != nullptr) {
165 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000166 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700167 return table_index;
168 }
169
170 // Compute the size in bytes taken by this table.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700171 size_t ComputeSize(size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000172 // Add the end marker.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700173 return ComputeSize(NumEntries(pointer_size), pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000174 }
175
176 // Compute the size in bytes needed for copying the given `table` and add
177 // one more entry.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700178 static size_t ComputeSizeWithOneMoreEntry(ImtConflictTable* table, size_t pointer_size) {
179 return table->ComputeSize(pointer_size) + EntrySize(pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000180 }
181
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700182 // Compute size with a fixed number of entries.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700183 static size_t ComputeSize(size_t num_entries, size_t pointer_size) {
184 return (num_entries + 1) * EntrySize(pointer_size); // Add one for null terminator.
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700185 }
186
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700187 static size_t EntrySize(size_t pointer_size) {
188 return pointer_size * static_cast<size_t>(kMethodCount);
189 }
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000190
191 private:
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700192 ArtMethod* GetMethod(size_t index, size_t pointer_size) const {
193 if (pointer_size == 8) {
194 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data64_[index]));
195 } else {
196 DCHECK_EQ(pointer_size, 4u);
197 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data32_[index]));
198 }
199 }
200
201 void SetMethod(size_t index, size_t pointer_size, ArtMethod* method) {
202 if (pointer_size == 8) {
203 data64_[index] = dchecked_integral_cast<uint64_t>(reinterpret_cast<uintptr_t>(method));
204 } else {
205 DCHECK_EQ(pointer_size, 4u);
206 data32_[index] = dchecked_integral_cast<uint32_t>(reinterpret_cast<uintptr_t>(method));
207 }
208 }
209
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000210 // Array of entries that the assembly stubs will iterate over. Note that this is
211 // not fixed size, and we allocate data prior to calling the constructor
212 // of ImtConflictTable.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700213 union {
214 uint32_t data32_[0];
215 uint64_t data64_[0];
216 };
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000217
218 DISALLOW_COPY_AND_ASSIGN(ImtConflictTable);
219};
220
Mathieu Chartiere401d142015-04-22 13:56:20 -0700221class ArtMethod FINAL {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800222 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700223 ArtMethod() : access_flags_(0), dex_code_item_offset_(0), dex_method_index_(0),
Andreas Gampe479b1de2016-07-19 18:27:17 -0700224 method_index_(0), hotness_count_(0) { }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700225
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000226 ArtMethod(ArtMethod* src, size_t image_pointer_size) {
227 CopyFrom(src, image_pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700228 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700229
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700230 static ArtMethod* FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
231 jobject jlr_method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700232 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62f05122014-03-21 11:21:29 -0700233
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800234 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700235 ALWAYS_INLINE mirror::Class* GetDeclaringClass() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800236
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800237 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartiere401d142015-04-22 13:56:20 -0700238 ALWAYS_INLINE mirror::Class* GetDeclaringClassUnchecked()
Mathieu Chartier90443472015-07-16 20:32:27 -0700239 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700240
241 void SetDeclaringClass(mirror::Class *new_declaring_class)
Mathieu Chartier90443472015-07-16 20:32:27 -0700242 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800243
Mathieu Chartier10e5ea92015-08-13 12:56:31 -0700244 bool CASDeclaringClass(mirror::Class* expected_class, mirror::Class* desired_class)
245 SHARED_REQUIRES(Locks::mutator_lock_);
246
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800247 static MemberOffset DeclaringClassOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700248 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, declaring_class_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800249 }
250
Andreas Gampecbc96b82015-09-30 20:05:24 +0000251 // Note: GetAccessFlags acquires the mutator lock in debug mode to check that it is not called for
252 // a proxy method.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800253 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000254 ALWAYS_INLINE uint32_t GetAccessFlags();
Jeff Hao5d917302013-02-27 17:57:33 -0800255
Mathieu Chartiere401d142015-04-22 13:56:20 -0700256 void SetAccessFlags(uint32_t new_access_flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100257 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700258 access_flags_ = new_access_flags;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800259 }
260
261 // Approximate what kind of method call would be used for this method.
Mathieu Chartier90443472015-07-16 20:32:27 -0700262 InvokeType GetInvokeType() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800263
264 // Returns true if the method is declared public.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000265 bool IsPublic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800266 return (GetAccessFlags() & kAccPublic) != 0;
267 }
268
269 // Returns true if the method is declared private.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000270 bool IsPrivate() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800271 return (GetAccessFlags() & kAccPrivate) != 0;
272 }
273
274 // Returns true if the method is declared static.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000275 bool IsStatic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800276 return (GetAccessFlags() & kAccStatic) != 0;
277 }
278
279 // Returns true if the method is a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000280 bool IsConstructor() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800281 return (GetAccessFlags() & kAccConstructor) != 0;
282 }
283
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700284 // Returns true if the method is a class initializer.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000285 bool IsClassInitializer() {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700286 return IsConstructor() && IsStatic();
287 }
288
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800289 // Returns true if the method is static, private, or a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000290 bool IsDirect() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800291 return IsDirect(GetAccessFlags());
292 }
293
294 static bool IsDirect(uint32_t access_flags) {
Andreas Gampecbc96b82015-09-30 20:05:24 +0000295 constexpr uint32_t direct = kAccStatic | kAccPrivate | kAccConstructor;
296 return (access_flags & direct) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800297 }
298
299 // Returns true if the method is declared synchronized.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000300 bool IsSynchronized() {
301 constexpr uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800302 return (GetAccessFlags() & synchonized) != 0;
303 }
304
Andreas Gampecbc96b82015-09-30 20:05:24 +0000305 bool IsFinal() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800306 return (GetAccessFlags() & kAccFinal) != 0;
307 }
308
Alex Light36121492016-02-22 13:43:29 -0800309 bool IsCopied() {
310 const bool copied = (GetAccessFlags() & kAccCopied) != 0;
311 // (IsMiranda() || IsDefaultConflicting()) implies copied
312 DCHECK(!(IsMiranda() || IsDefaultConflicting()) || copied)
313 << "Miranda or default-conflict methods must always be copied.";
314 return copied;
Alex Lightfcea56f2016-02-17 11:59:05 -0800315 }
316
Andreas Gampecbc96b82015-09-30 20:05:24 +0000317 bool IsMiranda() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800318 return (GetAccessFlags() & kAccMiranda) != 0;
319 }
320
Alex Light9139e002015-10-09 15:59:48 -0700321 // Returns true if invoking this method will not throw an AbstractMethodError or
322 // IncompatibleClassChangeError.
323 bool IsInvokable() {
324 return !IsAbstract() && !IsDefaultConflicting();
325 }
326
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100327 bool IsCompilable() {
328 return (GetAccessFlags() & kAccCompileDontBother) == 0;
329 }
330
Alex Light9139e002015-10-09 15:59:48 -0700331 // A default conflict method is a special sentinel method that stands for a conflict between
332 // multiple default methods. It cannot be invoked, throwing an IncompatibleClassChangeError if one
333 // attempts to do so.
334 bool IsDefaultConflicting() {
335 return (GetAccessFlags() & kAccDefaultConflict) != 0u;
336 }
337
Alex Lighteb7c1442015-08-31 13:17:42 -0700338 // This is set by the class linker.
339 bool IsDefault() {
340 return (GetAccessFlags() & kAccDefault) != 0;
341 }
342
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800343 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000344 bool IsNative() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800345 return (GetAccessFlags<kReadBarrierOption>() & kAccNative) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800346 }
347
Andreas Gampecbc96b82015-09-30 20:05:24 +0000348 bool IsFastNative() {
349 constexpr uint32_t mask = kAccFastNative | kAccNative;
Ian Rogers16ce0922014-01-10 14:59:36 -0800350 return (GetAccessFlags() & mask) == mask;
Ian Rogers1eb512d2013-10-18 15:42:20 -0700351 }
352
Andreas Gampecbc96b82015-09-30 20:05:24 +0000353 bool IsAbstract() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800354 return (GetAccessFlags() & kAccAbstract) != 0;
355 }
356
Andreas Gampecbc96b82015-09-30 20:05:24 +0000357 bool IsSynthetic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800358 return (GetAccessFlags() & kAccSynthetic) != 0;
359 }
360
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700361 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700362 bool IsProxyMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800363
Igor Murashkindf707e42016-02-02 16:56:50 -0800364 bool SkipAccessChecks() {
365 return (GetAccessFlags() & kAccSkipAccessChecks) != 0;
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200366 }
367
Igor Murashkindf707e42016-02-02 16:56:50 -0800368 void SetSkipAccessChecks() {
369 DCHECK(!SkipAccessChecks());
370 SetAccessFlags(GetAccessFlags() | kAccSkipAccessChecks);
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200371 }
372
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700373 // Should this method be run in the interpreter and count locks (e.g., failed structured-
374 // locking verification)?
375 bool MustCountLocks() {
376 return (GetAccessFlags() & kAccMustCountLocks) != 0;
377 }
378
Alex Lighteb7c1442015-08-31 13:17:42 -0700379 // Returns true if this method could be overridden by a default method.
Alex Light9139e002015-10-09 15:59:48 -0700380 bool IsOverridableByDefaultMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Alex Lighteb7c1442015-08-31 13:17:42 -0700381
Mathieu Chartier90443472015-07-16 20:32:27 -0700382 bool CheckIncompatibleClassChange(InvokeType type) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800383
Alex Light9139e002015-10-09 15:59:48 -0700384 // Throws the error that would result from trying to invoke this method (i.e.
385 // IncompatibleClassChangeError or AbstractMethodError). Only call if !IsInvokable();
386 void ThrowInvocationTimeError() SHARED_REQUIRES(Locks::mutator_lock_);
387
Mathieu Chartier90443472015-07-16 20:32:27 -0700388 uint16_t GetMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800389
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700390 // Doesn't do erroneous / unresolved class checks.
Mathieu Chartier90443472015-07-16 20:32:27 -0700391 uint16_t GetMethodIndexDuringLinking() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700392
Mathieu Chartier90443472015-07-16 20:32:27 -0700393 size_t GetVtableIndex() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800394 return GetMethodIndex();
395 }
396
Mathieu Chartier90443472015-07-16 20:32:27 -0700397 void SetMethodIndex(uint16_t new_method_index) SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100398 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700399 method_index_ = new_method_index;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800400 }
401
Vladimir Markoc1363122015-04-09 14:13:13 +0100402 static MemberOffset DexMethodIndexOffset() {
403 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_);
404 }
405
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800406 static MemberOffset MethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700407 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800408 }
409
Mathieu Chartiere401d142015-04-22 13:56:20 -0700410 uint32_t GetCodeItemOffset() {
411 return dex_code_item_offset_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800412 }
413
Mathieu Chartiere401d142015-04-22 13:56:20 -0700414 void SetCodeItemOffset(uint32_t new_code_off) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100415 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700416 dex_code_item_offset_ = new_code_off;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800417 }
418
419 // Number of 32bit registers that would be required to hold all the arguments
420 static size_t NumArgRegisters(const StringPiece& shorty);
421
Mathieu Chartier90443472015-07-16 20:32:27 -0700422 ALWAYS_INLINE uint32_t GetDexMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800423
Matthew Gharrity465ecc82016-07-19 21:32:52 +0000424 ALWAYS_INLINE uint32_t GetImtIndex() SHARED_REQUIRES(Locks::mutator_lock_);
425
Mathieu Chartiere401d142015-04-22 13:56:20 -0700426 void SetDexMethodIndex(uint32_t new_idx) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100427 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700428 dex_method_index_ = new_idx;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800429 }
430
Vladimir Marko05792b92015-08-03 11:56:49 +0100431 ALWAYS_INLINE ArtMethod** GetDexCacheResolvedMethods(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700432 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100433 ALWAYS_INLINE ArtMethod* GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700434 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100435 ALWAYS_INLINE void SetDexCacheResolvedMethod(uint16_t method_index,
436 ArtMethod* new_method,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700437 size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700438 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100439 ALWAYS_INLINE void SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700440 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100441 bool HasDexCacheResolvedMethods(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
442 bool HasSameDexCacheResolvedMethods(ArtMethod* other, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700443 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100444 bool HasSameDexCacheResolvedMethods(ArtMethod** other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700445 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800446
Andreas Gampe58a5af82014-07-31 16:23:49 -0700447 template <bool kWithCheck = true>
Vladimir Marko05792b92015-08-03 11:56:49 +0100448 mirror::Class* GetDexCacheResolvedType(uint32_t type_idx, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700449 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100450 void SetDexCacheResolvedTypes(GcRoot<mirror::Class>* new_dex_cache_types, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700451 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100452 bool HasDexCacheResolvedTypes(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
453 bool HasSameDexCacheResolvedTypes(ArtMethod* other, size_t pointer_size)
454 SHARED_REQUIRES(Locks::mutator_lock_);
455 bool HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700456 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800457
Ian Rogersa0485602014-12-02 15:48:04 -0800458 // Get the Class* from the type index into this method's dex cache.
Vladimir Marko05792b92015-08-03 11:56:49 +0100459 mirror::Class* GetClassFromTypeIndex(uint16_t type_idx, bool resolve, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700460 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersa0485602014-12-02 15:48:04 -0800461
Alex Light6c8467f2015-11-20 15:03:26 -0800462 // Returns true if this method has the same name and signature of the other method.
463 bool HasSameNameAndSignature(ArtMethod* other) SHARED_REQUIRES(Locks::mutator_lock_);
464
Ian Rogerse0a02da2014-12-02 14:10:53 -0800465 // Find the method that this method overrides.
Alex Light705ad492015-09-21 11:36:30 -0700466 ArtMethod* FindOverriddenMethod(size_t pointer_size)
Alex Light705ad492015-09-21 11:36:30 -0700467 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800468
Ian Rogerse0a02da2014-12-02 14:10:53 -0800469 // Find the method index for this method within other_dexfile. If this method isn't present then
470 // return DexFile::kDexNoIndex. The name_and_signature_idx MUST refer to a MethodId with the same
471 // name and signature in the other_dexfile, such as the method index used to resolve this method
472 // in the other_dexfile.
473 uint32_t FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
474 uint32_t name_and_signature_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700475 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800476
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700477 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, const char* shorty)
Mathieu Chartier90443472015-07-16 20:32:27 -0700478 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800479
Mathieu Chartiere401d142015-04-22 13:56:20 -0700480 const void* GetEntryPointFromQuickCompiledCode() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800481 return GetEntryPointFromQuickCompiledCodePtrSize(sizeof(void*));
482 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700483 ALWAYS_INLINE const void* GetEntryPointFromQuickCompiledCodePtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100484 return GetNativePointer<const void*>(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800485 EntryPointFromQuickCompiledCodeOffset(pointer_size), pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800486 }
487
Mathieu Chartiere401d142015-04-22 13:56:20 -0700488 void SetEntryPointFromQuickCompiledCode(const void* entry_point_from_quick_compiled_code) {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800489 SetEntryPointFromQuickCompiledCodePtrSize(entry_point_from_quick_compiled_code,
490 sizeof(void*));
491 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800492 ALWAYS_INLINE void SetEntryPointFromQuickCompiledCodePtrSize(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700493 const void* entry_point_from_quick_compiled_code, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100494 SetNativePointer(EntryPointFromQuickCompiledCodeOffset(pointer_size),
495 entry_point_from_quick_compiled_code, pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800496 }
497
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700498 void RegisterNative(const void* native_method, bool is_fast)
Mathieu Chartier90443472015-07-16 20:32:27 -0700499 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800500
Mathieu Chartier90443472015-07-16 20:32:27 -0700501 void UnregisterNative() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800502
Vladimir Marko05792b92015-08-03 11:56:49 +0100503 static MemberOffset DexCacheResolvedMethodsOffset(size_t pointer_size) {
504 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
505 PtrSizedFields, dex_cache_resolved_methods_) / sizeof(void*) * pointer_size);
506 }
507
508 static MemberOffset DexCacheResolvedTypesOffset(size_t pointer_size) {
509 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
510 PtrSizedFields, dex_cache_resolved_types_) / sizeof(void*) * pointer_size);
511 }
512
Andreas Gampe75f08852016-07-19 08:06:07 -0700513 static MemberOffset DataOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800514 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Andreas Gampe75f08852016-07-19 08:06:07 -0700515 PtrSizedFields, data_) / sizeof(void*) * pointer_size);
516 }
517
518 static MemberOffset EntryPointFromJniOffset(size_t pointer_size) {
519 return DataOffset(pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800520 }
521
Mathieu Chartier2d721012014-11-10 11:08:06 -0800522 static MemberOffset EntryPointFromQuickCompiledCodeOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800523 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800524 PtrSizedFields, entry_point_from_quick_compiled_code_) / sizeof(void*) * pointer_size);
525 }
526
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000527 ImtConflictTable* GetImtConflictTable(size_t pointer_size) {
528 DCHECK(IsRuntimeMethod());
Andreas Gampe75f08852016-07-19 08:06:07 -0700529 return reinterpret_cast<ImtConflictTable*>(GetDataPtrSize(pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000530 }
531
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700532 ALWAYS_INLINE void SetImtConflictTable(ImtConflictTable* table, size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700533 DCHECK(IsRuntimeMethod());
534 SetDataPtrSize(table, pointer_size);
535 }
536
537 ProfilingInfo* GetProfilingInfo(size_t pointer_size) {
538 return reinterpret_cast<ProfilingInfo*>(GetDataPtrSize(pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000539 }
540
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000541 ALWAYS_INLINE void SetProfilingInfo(ProfilingInfo* info) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700542 SetDataPtrSize(info, sizeof(void*));
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000543 }
544
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000545 ALWAYS_INLINE void SetProfilingInfoPtrSize(ProfilingInfo* info, size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700546 SetDataPtrSize(info, pointer_size);
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000547 }
548
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000549 static MemberOffset ProfilingInfoOffset() {
Andreas Gampe75f08852016-07-19 08:06:07 -0700550 DCHECK(IsImagePointerSize(sizeof(void*)));
551 return DataOffset(sizeof(void*));
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000552 }
553
Mathieu Chartiere401d142015-04-22 13:56:20 -0700554 void* GetEntryPointFromJni() {
Andreas Gampe75f08852016-07-19 08:06:07 -0700555 DCHECK(IsNative());
Mathieu Chartier2d721012014-11-10 11:08:06 -0800556 return GetEntryPointFromJniPtrSize(sizeof(void*));
557 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100558
Mathieu Chartiere401d142015-04-22 13:56:20 -0700559 ALWAYS_INLINE void* GetEntryPointFromJniPtrSize(size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700560 return GetDataPtrSize(pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800561 }
562
Andreas Gampecbc96b82015-09-30 20:05:24 +0000563 void SetEntryPointFromJni(const void* entrypoint) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100564 DCHECK(IsNative());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700565 SetEntryPointFromJniPtrSize(entrypoint, sizeof(void*));
Mathieu Chartier2d721012014-11-10 11:08:06 -0800566 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100567
Mathieu Chartiere401d142015-04-22 13:56:20 -0700568 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700569 SetDataPtrSize(entrypoint, pointer_size);
570 }
571
572 ALWAYS_INLINE void* GetDataPtrSize(size_t pointer_size) {
573 DCHECK(IsImagePointerSize(pointer_size));
574 return GetNativePointer<void*>(DataOffset(pointer_size), pointer_size);
575 }
576
577 ALWAYS_INLINE void SetDataPtrSize(const void* data, size_t pointer_size) {
578 DCHECK(IsImagePointerSize(pointer_size));
579 SetNativePointer(DataOffset(pointer_size), data, pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800580 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800581
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800582 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
583 // conventions for a method of managed code. Returns false for Proxy methods.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700584 ALWAYS_INLINE bool IsRuntimeMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800585
586 // Is this a hand crafted method used for something like describing callee saves?
Mathieu Chartier90443472015-07-16 20:32:27 -0700587 bool IsCalleeSaveMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800588
Mathieu Chartier90443472015-07-16 20:32:27 -0700589 bool IsResolutionMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800590
Mathieu Chartier90443472015-07-16 20:32:27 -0700591 bool IsImtUnimplementedMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700592
Mathieu Chartier90443472015-07-16 20:32:27 -0700593 MethodReference ToMethodReference() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier36b58f52014-12-10 12:06:45 -0800594 return MethodReference(GetDexFile(), GetDexMethodIndex());
595 }
596
Ian Rogersc449aa82013-07-29 14:35:46 -0700597 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
598 // indicates whether the found catch block is responsible for clearing the exception or whether
599 // a move-exception instruction is present.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700600 uint32_t FindCatchBlock(Handle<mirror::Class> exception_type, uint32_t dex_pc,
601 bool* has_no_move_exception)
Mathieu Chartier90443472015-07-16 20:32:27 -0700602 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800603
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700604 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700605 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename RootVisitorType>
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700606 void VisitRoots(RootVisitorType& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800607
Mathieu Chartier90443472015-07-16 20:32:27 -0700608 const DexFile* GetDexFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700609
Mathieu Chartier90443472015-07-16 20:32:27 -0700610 const char* GetDeclaringClassDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700611
Mathieu Chartier90443472015-07-16 20:32:27 -0700612 const char* GetShorty() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700613 uint32_t unused_length;
614 return GetShorty(&unused_length);
615 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700616
Mathieu Chartier90443472015-07-16 20:32:27 -0700617 const char* GetShorty(uint32_t* out_length) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700618
Mathieu Chartier90443472015-07-16 20:32:27 -0700619 const Signature GetSignature() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700620
Mathieu Chartier90443472015-07-16 20:32:27 -0700621 ALWAYS_INLINE const char* GetName() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700622
Mathieu Chartier90443472015-07-16 20:32:27 -0700623 mirror::String* GetNameAsString(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers6b14d552014-10-28 21:50:58 -0700624
Mathieu Chartier90443472015-07-16 20:32:27 -0700625 const DexFile::CodeItem* GetCodeItem() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700626
Vladimir Marko05792b92015-08-03 11:56:49 +0100627 bool IsResolvedTypeIdx(uint16_t type_idx, size_t ptr_size) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700628
Mathieu Chartier90443472015-07-16 20:32:27 -0700629 int32_t GetLineNumFromDexPC(uint32_t dex_pc) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700630
Mathieu Chartier90443472015-07-16 20:32:27 -0700631 const DexFile::ProtoId& GetPrototype() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700632
Mathieu Chartier90443472015-07-16 20:32:27 -0700633 const DexFile::TypeList* GetParameterTypeList() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700634
Mathieu Chartier90443472015-07-16 20:32:27 -0700635 const char* GetDeclaringClassSourceFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700636
Mathieu Chartier90443472015-07-16 20:32:27 -0700637 uint16_t GetClassDefIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700638
Mathieu Chartier90443472015-07-16 20:32:27 -0700639 const DexFile::ClassDef& GetClassDef() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700640
Mathieu Chartier90443472015-07-16 20:32:27 -0700641 const char* GetReturnTypeDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700642
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700643 const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700644 SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700645
Ian Rogersded66a02014-10-28 18:12:55 -0700646 // May cause thread suspension due to GetClassFromTypeIdx calling ResolveType this caused a large
647 // number of bugs at call sites.
Vladimir Marko05792b92015-08-03 11:56:49 +0100648 mirror::Class* GetReturnType(bool resolve, size_t ptr_size)
649 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersded66a02014-10-28 18:12:55 -0700650
Mathieu Chartier90443472015-07-16 20:32:27 -0700651 mirror::ClassLoader* GetClassLoader() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700652
Mathieu Chartier90443472015-07-16 20:32:27 -0700653 mirror::DexCache* GetDexCache() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700654
Mathieu Chartiere401d142015-04-22 13:56:20 -0700655 ALWAYS_INLINE ArtMethod* GetInterfaceMethodIfProxy(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700656 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700657
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700658 // May cause thread suspension due to class resolution.
659 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
Mathieu Chartier90443472015-07-16 20:32:27 -0700660 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700661
Vladimir Marko14632852015-08-17 12:07:23 +0100662 // Size of an instance of this native class.
663 static size_t Size(size_t pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700664 return PtrSizedFieldsOffset(pointer_size) +
Mathieu Chartiereace4582014-11-24 18:29:54 -0800665 (sizeof(PtrSizedFields) / sizeof(void*)) * pointer_size;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800666 }
667
Vladimir Marko14632852015-08-17 12:07:23 +0100668 // Alignment of an instance of this native class.
669 static size_t Alignment(size_t pointer_size) {
Vladimir Markocf36d492015-08-12 19:27:26 +0100670 // The ArtMethod alignment is the same as image pointer size. This differs from
Vladimir Marko14632852015-08-17 12:07:23 +0100671 // alignof(ArtMethod) if cross-compiling with pointer_size != sizeof(void*).
Vladimir Markocf36d492015-08-12 19:27:26 +0100672 return pointer_size;
673 }
674
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000675 void CopyFrom(ArtMethod* src, size_t image_pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700676 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700677
Vladimir Marko05792b92015-08-03 11:56:49 +0100678 ALWAYS_INLINE GcRoot<mirror::Class>* GetDexCacheResolvedTypes(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700679 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700680
Bill Buzbee1d011d92016-04-04 16:59:29 +0000681 // Note, hotness_counter_ updates are non-atomic but it doesn't need to be precise. Also,
682 // given that the counter is only 16 bits wide we can expect wrap-around in some
683 // situations. Consumers of hotness_count_ must be able to deal with that.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100684 uint16_t IncrementCounter() {
685 return ++hotness_count_;
686 }
687
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100688 void ClearCounter() {
689 hotness_count_ = 0;
690 }
691
Bill Buzbee1d011d92016-04-04 16:59:29 +0000692 void SetCounter(int16_t hotness_count) {
693 hotness_count_ = hotness_count;
694 }
695
696 uint16_t GetCounter() const {
697 return hotness_count_;
698 }
699
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100700 const uint8_t* GetQuickenedInfo() SHARED_REQUIRES(Locks::mutator_lock_);
701
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100702 // Returns the method header for the compiled code containing 'pc'. Note that runtime
703 // methods will return null for this method, as they are not oat based.
704 const OatQuickMethodHeader* GetOatQuickMethodHeader(uintptr_t pc)
705 SHARED_REQUIRES(Locks::mutator_lock_);
706
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000707 // Returns whether the method has any compiled code, JIT or AOT.
708 bool HasAnyCompiledCode() SHARED_REQUIRES(Locks::mutator_lock_);
709
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800710
711 // Update heap objects and non-entrypoint pointers by the passed in visitor for image relocation.
712 // Does not use read barrier.
713 template <typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800714 ALWAYS_INLINE void UpdateObjectsForImageRelocation(const Visitor& visitor, size_t pointer_size)
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800715 SHARED_REQUIRES(Locks::mutator_lock_);
716
717 // Update entry points by passing them through the visitor.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800718 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800719 ALWAYS_INLINE void UpdateEntrypoints(const Visitor& visitor, size_t pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800720
Mathieu Chartier2d721012014-11-10 11:08:06 -0800721 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800722 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800723 // The class we are a part of.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700724 GcRoot<mirror::Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800725
Ian Rogersef7d42f2014-01-06 12:55:46 -0800726 // Access flags; low 16 bits are defined by spec.
727 uint32_t access_flags_;
728
729 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
730
731 // Offset to the CodeItem.
732 uint32_t dex_code_item_offset_;
733
734 // Index into method_ids of the dex file associated with this method.
735 uint32_t dex_method_index_;
736
737 /* End of dex file fields. */
738
739 // Entry within a dispatch table for this method. For static/direct methods the index is into
740 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
741 // ifTable.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100742 uint16_t method_index_;
743
Bill Buzbee1d011d92016-04-04 16:59:29 +0000744 // The hotness we measure for this method. Managed by the interpreter. Not atomic, as we allow
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100745 // missing increments: if the method is hot, we will see it eventually.
746 uint16_t hotness_count_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800747
Mathieu Chartiereace4582014-11-24 18:29:54 -0800748 // Fake padding field gets inserted here.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800749
750 // Must be the last fields in the method.
Andreas Gampe479b1de2016-07-19 18:27:17 -0700751 struct PtrSizedFields {
Vladimir Marko05792b92015-08-03 11:56:49 +0100752 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
753 ArtMethod** dex_cache_resolved_methods_;
754
755 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
756 GcRoot<mirror::Class>* dex_cache_resolved_types_;
757
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100758 // Pointer to JNI function registered to this method, or a function to resolve the JNI function,
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000759 // or the profiling data for non-native methods, or an ImtConflictTable.
Andreas Gampe75f08852016-07-19 08:06:07 -0700760 void* data_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800761
762 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
Elliott Hughes956af0f2014-12-11 14:34:28 -0800763 // the interpreter.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800764 void* entry_point_from_quick_compiled_code_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800765 } ptr_sized_fields_;
766
Mathieu Chartier02e25112013-08-14 16:14:24 -0700767 private:
Andreas Gampe479b1de2016-07-19 18:27:17 -0700768 static constexpr size_t PtrSizedFieldsOffset(size_t pointer_size) {
769 // Round up to pointer size for padding field. Tested in art_method.cc.
770 return RoundUp(offsetof(ArtMethod, hotness_count_) + sizeof(hotness_count_), pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700771 }
772
Andreas Gampe75f08852016-07-19 08:06:07 -0700773 // Compare given pointer size to the image pointer size.
774 static bool IsImagePointerSize(size_t pointer_size);
775
Mathieu Chartiere401d142015-04-22 13:56:20 -0700776 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100777 ALWAYS_INLINE T GetNativePointer(MemberOffset offset, size_t pointer_size) const {
778 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700779 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
780 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
781 if (pointer_size == sizeof(uint32_t)) {
782 return reinterpret_cast<T>(*reinterpret_cast<const uint32_t*>(addr));
783 } else {
784 auto v = *reinterpret_cast<const uint64_t*>(addr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100785 return reinterpret_cast<T>(dchecked_integral_cast<uintptr_t>(v));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700786 }
787 }
788
789 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100790 ALWAYS_INLINE void SetNativePointer(MemberOffset offset, T new_value, size_t pointer_size) {
791 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700792 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
793 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
794 if (pointer_size == sizeof(uint32_t)) {
795 uintptr_t ptr = reinterpret_cast<uintptr_t>(new_value);
Vladimir Marko05792b92015-08-03 11:56:49 +0100796 *reinterpret_cast<uint32_t*>(addr) = dchecked_integral_cast<uint32_t>(ptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700797 } else {
798 *reinterpret_cast<uint64_t*>(addr) = reinterpret_cast<uintptr_t>(new_value);
799 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800800 }
801
Mathieu Chartiere401d142015-04-22 13:56:20 -0700802 DISALLOW_COPY_AND_ASSIGN(ArtMethod); // Need to use CopyFrom to deal with 32 vs 64 bits.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800803};
804
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800805} // namespace art
806
Mathieu Chartiere401d142015-04-22 13:56:20 -0700807#endif // ART_RUNTIME_ART_METHOD_H_