blob: 2b025f8c62bea349d00473ca99511a50d0cffdc7 [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
102 // Visit all of the entries.
103 // NO_THREAD_SAFETY_ANALYSIS for calling with held locks. Visitor is passed a pair of ArtMethod*
104 // and also returns one. The order is <interface, implementation>.
105 template<typename Visitor>
106 void Visit(const Visitor& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS {
107 uint32_t table_index = 0;
108 for (;;) {
109 ArtMethod* interface_method = GetInterfaceMethod(table_index, pointer_size);
110 if (interface_method == nullptr) {
111 break;
112 }
113 ArtMethod* implementation_method = GetImplementationMethod(table_index, pointer_size);
114 auto input = std::make_pair(interface_method, implementation_method);
115 std::pair<ArtMethod*, ArtMethod*> updated = visitor(input);
116 if (input.first != updated.first) {
117 SetInterfaceMethod(table_index, pointer_size, updated.first);
118 }
119 if (input.second != updated.second) {
120 SetImplementationMethod(table_index, pointer_size, updated.second);
121 }
122 ++table_index;
123 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700124 }
125
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000126 // Lookup the implementation ArtMethod associated to `interface_method`. Return null
127 // if not found.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700128 ArtMethod* Lookup(ArtMethod* interface_method, size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000129 uint32_t table_index = 0;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700130 for (;;) {
131 ArtMethod* current_interface_method = GetInterfaceMethod(table_index, pointer_size);
132 if (current_interface_method == nullptr) {
133 break;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000134 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700135 if (current_interface_method == interface_method) {
136 return GetImplementationMethod(table_index, pointer_size);
137 }
138 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000139 }
140 return nullptr;
141 }
142
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700143 // Compute the number of entries in this table.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700144 size_t NumEntries(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 while (GetInterfaceMethod(table_index, pointer_size) != nullptr) {
147 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000148 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700149 return table_index;
150 }
151
152 // Compute the size in bytes taken by this table.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700153 size_t ComputeSize(size_t pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000154 // Add the end marker.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700155 return ComputeSize(NumEntries(pointer_size), pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000156 }
157
158 // Compute the size in bytes needed for copying the given `table` and add
159 // one more entry.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700160 static size_t ComputeSizeWithOneMoreEntry(ImtConflictTable* table, size_t pointer_size) {
161 return table->ComputeSize(pointer_size) + EntrySize(pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000162 }
163
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700164 // Compute size with a fixed number of entries.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700165 static size_t ComputeSize(size_t num_entries, size_t pointer_size) {
166 return (num_entries + 1) * EntrySize(pointer_size); // Add one for null terminator.
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700167 }
168
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700169 static size_t EntrySize(size_t pointer_size) {
170 return pointer_size * static_cast<size_t>(kMethodCount);
171 }
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000172
173 private:
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700174 ArtMethod* GetMethod(size_t index, size_t pointer_size) const {
175 if (pointer_size == 8) {
176 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data64_[index]));
177 } else {
178 DCHECK_EQ(pointer_size, 4u);
179 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data32_[index]));
180 }
181 }
182
183 void SetMethod(size_t index, size_t pointer_size, ArtMethod* method) {
184 if (pointer_size == 8) {
185 data64_[index] = dchecked_integral_cast<uint64_t>(reinterpret_cast<uintptr_t>(method));
186 } else {
187 DCHECK_EQ(pointer_size, 4u);
188 data32_[index] = dchecked_integral_cast<uint32_t>(reinterpret_cast<uintptr_t>(method));
189 }
190 }
191
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000192 // Array of entries that the assembly stubs will iterate over. Note that this is
193 // not fixed size, and we allocate data prior to calling the constructor
194 // of ImtConflictTable.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700195 union {
196 uint32_t data32_[0];
197 uint64_t data64_[0];
198 };
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000199
200 DISALLOW_COPY_AND_ASSIGN(ImtConflictTable);
201};
202
Mathieu Chartiere401d142015-04-22 13:56:20 -0700203class ArtMethod FINAL {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800204 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700205 ArtMethod() : access_flags_(0), dex_code_item_offset_(0), dex_method_index_(0),
206 method_index_(0) { }
207
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000208 ArtMethod(ArtMethod* src, size_t image_pointer_size) {
209 CopyFrom(src, image_pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700210 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700211
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700212 static ArtMethod* FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
213 jobject jlr_method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700214 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62f05122014-03-21 11:21:29 -0700215
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800216 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700217 ALWAYS_INLINE mirror::Class* GetDeclaringClass() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800218
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800219 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartiere401d142015-04-22 13:56:20 -0700220 ALWAYS_INLINE mirror::Class* GetDeclaringClassUnchecked()
Mathieu Chartier90443472015-07-16 20:32:27 -0700221 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700222
223 void SetDeclaringClass(mirror::Class *new_declaring_class)
Mathieu Chartier90443472015-07-16 20:32:27 -0700224 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800225
Mathieu Chartier10e5ea92015-08-13 12:56:31 -0700226 bool CASDeclaringClass(mirror::Class* expected_class, mirror::Class* desired_class)
227 SHARED_REQUIRES(Locks::mutator_lock_);
228
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800229 static MemberOffset DeclaringClassOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700230 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, declaring_class_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800231 }
232
Andreas Gampecbc96b82015-09-30 20:05:24 +0000233 // Note: GetAccessFlags acquires the mutator lock in debug mode to check that it is not called for
234 // a proxy method.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800235 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000236 ALWAYS_INLINE uint32_t GetAccessFlags();
Jeff Hao5d917302013-02-27 17:57:33 -0800237
Mathieu Chartiere401d142015-04-22 13:56:20 -0700238 void SetAccessFlags(uint32_t new_access_flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100239 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700240 access_flags_ = new_access_flags;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800241 }
242
243 // Approximate what kind of method call would be used for this method.
Mathieu Chartier90443472015-07-16 20:32:27 -0700244 InvokeType GetInvokeType() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800245
246 // Returns true if the method is declared public.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000247 bool IsPublic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800248 return (GetAccessFlags() & kAccPublic) != 0;
249 }
250
251 // Returns true if the method is declared private.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000252 bool IsPrivate() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800253 return (GetAccessFlags() & kAccPrivate) != 0;
254 }
255
256 // Returns true if the method is declared static.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000257 bool IsStatic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800258 return (GetAccessFlags() & kAccStatic) != 0;
259 }
260
261 // Returns true if the method is a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000262 bool IsConstructor() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800263 return (GetAccessFlags() & kAccConstructor) != 0;
264 }
265
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700266 // Returns true if the method is a class initializer.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000267 bool IsClassInitializer() {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700268 return IsConstructor() && IsStatic();
269 }
270
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800271 // Returns true if the method is static, private, or a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000272 bool IsDirect() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800273 return IsDirect(GetAccessFlags());
274 }
275
276 static bool IsDirect(uint32_t access_flags) {
Andreas Gampecbc96b82015-09-30 20:05:24 +0000277 constexpr uint32_t direct = kAccStatic | kAccPrivate | kAccConstructor;
278 return (access_flags & direct) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800279 }
280
281 // Returns true if the method is declared synchronized.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000282 bool IsSynchronized() {
283 constexpr uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800284 return (GetAccessFlags() & synchonized) != 0;
285 }
286
Andreas Gampecbc96b82015-09-30 20:05:24 +0000287 bool IsFinal() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800288 return (GetAccessFlags() & kAccFinal) != 0;
289 }
290
Alex Light36121492016-02-22 13:43:29 -0800291 bool IsCopied() {
292 const bool copied = (GetAccessFlags() & kAccCopied) != 0;
293 // (IsMiranda() || IsDefaultConflicting()) implies copied
294 DCHECK(!(IsMiranda() || IsDefaultConflicting()) || copied)
295 << "Miranda or default-conflict methods must always be copied.";
296 return copied;
Alex Lightfcea56f2016-02-17 11:59:05 -0800297 }
298
Andreas Gampecbc96b82015-09-30 20:05:24 +0000299 bool IsMiranda() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800300 return (GetAccessFlags() & kAccMiranda) != 0;
301 }
302
Alex Light9139e002015-10-09 15:59:48 -0700303 // Returns true if invoking this method will not throw an AbstractMethodError or
304 // IncompatibleClassChangeError.
305 bool IsInvokable() {
306 return !IsAbstract() && !IsDefaultConflicting();
307 }
308
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100309 bool IsCompilable() {
310 return (GetAccessFlags() & kAccCompileDontBother) == 0;
311 }
312
Alex Light9139e002015-10-09 15:59:48 -0700313 // A default conflict method is a special sentinel method that stands for a conflict between
314 // multiple default methods. It cannot be invoked, throwing an IncompatibleClassChangeError if one
315 // attempts to do so.
316 bool IsDefaultConflicting() {
317 return (GetAccessFlags() & kAccDefaultConflict) != 0u;
318 }
319
Alex Lighteb7c1442015-08-31 13:17:42 -0700320 // This is set by the class linker.
321 bool IsDefault() {
322 return (GetAccessFlags() & kAccDefault) != 0;
323 }
324
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800325 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000326 bool IsNative() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800327 return (GetAccessFlags<kReadBarrierOption>() & kAccNative) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 }
329
Andreas Gampecbc96b82015-09-30 20:05:24 +0000330 bool IsFastNative() {
331 constexpr uint32_t mask = kAccFastNative | kAccNative;
Ian Rogers16ce0922014-01-10 14:59:36 -0800332 return (GetAccessFlags() & mask) == mask;
Ian Rogers1eb512d2013-10-18 15:42:20 -0700333 }
334
Andreas Gampecbc96b82015-09-30 20:05:24 +0000335 bool IsAbstract() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800336 return (GetAccessFlags() & kAccAbstract) != 0;
337 }
338
Andreas Gampecbc96b82015-09-30 20:05:24 +0000339 bool IsSynthetic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800340 return (GetAccessFlags() & kAccSynthetic) != 0;
341 }
342
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700343 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700344 bool IsProxyMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800345
Igor Murashkindf707e42016-02-02 16:56:50 -0800346 bool SkipAccessChecks() {
347 return (GetAccessFlags() & kAccSkipAccessChecks) != 0;
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200348 }
349
Igor Murashkindf707e42016-02-02 16:56:50 -0800350 void SetSkipAccessChecks() {
351 DCHECK(!SkipAccessChecks());
352 SetAccessFlags(GetAccessFlags() | kAccSkipAccessChecks);
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200353 }
354
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700355 // Should this method be run in the interpreter and count locks (e.g., failed structured-
356 // locking verification)?
357 bool MustCountLocks() {
358 return (GetAccessFlags() & kAccMustCountLocks) != 0;
359 }
360
Alex Lighteb7c1442015-08-31 13:17:42 -0700361 // Returns true if this method could be overridden by a default method.
Alex Light9139e002015-10-09 15:59:48 -0700362 bool IsOverridableByDefaultMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Alex Lighteb7c1442015-08-31 13:17:42 -0700363
Mathieu Chartier90443472015-07-16 20:32:27 -0700364 bool CheckIncompatibleClassChange(InvokeType type) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800365
Alex Light9139e002015-10-09 15:59:48 -0700366 // Throws the error that would result from trying to invoke this method (i.e.
367 // IncompatibleClassChangeError or AbstractMethodError). Only call if !IsInvokable();
368 void ThrowInvocationTimeError() SHARED_REQUIRES(Locks::mutator_lock_);
369
Mathieu Chartier90443472015-07-16 20:32:27 -0700370 uint16_t GetMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800371
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700372 // Doesn't do erroneous / unresolved class checks.
Mathieu Chartier90443472015-07-16 20:32:27 -0700373 uint16_t GetMethodIndexDuringLinking() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700374
Mathieu Chartier90443472015-07-16 20:32:27 -0700375 size_t GetVtableIndex() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800376 return GetMethodIndex();
377 }
378
Mathieu Chartier90443472015-07-16 20:32:27 -0700379 void SetMethodIndex(uint16_t new_method_index) SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100380 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700381 method_index_ = new_method_index;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800382 }
383
Vladimir Markoc1363122015-04-09 14:13:13 +0100384 static MemberOffset DexMethodIndexOffset() {
385 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_);
386 }
387
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800388 static MemberOffset MethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700389 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800390 }
391
Mathieu Chartiere401d142015-04-22 13:56:20 -0700392 uint32_t GetCodeItemOffset() {
393 return dex_code_item_offset_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800394 }
395
Mathieu Chartiere401d142015-04-22 13:56:20 -0700396 void SetCodeItemOffset(uint32_t new_code_off) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100397 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700398 dex_code_item_offset_ = new_code_off;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800399 }
400
401 // Number of 32bit registers that would be required to hold all the arguments
402 static size_t NumArgRegisters(const StringPiece& shorty);
403
Mathieu Chartier90443472015-07-16 20:32:27 -0700404 ALWAYS_INLINE uint32_t GetDexMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800405
Mathieu Chartiere401d142015-04-22 13:56:20 -0700406 void SetDexMethodIndex(uint32_t new_idx) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100407 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700408 dex_method_index_ = new_idx;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800409 }
410
Vladimir Marko05792b92015-08-03 11:56:49 +0100411 ALWAYS_INLINE ArtMethod** GetDexCacheResolvedMethods(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700412 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100413 ALWAYS_INLINE ArtMethod* GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700414 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100415 ALWAYS_INLINE void SetDexCacheResolvedMethod(uint16_t method_index,
416 ArtMethod* new_method,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700417 size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700418 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100419 ALWAYS_INLINE void SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700420 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100421 bool HasDexCacheResolvedMethods(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
422 bool HasSameDexCacheResolvedMethods(ArtMethod* other, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700423 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100424 bool HasSameDexCacheResolvedMethods(ArtMethod** other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700425 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800426
Andreas Gampe58a5af82014-07-31 16:23:49 -0700427 template <bool kWithCheck = true>
Vladimir Marko05792b92015-08-03 11:56:49 +0100428 mirror::Class* GetDexCacheResolvedType(uint32_t type_idx, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700429 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100430 void SetDexCacheResolvedTypes(GcRoot<mirror::Class>* new_dex_cache_types, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700431 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100432 bool HasDexCacheResolvedTypes(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
433 bool HasSameDexCacheResolvedTypes(ArtMethod* other, size_t pointer_size)
434 SHARED_REQUIRES(Locks::mutator_lock_);
435 bool HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700436 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800437
Ian Rogersa0485602014-12-02 15:48:04 -0800438 // Get the Class* from the type index into this method's dex cache.
Vladimir Marko05792b92015-08-03 11:56:49 +0100439 mirror::Class* GetClassFromTypeIndex(uint16_t type_idx, bool resolve, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700440 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersa0485602014-12-02 15:48:04 -0800441
Alex Light6c8467f2015-11-20 15:03:26 -0800442 // Returns true if this method has the same name and signature of the other method.
443 bool HasSameNameAndSignature(ArtMethod* other) SHARED_REQUIRES(Locks::mutator_lock_);
444
Ian Rogerse0a02da2014-12-02 14:10:53 -0800445 // Find the method that this method overrides.
Alex Light705ad492015-09-21 11:36:30 -0700446 ArtMethod* FindOverriddenMethod(size_t pointer_size)
Alex Light705ad492015-09-21 11:36:30 -0700447 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800448
Ian Rogerse0a02da2014-12-02 14:10:53 -0800449 // Find the method index for this method within other_dexfile. If this method isn't present then
450 // return DexFile::kDexNoIndex. The name_and_signature_idx MUST refer to a MethodId with the same
451 // name and signature in the other_dexfile, such as the method index used to resolve this method
452 // in the other_dexfile.
453 uint32_t FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
454 uint32_t name_and_signature_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700455 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800456
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700457 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, const char* shorty)
Mathieu Chartier90443472015-07-16 20:32:27 -0700458 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800459
Mathieu Chartiere401d142015-04-22 13:56:20 -0700460 const void* GetEntryPointFromQuickCompiledCode() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800461 return GetEntryPointFromQuickCompiledCodePtrSize(sizeof(void*));
462 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700463 ALWAYS_INLINE const void* GetEntryPointFromQuickCompiledCodePtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100464 return GetNativePointer<const void*>(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800465 EntryPointFromQuickCompiledCodeOffset(pointer_size), pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800466 }
467
Mathieu Chartiere401d142015-04-22 13:56:20 -0700468 void SetEntryPointFromQuickCompiledCode(const void* entry_point_from_quick_compiled_code) {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800469 SetEntryPointFromQuickCompiledCodePtrSize(entry_point_from_quick_compiled_code,
470 sizeof(void*));
471 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800472 ALWAYS_INLINE void SetEntryPointFromQuickCompiledCodePtrSize(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700473 const void* entry_point_from_quick_compiled_code, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100474 SetNativePointer(EntryPointFromQuickCompiledCodeOffset(pointer_size),
475 entry_point_from_quick_compiled_code, pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800476 }
477
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700478 void RegisterNative(const void* native_method, bool is_fast)
Mathieu Chartier90443472015-07-16 20:32:27 -0700479 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800480
Mathieu Chartier90443472015-07-16 20:32:27 -0700481 void UnregisterNative() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800482
Vladimir Marko05792b92015-08-03 11:56:49 +0100483 static MemberOffset DexCacheResolvedMethodsOffset(size_t pointer_size) {
484 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
485 PtrSizedFields, dex_cache_resolved_methods_) / sizeof(void*) * pointer_size);
486 }
487
488 static MemberOffset DexCacheResolvedTypesOffset(size_t pointer_size) {
489 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
490 PtrSizedFields, dex_cache_resolved_types_) / sizeof(void*) * pointer_size);
491 }
492
Mathieu Chartier2d721012014-11-10 11:08:06 -0800493 static MemberOffset EntryPointFromJniOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800494 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800495 PtrSizedFields, entry_point_from_jni_) / sizeof(void*) * pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800496 }
497
Mathieu Chartier2d721012014-11-10 11:08:06 -0800498 static MemberOffset EntryPointFromQuickCompiledCodeOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800499 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800500 PtrSizedFields, entry_point_from_quick_compiled_code_) / sizeof(void*) * pointer_size);
501 }
502
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700503 ProfilingInfo* GetProfilingInfo(size_t pointer_size) {
504 return reinterpret_cast<ProfilingInfo*>(GetEntryPointFromJniPtrSize(pointer_size));
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100505 }
506
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000507 ImtConflictTable* GetImtConflictTable(size_t pointer_size) {
508 DCHECK(IsRuntimeMethod());
509 return reinterpret_cast<ImtConflictTable*>(GetEntryPointFromJniPtrSize(pointer_size));
510 }
511
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700512 ALWAYS_INLINE void SetImtConflictTable(ImtConflictTable* table, size_t pointer_size) {
513 SetEntryPointFromJniPtrSize(table, pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000514 }
515
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000516 ALWAYS_INLINE void SetProfilingInfo(ProfilingInfo* info) {
517 SetEntryPointFromJniPtrSize(info, sizeof(void*));
518 }
519
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000520 ALWAYS_INLINE void SetProfilingInfoPtrSize(ProfilingInfo* info, size_t pointer_size) {
521 SetEntryPointFromJniPtrSize(info, pointer_size);
522 }
523
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000524 static MemberOffset ProfilingInfoOffset() {
525 return EntryPointFromJniOffset(sizeof(void*));
526 }
527
Mathieu Chartiere401d142015-04-22 13:56:20 -0700528 void* GetEntryPointFromJni() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800529 return GetEntryPointFromJniPtrSize(sizeof(void*));
530 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100531
Mathieu Chartiere401d142015-04-22 13:56:20 -0700532 ALWAYS_INLINE void* GetEntryPointFromJniPtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100533 return GetNativePointer<void*>(EntryPointFromJniOffset(pointer_size), pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800534 }
535
Andreas Gampecbc96b82015-09-30 20:05:24 +0000536 void SetEntryPointFromJni(const void* entrypoint) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100537 DCHECK(IsNative());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700538 SetEntryPointFromJniPtrSize(entrypoint, sizeof(void*));
Mathieu Chartier2d721012014-11-10 11:08:06 -0800539 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100540
Mathieu Chartiere401d142015-04-22 13:56:20 -0700541 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100542 SetNativePointer(EntryPointFromJniOffset(pointer_size), entrypoint, pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800543 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800544
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800545 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
546 // conventions for a method of managed code. Returns false for Proxy methods.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700547 ALWAYS_INLINE bool IsRuntimeMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800548
549 // Is this a hand crafted method used for something like describing callee saves?
Mathieu Chartier90443472015-07-16 20:32:27 -0700550 bool IsCalleeSaveMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800551
Mathieu Chartier90443472015-07-16 20:32:27 -0700552 bool IsResolutionMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800553
Mathieu Chartier90443472015-07-16 20:32:27 -0700554 bool IsImtUnimplementedMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700555
Mathieu Chartier90443472015-07-16 20:32:27 -0700556 MethodReference ToMethodReference() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier36b58f52014-12-10 12:06:45 -0800557 return MethodReference(GetDexFile(), GetDexMethodIndex());
558 }
559
Ian Rogersc449aa82013-07-29 14:35:46 -0700560 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
561 // indicates whether the found catch block is responsible for clearing the exception or whether
562 // a move-exception instruction is present.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700563 uint32_t FindCatchBlock(Handle<mirror::Class> exception_type, uint32_t dex_pc,
564 bool* has_no_move_exception)
Mathieu Chartier90443472015-07-16 20:32:27 -0700565 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800566
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700567 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700568 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename RootVisitorType>
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700569 void VisitRoots(RootVisitorType& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800570
Mathieu Chartier90443472015-07-16 20:32:27 -0700571 const DexFile* GetDexFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700572
Mathieu Chartier90443472015-07-16 20:32:27 -0700573 const char* GetDeclaringClassDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700574
Mathieu Chartier90443472015-07-16 20:32:27 -0700575 const char* GetShorty() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700576 uint32_t unused_length;
577 return GetShorty(&unused_length);
578 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700579
Mathieu Chartier90443472015-07-16 20:32:27 -0700580 const char* GetShorty(uint32_t* out_length) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700581
Mathieu Chartier90443472015-07-16 20:32:27 -0700582 const Signature GetSignature() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700583
Mathieu Chartier90443472015-07-16 20:32:27 -0700584 ALWAYS_INLINE const char* GetName() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700585
Mathieu Chartier90443472015-07-16 20:32:27 -0700586 mirror::String* GetNameAsString(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers6b14d552014-10-28 21:50:58 -0700587
Mathieu Chartier90443472015-07-16 20:32:27 -0700588 const DexFile::CodeItem* GetCodeItem() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700589
Vladimir Marko05792b92015-08-03 11:56:49 +0100590 bool IsResolvedTypeIdx(uint16_t type_idx, size_t ptr_size) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700591
Mathieu Chartier90443472015-07-16 20:32:27 -0700592 int32_t GetLineNumFromDexPC(uint32_t dex_pc) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700593
Mathieu Chartier90443472015-07-16 20:32:27 -0700594 const DexFile::ProtoId& GetPrototype() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700595
Mathieu Chartier90443472015-07-16 20:32:27 -0700596 const DexFile::TypeList* GetParameterTypeList() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700597
Mathieu Chartier90443472015-07-16 20:32:27 -0700598 const char* GetDeclaringClassSourceFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700599
Mathieu Chartier90443472015-07-16 20:32:27 -0700600 uint16_t GetClassDefIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700601
Mathieu Chartier90443472015-07-16 20:32:27 -0700602 const DexFile::ClassDef& GetClassDef() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700603
Mathieu Chartier90443472015-07-16 20:32:27 -0700604 const char* GetReturnTypeDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700605
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700606 const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700607 SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700608
Ian Rogersded66a02014-10-28 18:12:55 -0700609 // May cause thread suspension due to GetClassFromTypeIdx calling ResolveType this caused a large
610 // number of bugs at call sites.
Vladimir Marko05792b92015-08-03 11:56:49 +0100611 mirror::Class* GetReturnType(bool resolve, size_t ptr_size)
612 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersded66a02014-10-28 18:12:55 -0700613
Mathieu Chartier90443472015-07-16 20:32:27 -0700614 mirror::ClassLoader* GetClassLoader() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700615
Mathieu Chartier90443472015-07-16 20:32:27 -0700616 mirror::DexCache* GetDexCache() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700617
Mathieu Chartiere401d142015-04-22 13:56:20 -0700618 ALWAYS_INLINE ArtMethod* GetInterfaceMethodIfProxy(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700619 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700620
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700621 // May cause thread suspension due to class resolution.
622 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
Mathieu Chartier90443472015-07-16 20:32:27 -0700623 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700624
Vladimir Marko14632852015-08-17 12:07:23 +0100625 // Size of an instance of this native class.
626 static size_t Size(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700627 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size) +
Mathieu Chartiereace4582014-11-24 18:29:54 -0800628 (sizeof(PtrSizedFields) / sizeof(void*)) * pointer_size;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800629 }
630
Vladimir Marko14632852015-08-17 12:07:23 +0100631 // Alignment of an instance of this native class.
632 static size_t Alignment(size_t pointer_size) {
Vladimir Markocf36d492015-08-12 19:27:26 +0100633 // The ArtMethod alignment is the same as image pointer size. This differs from
Vladimir Marko14632852015-08-17 12:07:23 +0100634 // alignof(ArtMethod) if cross-compiling with pointer_size != sizeof(void*).
Vladimir Markocf36d492015-08-12 19:27:26 +0100635 return pointer_size;
636 }
637
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000638 void CopyFrom(ArtMethod* src, size_t image_pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700639 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700640
Vladimir Marko05792b92015-08-03 11:56:49 +0100641 ALWAYS_INLINE GcRoot<mirror::Class>* GetDexCacheResolvedTypes(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700642 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700643
Bill Buzbee1d011d92016-04-04 16:59:29 +0000644 // Note, hotness_counter_ updates are non-atomic but it doesn't need to be precise. Also,
645 // given that the counter is only 16 bits wide we can expect wrap-around in some
646 // situations. Consumers of hotness_count_ must be able to deal with that.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100647 uint16_t IncrementCounter() {
648 return ++hotness_count_;
649 }
650
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100651 void ClearCounter() {
652 hotness_count_ = 0;
653 }
654
Bill Buzbee1d011d92016-04-04 16:59:29 +0000655 void SetCounter(int16_t hotness_count) {
656 hotness_count_ = hotness_count;
657 }
658
659 uint16_t GetCounter() const {
660 return hotness_count_;
661 }
662
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100663 const uint8_t* GetQuickenedInfo() SHARED_REQUIRES(Locks::mutator_lock_);
664
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100665 // Returns the method header for the compiled code containing 'pc'. Note that runtime
666 // methods will return null for this method, as they are not oat based.
667 const OatQuickMethodHeader* GetOatQuickMethodHeader(uintptr_t pc)
668 SHARED_REQUIRES(Locks::mutator_lock_);
669
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000670 // Returns whether the method has any compiled code, JIT or AOT.
671 bool HasAnyCompiledCode() SHARED_REQUIRES(Locks::mutator_lock_);
672
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800673
674 // Update heap objects and non-entrypoint pointers by the passed in visitor for image relocation.
675 // Does not use read barrier.
676 template <typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800677 ALWAYS_INLINE void UpdateObjectsForImageRelocation(const Visitor& visitor, size_t pointer_size)
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800678 SHARED_REQUIRES(Locks::mutator_lock_);
679
680 // Update entry points by passing them through the visitor.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800681 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800682 ALWAYS_INLINE void UpdateEntrypoints(const Visitor& visitor, size_t pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800683
Mathieu Chartier2d721012014-11-10 11:08:06 -0800684 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800685 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800686 // The class we are a part of.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700687 GcRoot<mirror::Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800688
Ian Rogersef7d42f2014-01-06 12:55:46 -0800689 // Access flags; low 16 bits are defined by spec.
690 uint32_t access_flags_;
691
692 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
693
694 // Offset to the CodeItem.
695 uint32_t dex_code_item_offset_;
696
697 // Index into method_ids of the dex file associated with this method.
698 uint32_t dex_method_index_;
699
700 /* End of dex file fields. */
701
702 // Entry within a dispatch table for this method. For static/direct methods the index is into
703 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
704 // ifTable.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100705 uint16_t method_index_;
706
Bill Buzbee1d011d92016-04-04 16:59:29 +0000707 // The hotness we measure for this method. Managed by the interpreter. Not atomic, as we allow
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100708 // missing increments: if the method is hot, we will see it eventually.
709 uint16_t hotness_count_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800710
Mathieu Chartiereace4582014-11-24 18:29:54 -0800711 // Fake padding field gets inserted here.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800712
713 // Must be the last fields in the method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700714 // PACKED(4) is necessary for the correctness of
715 // RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size).
Mathieu Chartier2d721012014-11-10 11:08:06 -0800716 struct PACKED(4) PtrSizedFields {
Vladimir Marko05792b92015-08-03 11:56:49 +0100717 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
718 ArtMethod** dex_cache_resolved_methods_;
719
720 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
721 GcRoot<mirror::Class>* dex_cache_resolved_types_;
722
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100723 // Pointer to JNI function registered to this method, or a function to resolve the JNI function,
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000724 // or the profiling data for non-native methods, or an ImtConflictTable.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800725 void* entry_point_from_jni_;
726
727 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
Elliott Hughes956af0f2014-12-11 14:34:28 -0800728 // the interpreter.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800729 void* entry_point_from_quick_compiled_code_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800730 } ptr_sized_fields_;
731
Mathieu Chartier02e25112013-08-14 16:14:24 -0700732 private:
Mathieu Chartiereace4582014-11-24 18:29:54 -0800733 static size_t PtrSizedFieldsOffset(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700734 // Round up to pointer size for padding field.
735 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size);
736 }
737
738 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100739 ALWAYS_INLINE T GetNativePointer(MemberOffset offset, size_t pointer_size) const {
740 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700741 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
742 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
743 if (pointer_size == sizeof(uint32_t)) {
744 return reinterpret_cast<T>(*reinterpret_cast<const uint32_t*>(addr));
745 } else {
746 auto v = *reinterpret_cast<const uint64_t*>(addr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100747 return reinterpret_cast<T>(dchecked_integral_cast<uintptr_t>(v));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700748 }
749 }
750
751 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100752 ALWAYS_INLINE void SetNativePointer(MemberOffset offset, T new_value, size_t pointer_size) {
753 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700754 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
755 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
756 if (pointer_size == sizeof(uint32_t)) {
757 uintptr_t ptr = reinterpret_cast<uintptr_t>(new_value);
Vladimir Marko05792b92015-08-03 11:56:49 +0100758 *reinterpret_cast<uint32_t*>(addr) = dchecked_integral_cast<uint32_t>(ptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700759 } else {
760 *reinterpret_cast<uint64_t*>(addr) = reinterpret_cast<uintptr_t>(new_value);
761 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800762 }
763
Mathieu Chartiere401d142015-04-22 13:56:20 -0700764 DISALLOW_COPY_AND_ASSIGN(ArtMethod); // Need to use CopyFrom to deal with 32 vs 64 bits.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800765};
766
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800767} // namespace art
768
Mathieu Chartiere401d142015-04-22 13:56:20 -0700769#endif // ART_RUNTIME_ART_METHOD_H_