blob: 91a44248fa0cb805bb4472e8f21b9f3fc28e98d9 [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
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010020#include "base/bit_utils.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010021#include "base/casts.h"
Jeff Hao790ad902013-05-22 15:02:08 -070022#include "dex_file.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070023#include "gc_root.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "invoke_type.h"
Mathieu Chartier36b58f52014-12-10 12:06:45 -080025#include "method_reference.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "modifiers.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070027#include "mirror/object.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070028#include "read_barrier_option.h"
Sebastien Hertze4b7c892014-12-17 20:02:50 +010029#include "stack.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031
32namespace art {
33
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034union JValue;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010035class OatQuickMethodHeader;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010036class ProfilingInfo;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070037class ScopedObjectAccessAlreadyRunnable;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038class StringPiece;
Jeff Hao16743632013-05-08 10:59:04 -070039class ShadowFrame;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040
41namespace mirror {
Mathieu Chartiere401d142015-04-22 13:56:20 -070042class Array;
43class Class;
Mathieu Chartiere42888f2016-04-14 10:49:19 -070044class IfTable;
Mathieu Chartiere401d142015-04-22 13:56:20 -070045class PointerArray;
46} // namespace mirror
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047
Nicolas Geoffray796d6302016-03-13 22:22:31 +000048// Table to resolve IMT conflicts at runtime. The table is attached to
49// the jni entrypoint of IMT conflict ArtMethods.
50// The table contains a list of pairs of { interface_method, implementation_method }
51// with the last entry being null to make an assembly implementation of a lookup
52// faster.
53class ImtConflictTable {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070054 enum MethodIndex {
55 kMethodInterface,
56 kMethodImplementation,
57 kMethodCount, // Number of elements in enum.
58 };
59
Nicolas Geoffray796d6302016-03-13 22:22:31 +000060 public:
61 // Build a new table copying `other` and adding the new entry formed of
62 // the pair { `interface_method`, `implementation_method` }
63 ImtConflictTable(ImtConflictTable* other,
64 ArtMethod* interface_method,
Mathieu Chartiere42888f2016-04-14 10:49:19 -070065 ArtMethod* implementation_method,
66 size_t pointer_size) {
67 const size_t count = other->NumEntries(pointer_size);
68 for (size_t i = 0; i < count; ++i) {
69 SetInterfaceMethod(i, pointer_size, other->GetInterfaceMethod(i, pointer_size));
70 SetImplementationMethod(i, pointer_size, other->GetImplementationMethod(i, pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +000071 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -070072 SetInterfaceMethod(count, pointer_size, interface_method);
73 SetImplementationMethod(count, pointer_size, implementation_method);
Nicolas Geoffray796d6302016-03-13 22:22:31 +000074 // Add the null marker.
Mathieu Chartiere42888f2016-04-14 10:49:19 -070075 SetInterfaceMethod(count + 1, pointer_size, nullptr);
76 SetImplementationMethod(count + 1, pointer_size, nullptr);
Nicolas Geoffray796d6302016-03-13 22:22:31 +000077 }
78
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070079 // num_entries excludes the header.
Mathieu Chartiere42888f2016-04-14 10:49:19 -070080 ImtConflictTable(size_t num_entries, size_t pointer_size) {
81 SetInterfaceMethod(num_entries, pointer_size, nullptr);
82 SetImplementationMethod(num_entries, pointer_size, nullptr);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070083 }
84
85 // Set an entry at an index.
Mathieu Chartiere42888f2016-04-14 10:49:19 -070086 void SetInterfaceMethod(size_t index, size_t pointer_size, ArtMethod* method) {
87 SetMethod(index * kMethodCount + kMethodInterface, pointer_size, method);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070088 }
89
Mathieu Chartiere42888f2016-04-14 10:49:19 -070090 void SetImplementationMethod(size_t index, size_t pointer_size, ArtMethod* method) {
91 SetMethod(index * kMethodCount + kMethodImplementation, pointer_size, method);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070092 }
93
Mathieu Chartiere42888f2016-04-14 10:49:19 -070094 ArtMethod* GetInterfaceMethod(size_t index, size_t pointer_size) const {
95 return GetMethod(index * kMethodCount + kMethodInterface, pointer_size);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070096 }
97
Mathieu Chartiere42888f2016-04-14 10:49:19 -070098 ArtMethod* GetImplementationMethod(size_t index, size_t pointer_size) const {
99 return GetMethod(index * kMethodCount + kMethodImplementation, pointer_size);
100 }
101
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000102 // Return true if two conflict tables are the same.
103 bool Equals(ImtConflictTable* other, size_t pointer_size) const {
104 size_t num = NumEntries(pointer_size);
105 if (num != other->NumEntries(pointer_size)) {
106 return false;
107 }
108 for (size_t i = 0; i < num; ++i) {
109 if (GetInterfaceMethod(i, pointer_size) != other->GetInterfaceMethod(i, pointer_size) ||
110 GetImplementationMethod(i, pointer_size) !=
111 other->GetImplementationMethod(i, pointer_size)) {
112 return false;
113 }
114 }
115 return true;
116 }
117
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700118 // Visit all of the entries.
119 // NO_THREAD_SAFETY_ANALYSIS for calling with held locks. Visitor is passed a pair of ArtMethod*
120 // and also returns one. The order is <interface, implementation>.
121 template<typename Visitor>
122 void Visit(const Visitor& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS {
123 uint32_t table_index = 0;
124 for (;;) {
125 ArtMethod* interface_method = GetInterfaceMethod(table_index, pointer_size);
126 if (interface_method == nullptr) {
127 break;
128 }
129 ArtMethod* implementation_method = GetImplementationMethod(table_index, pointer_size);
130 auto input = std::make_pair(interface_method, implementation_method);
131 std::pair<ArtMethod*, ArtMethod*> updated = visitor(input);
132 if (input.first != updated.first) {
133 SetInterfaceMethod(table_index, pointer_size, updated.first);
134 }
135 if (input.second != updated.second) {
136 SetImplementationMethod(table_index, pointer_size, updated.second);
137 }
138 ++table_index;
139 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700140 }
141
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000142 // Lookup the implementation ArtMethod associated to `interface_method`. Return null
143 // if not found.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700144 ArtMethod* Lookup(ArtMethod* interface_method, size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000145 uint32_t table_index = 0;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700146 for (;;) {
147 ArtMethod* current_interface_method = GetInterfaceMethod(table_index, pointer_size);
148 if (current_interface_method == nullptr) {
149 break;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000150 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700151 if (current_interface_method == interface_method) {
152 return GetImplementationMethod(table_index, pointer_size);
153 }
154 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000155 }
156 return nullptr;
157 }
158
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700159 // Compute the number of entries in this table.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700160 size_t NumEntries(size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000161 uint32_t table_index = 0;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700162 while (GetInterfaceMethod(table_index, pointer_size) != nullptr) {
163 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000164 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700165 return table_index;
166 }
167
168 // Compute the size in bytes taken by this table.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700169 size_t ComputeSize(size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000170 // Add the end marker.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700171 return ComputeSize(NumEntries(pointer_size), pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000172 }
173
174 // Compute the size in bytes needed for copying the given `table` and add
175 // one more entry.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700176 static size_t ComputeSizeWithOneMoreEntry(ImtConflictTable* table, size_t pointer_size) {
177 return table->ComputeSize(pointer_size) + EntrySize(pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000178 }
179
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700180 // Compute size with a fixed number of entries.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700181 static size_t ComputeSize(size_t num_entries, size_t pointer_size) {
182 return (num_entries + 1) * EntrySize(pointer_size); // Add one for null terminator.
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700183 }
184
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700185 static size_t EntrySize(size_t pointer_size) {
186 return pointer_size * static_cast<size_t>(kMethodCount);
187 }
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000188
189 private:
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700190 ArtMethod* GetMethod(size_t index, size_t pointer_size) const {
191 if (pointer_size == 8) {
192 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data64_[index]));
193 } else {
194 DCHECK_EQ(pointer_size, 4u);
195 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data32_[index]));
196 }
197 }
198
199 void SetMethod(size_t index, size_t pointer_size, ArtMethod* method) {
200 if (pointer_size == 8) {
201 data64_[index] = dchecked_integral_cast<uint64_t>(reinterpret_cast<uintptr_t>(method));
202 } else {
203 DCHECK_EQ(pointer_size, 4u);
204 data32_[index] = dchecked_integral_cast<uint32_t>(reinterpret_cast<uintptr_t>(method));
205 }
206 }
207
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000208 // Array of entries that the assembly stubs will iterate over. Note that this is
209 // not fixed size, and we allocate data prior to calling the constructor
210 // of ImtConflictTable.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700211 union {
212 uint32_t data32_[0];
213 uint64_t data64_[0];
214 };
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000215
216 DISALLOW_COPY_AND_ASSIGN(ImtConflictTable);
217};
218
Mathieu Chartiere401d142015-04-22 13:56:20 -0700219class ArtMethod FINAL {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800220 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700221 ArtMethod() : access_flags_(0), dex_code_item_offset_(0), dex_method_index_(0),
222 method_index_(0) { }
223
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000224 ArtMethod(ArtMethod* src, size_t image_pointer_size) {
225 CopyFrom(src, image_pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700226 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700227
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700228 static ArtMethod* FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
229 jobject jlr_method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700230 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62f05122014-03-21 11:21:29 -0700231
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800232 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700233 ALWAYS_INLINE mirror::Class* GetDeclaringClass() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800234
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800235 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartiere401d142015-04-22 13:56:20 -0700236 ALWAYS_INLINE mirror::Class* GetDeclaringClassUnchecked()
Mathieu Chartier90443472015-07-16 20:32:27 -0700237 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700238
239 void SetDeclaringClass(mirror::Class *new_declaring_class)
Mathieu Chartier90443472015-07-16 20:32:27 -0700240 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800241
Mathieu Chartier10e5ea92015-08-13 12:56:31 -0700242 bool CASDeclaringClass(mirror::Class* expected_class, mirror::Class* desired_class)
243 SHARED_REQUIRES(Locks::mutator_lock_);
244
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800245 static MemberOffset DeclaringClassOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700246 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, declaring_class_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800247 }
248
Andreas Gampecbc96b82015-09-30 20:05:24 +0000249 // Note: GetAccessFlags acquires the mutator lock in debug mode to check that it is not called for
250 // a proxy method.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800251 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000252 ALWAYS_INLINE uint32_t GetAccessFlags();
Jeff Hao5d917302013-02-27 17:57:33 -0800253
Mathieu Chartiere401d142015-04-22 13:56:20 -0700254 void SetAccessFlags(uint32_t new_access_flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100255 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700256 access_flags_ = new_access_flags;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800257 }
258
259 // Approximate what kind of method call would be used for this method.
Mathieu Chartier90443472015-07-16 20:32:27 -0700260 InvokeType GetInvokeType() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800261
262 // Returns true if the method is declared public.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000263 bool IsPublic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800264 return (GetAccessFlags() & kAccPublic) != 0;
265 }
266
267 // Returns true if the method is declared private.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000268 bool IsPrivate() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800269 return (GetAccessFlags() & kAccPrivate) != 0;
270 }
271
272 // Returns true if the method is declared static.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000273 bool IsStatic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800274 return (GetAccessFlags() & kAccStatic) != 0;
275 }
276
277 // Returns true if the method is a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000278 bool IsConstructor() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800279 return (GetAccessFlags() & kAccConstructor) != 0;
280 }
281
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700282 // Returns true if the method is a class initializer.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000283 bool IsClassInitializer() {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700284 return IsConstructor() && IsStatic();
285 }
286
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800287 // Returns true if the method is static, private, or a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000288 bool IsDirect() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800289 return IsDirect(GetAccessFlags());
290 }
291
292 static bool IsDirect(uint32_t access_flags) {
Andreas Gampecbc96b82015-09-30 20:05:24 +0000293 constexpr uint32_t direct = kAccStatic | kAccPrivate | kAccConstructor;
294 return (access_flags & direct) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800295 }
296
297 // Returns true if the method is declared synchronized.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000298 bool IsSynchronized() {
299 constexpr uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800300 return (GetAccessFlags() & synchonized) != 0;
301 }
302
Andreas Gampecbc96b82015-09-30 20:05:24 +0000303 bool IsFinal() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800304 return (GetAccessFlags() & kAccFinal) != 0;
305 }
306
Alex Light36121492016-02-22 13:43:29 -0800307 bool IsCopied() {
308 const bool copied = (GetAccessFlags() & kAccCopied) != 0;
309 // (IsMiranda() || IsDefaultConflicting()) implies copied
310 DCHECK(!(IsMiranda() || IsDefaultConflicting()) || copied)
311 << "Miranda or default-conflict methods must always be copied.";
312 return copied;
Alex Lightfcea56f2016-02-17 11:59:05 -0800313 }
314
Andreas Gampecbc96b82015-09-30 20:05:24 +0000315 bool IsMiranda() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800316 return (GetAccessFlags() & kAccMiranda) != 0;
317 }
318
Alex Light9139e002015-10-09 15:59:48 -0700319 // Returns true if invoking this method will not throw an AbstractMethodError or
320 // IncompatibleClassChangeError.
321 bool IsInvokable() {
322 return !IsAbstract() && !IsDefaultConflicting();
323 }
324
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100325 bool IsCompilable() {
326 return (GetAccessFlags() & kAccCompileDontBother) == 0;
327 }
328
Alex Light9139e002015-10-09 15:59:48 -0700329 // A default conflict method is a special sentinel method that stands for a conflict between
330 // multiple default methods. It cannot be invoked, throwing an IncompatibleClassChangeError if one
331 // attempts to do so.
332 bool IsDefaultConflicting() {
333 return (GetAccessFlags() & kAccDefaultConflict) != 0u;
334 }
335
Alex Lighteb7c1442015-08-31 13:17:42 -0700336 // This is set by the class linker.
337 bool IsDefault() {
338 return (GetAccessFlags() & kAccDefault) != 0;
339 }
340
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800341 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000342 bool IsNative() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800343 return (GetAccessFlags<kReadBarrierOption>() & kAccNative) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800344 }
345
Andreas Gampecbc96b82015-09-30 20:05:24 +0000346 bool IsFastNative() {
347 constexpr uint32_t mask = kAccFastNative | kAccNative;
Ian Rogers16ce0922014-01-10 14:59:36 -0800348 return (GetAccessFlags() & mask) == mask;
Ian Rogers1eb512d2013-10-18 15:42:20 -0700349 }
350
Andreas Gampecbc96b82015-09-30 20:05:24 +0000351 bool IsAbstract() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800352 return (GetAccessFlags() & kAccAbstract) != 0;
353 }
354
Andreas Gampecbc96b82015-09-30 20:05:24 +0000355 bool IsSynthetic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800356 return (GetAccessFlags() & kAccSynthetic) != 0;
357 }
358
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700359 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700360 bool IsProxyMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800361
Igor Murashkindf707e42016-02-02 16:56:50 -0800362 bool SkipAccessChecks() {
363 return (GetAccessFlags() & kAccSkipAccessChecks) != 0;
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200364 }
365
Igor Murashkindf707e42016-02-02 16:56:50 -0800366 void SetSkipAccessChecks() {
367 DCHECK(!SkipAccessChecks());
368 SetAccessFlags(GetAccessFlags() | kAccSkipAccessChecks);
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200369 }
370
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700371 // Should this method be run in the interpreter and count locks (e.g., failed structured-
372 // locking verification)?
373 bool MustCountLocks() {
374 return (GetAccessFlags() & kAccMustCountLocks) != 0;
375 }
376
Alex Lighteb7c1442015-08-31 13:17:42 -0700377 // Returns true if this method could be overridden by a default method.
Alex Light9139e002015-10-09 15:59:48 -0700378 bool IsOverridableByDefaultMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Alex Lighteb7c1442015-08-31 13:17:42 -0700379
Mathieu Chartier90443472015-07-16 20:32:27 -0700380 bool CheckIncompatibleClassChange(InvokeType type) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800381
Alex Light9139e002015-10-09 15:59:48 -0700382 // Throws the error that would result from trying to invoke this method (i.e.
383 // IncompatibleClassChangeError or AbstractMethodError). Only call if !IsInvokable();
384 void ThrowInvocationTimeError() SHARED_REQUIRES(Locks::mutator_lock_);
385
Mathieu Chartier90443472015-07-16 20:32:27 -0700386 uint16_t GetMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800387
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700388 // Doesn't do erroneous / unresolved class checks.
Mathieu Chartier90443472015-07-16 20:32:27 -0700389 uint16_t GetMethodIndexDuringLinking() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700390
Mathieu Chartier90443472015-07-16 20:32:27 -0700391 size_t GetVtableIndex() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800392 return GetMethodIndex();
393 }
394
Mathieu Chartier90443472015-07-16 20:32:27 -0700395 void SetMethodIndex(uint16_t new_method_index) SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100396 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700397 method_index_ = new_method_index;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800398 }
399
Vladimir Markoc1363122015-04-09 14:13:13 +0100400 static MemberOffset DexMethodIndexOffset() {
401 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_);
402 }
403
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800404 static MemberOffset MethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700405 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800406 }
407
Mathieu Chartiere401d142015-04-22 13:56:20 -0700408 uint32_t GetCodeItemOffset() {
409 return dex_code_item_offset_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800410 }
411
Mathieu Chartiere401d142015-04-22 13:56:20 -0700412 void SetCodeItemOffset(uint32_t new_code_off) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100413 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700414 dex_code_item_offset_ = new_code_off;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800415 }
416
417 // Number of 32bit registers that would be required to hold all the arguments
418 static size_t NumArgRegisters(const StringPiece& shorty);
419
Mathieu Chartier90443472015-07-16 20:32:27 -0700420 ALWAYS_INLINE uint32_t GetDexMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800421
Mathieu Chartiere401d142015-04-22 13:56:20 -0700422 void SetDexMethodIndex(uint32_t new_idx) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100423 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700424 dex_method_index_ = new_idx;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800425 }
426
Vladimir Marko05792b92015-08-03 11:56:49 +0100427 ALWAYS_INLINE ArtMethod** GetDexCacheResolvedMethods(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700428 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100429 ALWAYS_INLINE ArtMethod* GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700430 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100431 ALWAYS_INLINE void SetDexCacheResolvedMethod(uint16_t method_index,
432 ArtMethod* new_method,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700433 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 SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700436 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100437 bool HasDexCacheResolvedMethods(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
438 bool HasSameDexCacheResolvedMethods(ArtMethod* other, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700439 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100440 bool HasSameDexCacheResolvedMethods(ArtMethod** other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700441 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800442
Andreas Gampe58a5af82014-07-31 16:23:49 -0700443 template <bool kWithCheck = true>
Vladimir Marko05792b92015-08-03 11:56:49 +0100444 mirror::Class* GetDexCacheResolvedType(uint32_t type_idx, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700445 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100446 void SetDexCacheResolvedTypes(GcRoot<mirror::Class>* new_dex_cache_types, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700447 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100448 bool HasDexCacheResolvedTypes(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
449 bool HasSameDexCacheResolvedTypes(ArtMethod* other, size_t pointer_size)
450 SHARED_REQUIRES(Locks::mutator_lock_);
451 bool HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700452 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800453
Ian Rogersa0485602014-12-02 15:48:04 -0800454 // Get the Class* from the type index into this method's dex cache.
Vladimir Marko05792b92015-08-03 11:56:49 +0100455 mirror::Class* GetClassFromTypeIndex(uint16_t type_idx, bool resolve, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700456 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersa0485602014-12-02 15:48:04 -0800457
Alex Light6c8467f2015-11-20 15:03:26 -0800458 // Returns true if this method has the same name and signature of the other method.
459 bool HasSameNameAndSignature(ArtMethod* other) SHARED_REQUIRES(Locks::mutator_lock_);
460
Ian Rogerse0a02da2014-12-02 14:10:53 -0800461 // Find the method that this method overrides.
Alex Light705ad492015-09-21 11:36:30 -0700462 ArtMethod* FindOverriddenMethod(size_t pointer_size)
Alex Light705ad492015-09-21 11:36:30 -0700463 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800464
Ian Rogerse0a02da2014-12-02 14:10:53 -0800465 // Find the method index for this method within other_dexfile. If this method isn't present then
466 // return DexFile::kDexNoIndex. The name_and_signature_idx MUST refer to a MethodId with the same
467 // name and signature in the other_dexfile, such as the method index used to resolve this method
468 // in the other_dexfile.
469 uint32_t FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
470 uint32_t name_and_signature_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700471 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800472
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700473 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, const char* shorty)
Mathieu Chartier90443472015-07-16 20:32:27 -0700474 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800475
Mathieu Chartiere401d142015-04-22 13:56:20 -0700476 const void* GetEntryPointFromQuickCompiledCode() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800477 return GetEntryPointFromQuickCompiledCodePtrSize(sizeof(void*));
478 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700479 ALWAYS_INLINE const void* GetEntryPointFromQuickCompiledCodePtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100480 return GetNativePointer<const void*>(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800481 EntryPointFromQuickCompiledCodeOffset(pointer_size), pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800482 }
483
Mathieu Chartiere401d142015-04-22 13:56:20 -0700484 void SetEntryPointFromQuickCompiledCode(const void* entry_point_from_quick_compiled_code) {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800485 SetEntryPointFromQuickCompiledCodePtrSize(entry_point_from_quick_compiled_code,
486 sizeof(void*));
487 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800488 ALWAYS_INLINE void SetEntryPointFromQuickCompiledCodePtrSize(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700489 const void* entry_point_from_quick_compiled_code, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100490 SetNativePointer(EntryPointFromQuickCompiledCodeOffset(pointer_size),
491 entry_point_from_quick_compiled_code, pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800492 }
493
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700494 void RegisterNative(const void* native_method, bool is_fast)
Mathieu Chartier90443472015-07-16 20:32:27 -0700495 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800496
Mathieu Chartier90443472015-07-16 20:32:27 -0700497 void UnregisterNative() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800498
Vladimir Marko05792b92015-08-03 11:56:49 +0100499 static MemberOffset DexCacheResolvedMethodsOffset(size_t pointer_size) {
500 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
501 PtrSizedFields, dex_cache_resolved_methods_) / sizeof(void*) * pointer_size);
502 }
503
504 static MemberOffset DexCacheResolvedTypesOffset(size_t pointer_size) {
505 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
506 PtrSizedFields, dex_cache_resolved_types_) / sizeof(void*) * pointer_size);
507 }
508
Andreas Gampe75f08852016-07-19 08:06:07 -0700509 static MemberOffset DataOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800510 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Andreas Gampe75f08852016-07-19 08:06:07 -0700511 PtrSizedFields, data_) / sizeof(void*) * pointer_size);
512 }
513
514 static MemberOffset EntryPointFromJniOffset(size_t pointer_size) {
515 return DataOffset(pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800516 }
517
Mathieu Chartier2d721012014-11-10 11:08:06 -0800518 static MemberOffset EntryPointFromQuickCompiledCodeOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800519 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800520 PtrSizedFields, entry_point_from_quick_compiled_code_) / sizeof(void*) * pointer_size);
521 }
522
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000523 ImtConflictTable* GetImtConflictTable(size_t pointer_size) {
524 DCHECK(IsRuntimeMethod());
Andreas Gampe75f08852016-07-19 08:06:07 -0700525 return reinterpret_cast<ImtConflictTable*>(GetDataPtrSize(pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000526 }
527
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700528 ALWAYS_INLINE void SetImtConflictTable(ImtConflictTable* table, size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700529 DCHECK(IsRuntimeMethod());
530 SetDataPtrSize(table, pointer_size);
531 }
532
533 ProfilingInfo* GetProfilingInfo(size_t pointer_size) {
534 return reinterpret_cast<ProfilingInfo*>(GetDataPtrSize(pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000535 }
536
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000537 ALWAYS_INLINE void SetProfilingInfo(ProfilingInfo* info) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700538 SetDataPtrSize(info, sizeof(void*));
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000539 }
540
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000541 ALWAYS_INLINE void SetProfilingInfoPtrSize(ProfilingInfo* info, size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700542 SetDataPtrSize(info, pointer_size);
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000543 }
544
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000545 static MemberOffset ProfilingInfoOffset() {
Andreas Gampe75f08852016-07-19 08:06:07 -0700546 DCHECK(IsImagePointerSize(sizeof(void*)));
547 return DataOffset(sizeof(void*));
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000548 }
549
Mathieu Chartiere401d142015-04-22 13:56:20 -0700550 void* GetEntryPointFromJni() {
Andreas Gampe75f08852016-07-19 08:06:07 -0700551 DCHECK(IsNative());
Mathieu Chartier2d721012014-11-10 11:08:06 -0800552 return GetEntryPointFromJniPtrSize(sizeof(void*));
553 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100554
Mathieu Chartiere401d142015-04-22 13:56:20 -0700555 ALWAYS_INLINE void* GetEntryPointFromJniPtrSize(size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700556 return GetDataPtrSize(pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800557 }
558
Andreas Gampecbc96b82015-09-30 20:05:24 +0000559 void SetEntryPointFromJni(const void* entrypoint) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100560 DCHECK(IsNative());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700561 SetEntryPointFromJniPtrSize(entrypoint, sizeof(void*));
Mathieu Chartier2d721012014-11-10 11:08:06 -0800562 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100563
Mathieu Chartiere401d142015-04-22 13:56:20 -0700564 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, size_t pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700565 SetDataPtrSize(entrypoint, pointer_size);
566 }
567
568 ALWAYS_INLINE void* GetDataPtrSize(size_t pointer_size) {
569 DCHECK(IsImagePointerSize(pointer_size));
570 return GetNativePointer<void*>(DataOffset(pointer_size), pointer_size);
571 }
572
573 ALWAYS_INLINE void SetDataPtrSize(const void* data, size_t pointer_size) {
574 DCHECK(IsImagePointerSize(pointer_size));
575 SetNativePointer(DataOffset(pointer_size), data, pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800576 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800577
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800578 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
579 // conventions for a method of managed code. Returns false for Proxy methods.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700580 ALWAYS_INLINE bool IsRuntimeMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800581
582 // Is this a hand crafted method used for something like describing callee saves?
Mathieu Chartier90443472015-07-16 20:32:27 -0700583 bool IsCalleeSaveMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800584
Mathieu Chartier90443472015-07-16 20:32:27 -0700585 bool IsResolutionMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800586
Mathieu Chartier90443472015-07-16 20:32:27 -0700587 bool IsImtUnimplementedMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700588
Mathieu Chartier90443472015-07-16 20:32:27 -0700589 MethodReference ToMethodReference() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier36b58f52014-12-10 12:06:45 -0800590 return MethodReference(GetDexFile(), GetDexMethodIndex());
591 }
592
Ian Rogersc449aa82013-07-29 14:35:46 -0700593 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
594 // indicates whether the found catch block is responsible for clearing the exception or whether
595 // a move-exception instruction is present.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700596 uint32_t FindCatchBlock(Handle<mirror::Class> exception_type, uint32_t dex_pc,
597 bool* has_no_move_exception)
Mathieu Chartier90443472015-07-16 20:32:27 -0700598 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800599
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700600 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700601 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename RootVisitorType>
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700602 void VisitRoots(RootVisitorType& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800603
Mathieu Chartier90443472015-07-16 20:32:27 -0700604 const DexFile* GetDexFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700605
Mathieu Chartier90443472015-07-16 20:32:27 -0700606 const char* GetDeclaringClassDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700607
Mathieu Chartier90443472015-07-16 20:32:27 -0700608 const char* GetShorty() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700609 uint32_t unused_length;
610 return GetShorty(&unused_length);
611 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700612
Mathieu Chartier90443472015-07-16 20:32:27 -0700613 const char* GetShorty(uint32_t* out_length) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700614
Mathieu Chartier90443472015-07-16 20:32:27 -0700615 const Signature GetSignature() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700616
Mathieu Chartier90443472015-07-16 20:32:27 -0700617 ALWAYS_INLINE const char* GetName() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700618
Mathieu Chartier90443472015-07-16 20:32:27 -0700619 mirror::String* GetNameAsString(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers6b14d552014-10-28 21:50:58 -0700620
Mathieu Chartier90443472015-07-16 20:32:27 -0700621 const DexFile::CodeItem* GetCodeItem() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700622
Vladimir Marko05792b92015-08-03 11:56:49 +0100623 bool IsResolvedTypeIdx(uint16_t type_idx, size_t ptr_size) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700624
Mathieu Chartier90443472015-07-16 20:32:27 -0700625 int32_t GetLineNumFromDexPC(uint32_t dex_pc) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700626
Mathieu Chartier90443472015-07-16 20:32:27 -0700627 const DexFile::ProtoId& GetPrototype() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700628
Mathieu Chartier90443472015-07-16 20:32:27 -0700629 const DexFile::TypeList* GetParameterTypeList() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700630
Mathieu Chartier90443472015-07-16 20:32:27 -0700631 const char* GetDeclaringClassSourceFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700632
Mathieu Chartier90443472015-07-16 20:32:27 -0700633 uint16_t GetClassDefIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700634
Mathieu Chartier90443472015-07-16 20:32:27 -0700635 const DexFile::ClassDef& GetClassDef() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700636
Mathieu Chartier90443472015-07-16 20:32:27 -0700637 const char* GetReturnTypeDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700638
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700639 const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700640 SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700641
Ian Rogersded66a02014-10-28 18:12:55 -0700642 // May cause thread suspension due to GetClassFromTypeIdx calling ResolveType this caused a large
643 // number of bugs at call sites.
Vladimir Marko05792b92015-08-03 11:56:49 +0100644 mirror::Class* GetReturnType(bool resolve, size_t ptr_size)
645 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersded66a02014-10-28 18:12:55 -0700646
Mathieu Chartier90443472015-07-16 20:32:27 -0700647 mirror::ClassLoader* GetClassLoader() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700648
Mathieu Chartier90443472015-07-16 20:32:27 -0700649 mirror::DexCache* GetDexCache() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700650
Mathieu Chartiere401d142015-04-22 13:56:20 -0700651 ALWAYS_INLINE ArtMethod* GetInterfaceMethodIfProxy(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700652 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700653
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700654 // May cause thread suspension due to class resolution.
655 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
Mathieu Chartier90443472015-07-16 20:32:27 -0700656 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700657
Vladimir Marko14632852015-08-17 12:07:23 +0100658 // Size of an instance of this native class.
659 static size_t Size(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700660 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size) +
Mathieu Chartiereace4582014-11-24 18:29:54 -0800661 (sizeof(PtrSizedFields) / sizeof(void*)) * pointer_size;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800662 }
663
Vladimir Marko14632852015-08-17 12:07:23 +0100664 // Alignment of an instance of this native class.
665 static size_t Alignment(size_t pointer_size) {
Vladimir Markocf36d492015-08-12 19:27:26 +0100666 // The ArtMethod alignment is the same as image pointer size. This differs from
Vladimir Marko14632852015-08-17 12:07:23 +0100667 // alignof(ArtMethod) if cross-compiling with pointer_size != sizeof(void*).
Vladimir Markocf36d492015-08-12 19:27:26 +0100668 return pointer_size;
669 }
670
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000671 void CopyFrom(ArtMethod* src, size_t image_pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700672 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700673
Vladimir Marko05792b92015-08-03 11:56:49 +0100674 ALWAYS_INLINE GcRoot<mirror::Class>* GetDexCacheResolvedTypes(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700675 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700676
Bill Buzbee1d011d92016-04-04 16:59:29 +0000677 // Note, hotness_counter_ updates are non-atomic but it doesn't need to be precise. Also,
678 // given that the counter is only 16 bits wide we can expect wrap-around in some
679 // situations. Consumers of hotness_count_ must be able to deal with that.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100680 uint16_t IncrementCounter() {
681 return ++hotness_count_;
682 }
683
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100684 void ClearCounter() {
685 hotness_count_ = 0;
686 }
687
Bill Buzbee1d011d92016-04-04 16:59:29 +0000688 void SetCounter(int16_t hotness_count) {
689 hotness_count_ = hotness_count;
690 }
691
692 uint16_t GetCounter() const {
693 return hotness_count_;
694 }
695
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100696 const uint8_t* GetQuickenedInfo() SHARED_REQUIRES(Locks::mutator_lock_);
697
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100698 // Returns the method header for the compiled code containing 'pc'. Note that runtime
699 // methods will return null for this method, as they are not oat based.
700 const OatQuickMethodHeader* GetOatQuickMethodHeader(uintptr_t pc)
701 SHARED_REQUIRES(Locks::mutator_lock_);
702
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000703 // Returns whether the method has any compiled code, JIT or AOT.
704 bool HasAnyCompiledCode() SHARED_REQUIRES(Locks::mutator_lock_);
705
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800706
707 // Update heap objects and non-entrypoint pointers by the passed in visitor for image relocation.
708 // Does not use read barrier.
709 template <typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800710 ALWAYS_INLINE void UpdateObjectsForImageRelocation(const Visitor& visitor, size_t pointer_size)
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800711 SHARED_REQUIRES(Locks::mutator_lock_);
712
713 // Update entry points by passing them through the visitor.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800714 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800715 ALWAYS_INLINE void UpdateEntrypoints(const Visitor& visitor, size_t pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800716
Mathieu Chartier2d721012014-11-10 11:08:06 -0800717 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800718 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800719 // The class we are a part of.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700720 GcRoot<mirror::Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800721
Ian Rogersef7d42f2014-01-06 12:55:46 -0800722 // Access flags; low 16 bits are defined by spec.
723 uint32_t access_flags_;
724
725 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
726
727 // Offset to the CodeItem.
728 uint32_t dex_code_item_offset_;
729
730 // Index into method_ids of the dex file associated with this method.
731 uint32_t dex_method_index_;
732
733 /* End of dex file fields. */
734
735 // Entry within a dispatch table for this method. For static/direct methods the index is into
736 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
737 // ifTable.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100738 uint16_t method_index_;
739
Bill Buzbee1d011d92016-04-04 16:59:29 +0000740 // The hotness we measure for this method. Managed by the interpreter. Not atomic, as we allow
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100741 // missing increments: if the method is hot, we will see it eventually.
742 uint16_t hotness_count_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800743
Mathieu Chartiereace4582014-11-24 18:29:54 -0800744 // Fake padding field gets inserted here.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800745
746 // Must be the last fields in the method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700747 // PACKED(4) is necessary for the correctness of
748 // RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size).
Mathieu Chartier2d721012014-11-10 11:08:06 -0800749 struct PACKED(4) PtrSizedFields {
Vladimir Marko05792b92015-08-03 11:56:49 +0100750 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
751 ArtMethod** dex_cache_resolved_methods_;
752
753 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
754 GcRoot<mirror::Class>* dex_cache_resolved_types_;
755
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100756 // Pointer to JNI function registered to this method, or a function to resolve the JNI function,
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000757 // or the profiling data for non-native methods, or an ImtConflictTable.
Andreas Gampe75f08852016-07-19 08:06:07 -0700758 void* data_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800759
760 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
Elliott Hughes956af0f2014-12-11 14:34:28 -0800761 // the interpreter.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800762 void* entry_point_from_quick_compiled_code_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800763 } ptr_sized_fields_;
764
Mathieu Chartier02e25112013-08-14 16:14:24 -0700765 private:
Mathieu Chartiereace4582014-11-24 18:29:54 -0800766 static size_t PtrSizedFieldsOffset(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700767 // Round up to pointer size for padding field.
768 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size);
769 }
770
Andreas Gampe75f08852016-07-19 08:06:07 -0700771 // Compare given pointer size to the image pointer size.
772 static bool IsImagePointerSize(size_t pointer_size);
773
Mathieu Chartiere401d142015-04-22 13:56:20 -0700774 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100775 ALWAYS_INLINE T GetNativePointer(MemberOffset offset, size_t pointer_size) const {
776 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700777 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
778 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
779 if (pointer_size == sizeof(uint32_t)) {
780 return reinterpret_cast<T>(*reinterpret_cast<const uint32_t*>(addr));
781 } else {
782 auto v = *reinterpret_cast<const uint64_t*>(addr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100783 return reinterpret_cast<T>(dchecked_integral_cast<uintptr_t>(v));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700784 }
785 }
786
787 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100788 ALWAYS_INLINE void SetNativePointer(MemberOffset offset, T new_value, size_t pointer_size) {
789 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700790 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
791 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
792 if (pointer_size == sizeof(uint32_t)) {
793 uintptr_t ptr = reinterpret_cast<uintptr_t>(new_value);
Vladimir Marko05792b92015-08-03 11:56:49 +0100794 *reinterpret_cast<uint32_t*>(addr) = dchecked_integral_cast<uint32_t>(ptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700795 } else {
796 *reinterpret_cast<uint64_t*>(addr) = reinterpret_cast<uintptr_t>(new_value);
797 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800798 }
799
Mathieu Chartiere401d142015-04-22 13:56:20 -0700800 DISALLOW_COPY_AND_ASSIGN(ArtMethod); // Need to use CopyFrom to deal with 32 vs 64 bits.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800801};
802
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800803} // namespace art
804
Mathieu Chartiere401d142015-04-22 13:56:20 -0700805#endif // ART_RUNTIME_ART_METHOD_H_