blob: a90ef2359eebcb5f131080a82b7c4f198f3eb12d [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Mathieu Chartiere401d142015-04-22 13:56:20 -070017#ifndef ART_RUNTIME_ART_METHOD_H_
18#define ART_RUNTIME_ART_METHOD_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
Andreas Gampe479b1de2016-07-19 18:27:17 -070020#include <cstddef>
21
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010022#include "base/bit_utils.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010023#include "base/casts.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070024#include "base/enums.h"
Jeff Hao790ad902013-05-22 15:02:08 -070025#include "dex_file.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070026#include "gc_root.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "invoke_type.h"
Mathieu Chartier36b58f52014-12-10 12:06:45 -080028#include "method_reference.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "modifiers.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "mirror/object.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070031#include "read_barrier_option.h"
Sebastien Hertze4b7c892014-12-17 20:02:50 +010032#include "stack.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070033#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034
35namespace art {
36
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037union JValue;
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010038class OatQuickMethodHeader;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010039class ProfilingInfo;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070040class ScopedObjectAccessAlreadyRunnable;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041class StringPiece;
Jeff Hao16743632013-05-08 10:59:04 -070042class ShadowFrame;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043
44namespace mirror {
Mathieu Chartiere401d142015-04-22 13:56:20 -070045class Array;
46class Class;
Mathieu Chartiere42888f2016-04-14 10:49:19 -070047class IfTable;
Mathieu Chartiere401d142015-04-22 13:56:20 -070048class PointerArray;
49} // namespace mirror
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050
Nicolas Geoffray796d6302016-03-13 22:22:31 +000051// Table to resolve IMT conflicts at runtime. The table is attached to
52// the jni entrypoint of IMT conflict ArtMethods.
53// The table contains a list of pairs of { interface_method, implementation_method }
54// with the last entry being null to make an assembly implementation of a lookup
55// faster.
56class ImtConflictTable {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070057 enum MethodIndex {
58 kMethodInterface,
59 kMethodImplementation,
60 kMethodCount, // Number of elements in enum.
61 };
62
Nicolas Geoffray796d6302016-03-13 22:22:31 +000063 public:
64 // Build a new table copying `other` and adding the new entry formed of
65 // the pair { `interface_method`, `implementation_method` }
66 ImtConflictTable(ImtConflictTable* other,
67 ArtMethod* interface_method,
Mathieu Chartiere42888f2016-04-14 10:49:19 -070068 ArtMethod* implementation_method,
Andreas Gampe542451c2016-07-26 09:02:02 -070069 PointerSize pointer_size) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070070 const size_t count = other->NumEntries(pointer_size);
71 for (size_t i = 0; i < count; ++i) {
72 SetInterfaceMethod(i, pointer_size, other->GetInterfaceMethod(i, pointer_size));
73 SetImplementationMethod(i, pointer_size, other->GetImplementationMethod(i, pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +000074 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -070075 SetInterfaceMethod(count, pointer_size, interface_method);
76 SetImplementationMethod(count, pointer_size, implementation_method);
Nicolas Geoffray796d6302016-03-13 22:22:31 +000077 // Add the null marker.
Mathieu Chartiere42888f2016-04-14 10:49:19 -070078 SetInterfaceMethod(count + 1, pointer_size, nullptr);
79 SetImplementationMethod(count + 1, pointer_size, nullptr);
Nicolas Geoffray796d6302016-03-13 22:22:31 +000080 }
81
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070082 // num_entries excludes the header.
Andreas Gampe542451c2016-07-26 09:02:02 -070083 ImtConflictTable(size_t num_entries, PointerSize pointer_size) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070084 SetInterfaceMethod(num_entries, pointer_size, nullptr);
85 SetImplementationMethod(num_entries, pointer_size, nullptr);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070086 }
87
88 // Set an entry at an index.
Andreas Gampe542451c2016-07-26 09:02:02 -070089 void SetInterfaceMethod(size_t index, PointerSize pointer_size, ArtMethod* method) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070090 SetMethod(index * kMethodCount + kMethodInterface, pointer_size, method);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070091 }
92
Andreas Gampe542451c2016-07-26 09:02:02 -070093 void SetImplementationMethod(size_t index, PointerSize pointer_size, ArtMethod* method) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070094 SetMethod(index * kMethodCount + kMethodImplementation, pointer_size, method);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070095 }
96
Andreas Gampe542451c2016-07-26 09:02:02 -070097 ArtMethod* GetInterfaceMethod(size_t index, PointerSize pointer_size) const {
Mathieu Chartiere42888f2016-04-14 10:49:19 -070098 return GetMethod(index * kMethodCount + kMethodInterface, pointer_size);
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -070099 }
100
Andreas Gampe542451c2016-07-26 09:02:02 -0700101 ArtMethod* GetImplementationMethod(size_t index, PointerSize pointer_size) const {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700102 return GetMethod(index * kMethodCount + kMethodImplementation, pointer_size);
103 }
104
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000105 // Return true if two conflict tables are the same.
Andreas Gampe542451c2016-07-26 09:02:02 -0700106 bool Equals(ImtConflictTable* other, PointerSize pointer_size) const {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000107 size_t num = NumEntries(pointer_size);
108 if (num != other->NumEntries(pointer_size)) {
109 return false;
110 }
111 for (size_t i = 0; i < num; ++i) {
112 if (GetInterfaceMethod(i, pointer_size) != other->GetInterfaceMethod(i, pointer_size) ||
113 GetImplementationMethod(i, pointer_size) !=
114 other->GetImplementationMethod(i, pointer_size)) {
115 return false;
116 }
117 }
118 return true;
119 }
120
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700121 // Visit all of the entries.
122 // NO_THREAD_SAFETY_ANALYSIS for calling with held locks. Visitor is passed a pair of ArtMethod*
123 // and also returns one. The order is <interface, implementation>.
124 template<typename Visitor>
Andreas Gampe542451c2016-07-26 09:02:02 -0700125 void Visit(const Visitor& visitor, PointerSize pointer_size) NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700126 uint32_t table_index = 0;
127 for (;;) {
128 ArtMethod* interface_method = GetInterfaceMethod(table_index, pointer_size);
129 if (interface_method == nullptr) {
130 break;
131 }
132 ArtMethod* implementation_method = GetImplementationMethod(table_index, pointer_size);
133 auto input = std::make_pair(interface_method, implementation_method);
134 std::pair<ArtMethod*, ArtMethod*> updated = visitor(input);
135 if (input.first != updated.first) {
136 SetInterfaceMethod(table_index, pointer_size, updated.first);
137 }
138 if (input.second != updated.second) {
139 SetImplementationMethod(table_index, pointer_size, updated.second);
140 }
141 ++table_index;
142 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700143 }
144
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000145 // Lookup the implementation ArtMethod associated to `interface_method`. Return null
146 // if not found.
Andreas Gampe542451c2016-07-26 09:02:02 -0700147 ArtMethod* Lookup(ArtMethod* interface_method, PointerSize pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000148 uint32_t table_index = 0;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700149 for (;;) {
150 ArtMethod* current_interface_method = GetInterfaceMethod(table_index, pointer_size);
151 if (current_interface_method == nullptr) {
152 break;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000153 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700154 if (current_interface_method == interface_method) {
155 return GetImplementationMethod(table_index, pointer_size);
156 }
157 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000158 }
159 return nullptr;
160 }
161
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700162 // Compute the number of entries in this table.
Andreas Gampe542451c2016-07-26 09:02:02 -0700163 size_t NumEntries(PointerSize pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000164 uint32_t table_index = 0;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700165 while (GetInterfaceMethod(table_index, pointer_size) != nullptr) {
166 ++table_index;
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000167 }
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700168 return table_index;
169 }
170
171 // Compute the size in bytes taken by this table.
Andreas Gampe542451c2016-07-26 09:02:02 -0700172 size_t ComputeSize(PointerSize pointer_size) const {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000173 // Add the end marker.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700174 return ComputeSize(NumEntries(pointer_size), pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000175 }
176
177 // Compute the size in bytes needed for copying the given `table` and add
178 // one more entry.
Andreas Gampe542451c2016-07-26 09:02:02 -0700179 static size_t ComputeSizeWithOneMoreEntry(ImtConflictTable* table, PointerSize pointer_size) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700180 return table->ComputeSize(pointer_size) + EntrySize(pointer_size);
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000181 }
182
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700183 // Compute size with a fixed number of entries.
Andreas Gampe542451c2016-07-26 09:02:02 -0700184 static size_t ComputeSize(size_t num_entries, PointerSize pointer_size) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700185 return (num_entries + 1) * EntrySize(pointer_size); // Add one for null terminator.
Mathieu Chartier7f98c9a2016-04-14 10:49:19 -0700186 }
187
Andreas Gampe542451c2016-07-26 09:02:02 -0700188 static size_t EntrySize(PointerSize pointer_size) {
189 return static_cast<size_t>(pointer_size) * static_cast<size_t>(kMethodCount);
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700190 }
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000191
192 private:
Andreas Gampe542451c2016-07-26 09:02:02 -0700193 ArtMethod* GetMethod(size_t index, PointerSize pointer_size) const {
194 if (pointer_size == PointerSize::k64) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700195 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data64_[index]));
196 } else {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700197 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(data32_[index]));
198 }
199 }
200
Andreas Gampe542451c2016-07-26 09:02:02 -0700201 void SetMethod(size_t index, PointerSize pointer_size, ArtMethod* method) {
202 if (pointer_size == PointerSize::k64) {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700203 data64_[index] = dchecked_integral_cast<uint64_t>(reinterpret_cast<uintptr_t>(method));
204 } else {
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700205 data32_[index] = dchecked_integral_cast<uint32_t>(reinterpret_cast<uintptr_t>(method));
206 }
207 }
208
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000209 // Array of entries that the assembly stubs will iterate over. Note that this is
210 // not fixed size, and we allocate data prior to calling the constructor
211 // of ImtConflictTable.
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700212 union {
213 uint32_t data32_[0];
214 uint64_t data64_[0];
215 };
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000216
217 DISALLOW_COPY_AND_ASSIGN(ImtConflictTable);
218};
219
Mathieu Chartiere401d142015-04-22 13:56:20 -0700220class ArtMethod FINAL {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800221 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700222 ArtMethod() : access_flags_(0), dex_code_item_offset_(0), dex_method_index_(0),
Andreas Gampe479b1de2016-07-19 18:27:17 -0700223 method_index_(0), hotness_count_(0) { }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700224
Andreas Gampe542451c2016-07-26 09:02:02 -0700225 ArtMethod(ArtMethod* src, PointerSize image_pointer_size) {
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000226 CopyFrom(src, image_pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700227 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700228
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700229 static ArtMethod* FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
230 jobject jlr_method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700231 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62f05122014-03-21 11:21:29 -0700232
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800233 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700234 ALWAYS_INLINE mirror::Class* GetDeclaringClass() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800235
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800236 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartiere401d142015-04-22 13:56:20 -0700237 ALWAYS_INLINE mirror::Class* GetDeclaringClassUnchecked()
Mathieu Chartier90443472015-07-16 20:32:27 -0700238 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700239
240 void SetDeclaringClass(mirror::Class *new_declaring_class)
Mathieu Chartier90443472015-07-16 20:32:27 -0700241 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800242
Mathieu Chartier10e5ea92015-08-13 12:56:31 -0700243 bool CASDeclaringClass(mirror::Class* expected_class, mirror::Class* desired_class)
244 SHARED_REQUIRES(Locks::mutator_lock_);
245
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800246 static MemberOffset DeclaringClassOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700247 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, declaring_class_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800248 }
249
Andreas Gampecbc96b82015-09-30 20:05:24 +0000250 // Note: GetAccessFlags acquires the mutator lock in debug mode to check that it is not called for
251 // a proxy method.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800252 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000253 ALWAYS_INLINE uint32_t GetAccessFlags();
Jeff Hao5d917302013-02-27 17:57:33 -0800254
Mathieu Chartiere401d142015-04-22 13:56:20 -0700255 void SetAccessFlags(uint32_t new_access_flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100256 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700257 access_flags_ = new_access_flags;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800258 }
259
260 // Approximate what kind of method call would be used for this method.
Mathieu Chartier90443472015-07-16 20:32:27 -0700261 InvokeType GetInvokeType() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800262
263 // Returns true if the method is declared public.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000264 bool IsPublic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800265 return (GetAccessFlags() & kAccPublic) != 0;
266 }
267
268 // Returns true if the method is declared private.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000269 bool IsPrivate() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800270 return (GetAccessFlags() & kAccPrivate) != 0;
271 }
272
273 // Returns true if the method is declared static.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000274 bool IsStatic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800275 return (GetAccessFlags() & kAccStatic) != 0;
276 }
277
278 // Returns true if the method is a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000279 bool IsConstructor() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800280 return (GetAccessFlags() & kAccConstructor) != 0;
281 }
282
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700283 // Returns true if the method is a class initializer.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000284 bool IsClassInitializer() {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700285 return IsConstructor() && IsStatic();
286 }
287
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800288 // Returns true if the method is static, private, or a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000289 bool IsDirect() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800290 return IsDirect(GetAccessFlags());
291 }
292
293 static bool IsDirect(uint32_t access_flags) {
Andreas Gampecbc96b82015-09-30 20:05:24 +0000294 constexpr uint32_t direct = kAccStatic | kAccPrivate | kAccConstructor;
295 return (access_flags & direct) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800296 }
297
298 // Returns true if the method is declared synchronized.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000299 bool IsSynchronized() {
300 constexpr uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800301 return (GetAccessFlags() & synchonized) != 0;
302 }
303
Andreas Gampecbc96b82015-09-30 20:05:24 +0000304 bool IsFinal() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800305 return (GetAccessFlags() & kAccFinal) != 0;
306 }
307
Alex Light36121492016-02-22 13:43:29 -0800308 bool IsCopied() {
309 const bool copied = (GetAccessFlags() & kAccCopied) != 0;
310 // (IsMiranda() || IsDefaultConflicting()) implies copied
311 DCHECK(!(IsMiranda() || IsDefaultConflicting()) || copied)
312 << "Miranda or default-conflict methods must always be copied.";
313 return copied;
Alex Lightfcea56f2016-02-17 11:59:05 -0800314 }
315
Andreas Gampecbc96b82015-09-30 20:05:24 +0000316 bool IsMiranda() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800317 return (GetAccessFlags() & kAccMiranda) != 0;
318 }
319
Alex Light9139e002015-10-09 15:59:48 -0700320 // Returns true if invoking this method will not throw an AbstractMethodError or
321 // IncompatibleClassChangeError.
322 bool IsInvokable() {
323 return !IsAbstract() && !IsDefaultConflicting();
324 }
325
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100326 bool IsCompilable() {
327 return (GetAccessFlags() & kAccCompileDontBother) == 0;
328 }
329
Alex Light9139e002015-10-09 15:59:48 -0700330 // A default conflict method is a special sentinel method that stands for a conflict between
331 // multiple default methods. It cannot be invoked, throwing an IncompatibleClassChangeError if one
332 // attempts to do so.
333 bool IsDefaultConflicting() {
334 return (GetAccessFlags() & kAccDefaultConflict) != 0u;
335 }
336
Alex Lighteb7c1442015-08-31 13:17:42 -0700337 // This is set by the class linker.
338 bool IsDefault() {
339 return (GetAccessFlags() & kAccDefault) != 0;
340 }
341
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800342 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000343 bool IsNative() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800344 return (GetAccessFlags<kReadBarrierOption>() & kAccNative) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800345 }
346
Andreas Gampecbc96b82015-09-30 20:05:24 +0000347 bool IsFastNative() {
348 constexpr uint32_t mask = kAccFastNative | kAccNative;
Ian Rogers16ce0922014-01-10 14:59:36 -0800349 return (GetAccessFlags() & mask) == mask;
Ian Rogers1eb512d2013-10-18 15:42:20 -0700350 }
351
Andreas Gampecbc96b82015-09-30 20:05:24 +0000352 bool IsAbstract() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800353 return (GetAccessFlags() & kAccAbstract) != 0;
354 }
355
Andreas Gampecbc96b82015-09-30 20:05:24 +0000356 bool IsSynthetic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800357 return (GetAccessFlags() & kAccSynthetic) != 0;
358 }
359
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700360 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -0700361 bool IsProxyMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800362
Igor Murashkindf707e42016-02-02 16:56:50 -0800363 bool SkipAccessChecks() {
364 return (GetAccessFlags() & kAccSkipAccessChecks) != 0;
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200365 }
366
Igor Murashkindf707e42016-02-02 16:56:50 -0800367 void SetSkipAccessChecks() {
368 DCHECK(!SkipAccessChecks());
369 SetAccessFlags(GetAccessFlags() | kAccSkipAccessChecks);
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200370 }
371
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700372 // Should this method be run in the interpreter and count locks (e.g., failed structured-
373 // locking verification)?
374 bool MustCountLocks() {
375 return (GetAccessFlags() & kAccMustCountLocks) != 0;
376 }
377
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700378 // Checks to see if the method was annotated with @dalvik.annotation.optimization.FastNative
379 // -- Independent of kAccFastNative access flags.
380 bool IsAnnotatedWithFastNative();
381
Alex Lighteb7c1442015-08-31 13:17:42 -0700382 // Returns true if this method could be overridden by a default method.
Alex Light9139e002015-10-09 15:59:48 -0700383 bool IsOverridableByDefaultMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Alex Lighteb7c1442015-08-31 13:17:42 -0700384
Mathieu Chartier90443472015-07-16 20:32:27 -0700385 bool CheckIncompatibleClassChange(InvokeType type) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800386
Alex Light9139e002015-10-09 15:59:48 -0700387 // Throws the error that would result from trying to invoke this method (i.e.
388 // IncompatibleClassChangeError or AbstractMethodError). Only call if !IsInvokable();
389 void ThrowInvocationTimeError() SHARED_REQUIRES(Locks::mutator_lock_);
390
Mathieu Chartier90443472015-07-16 20:32:27 -0700391 uint16_t GetMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800392
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700393 // Doesn't do erroneous / unresolved class checks.
Mathieu Chartier90443472015-07-16 20:32:27 -0700394 uint16_t GetMethodIndexDuringLinking() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700395
Mathieu Chartier90443472015-07-16 20:32:27 -0700396 size_t GetVtableIndex() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800397 return GetMethodIndex();
398 }
399
Mathieu Chartier90443472015-07-16 20:32:27 -0700400 void SetMethodIndex(uint16_t new_method_index) SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100401 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700402 method_index_ = new_method_index;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800403 }
404
Vladimir Markoc1363122015-04-09 14:13:13 +0100405 static MemberOffset DexMethodIndexOffset() {
406 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_);
407 }
408
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800409 static MemberOffset MethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700410 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800411 }
412
Mathieu Chartiere401d142015-04-22 13:56:20 -0700413 uint32_t GetCodeItemOffset() {
414 return dex_code_item_offset_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800415 }
416
Mathieu Chartiere401d142015-04-22 13:56:20 -0700417 void SetCodeItemOffset(uint32_t new_code_off) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100418 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700419 dex_code_item_offset_ = new_code_off;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800420 }
421
422 // Number of 32bit registers that would be required to hold all the arguments
423 static size_t NumArgRegisters(const StringPiece& shorty);
424
Mathieu Chartier90443472015-07-16 20:32:27 -0700425 ALWAYS_INLINE uint32_t GetDexMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800426
Matthew Gharrity465ecc82016-07-19 21:32:52 +0000427 ALWAYS_INLINE uint32_t GetImtIndex() SHARED_REQUIRES(Locks::mutator_lock_);
428
Mathieu Chartiere401d142015-04-22 13:56:20 -0700429 void SetDexMethodIndex(uint32_t new_idx) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100430 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700431 dex_method_index_ = new_idx;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800432 }
433
Andreas Gampe542451c2016-07-26 09:02:02 -0700434 ALWAYS_INLINE ArtMethod** GetDexCacheResolvedMethods(PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700435 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe542451c2016-07-26 09:02:02 -0700436 ALWAYS_INLINE ArtMethod* GetDexCacheResolvedMethod(uint16_t method_index,
437 PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700438 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100439 ALWAYS_INLINE void SetDexCacheResolvedMethod(uint16_t method_index,
440 ArtMethod* new_method,
Andreas Gampe542451c2016-07-26 09:02:02 -0700441 PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700442 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe542451c2016-07-26 09:02:02 -0700443 ALWAYS_INLINE void SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods,
444 PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700445 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe542451c2016-07-26 09:02:02 -0700446 bool HasDexCacheResolvedMethods(PointerSize pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
447 bool HasSameDexCacheResolvedMethods(ArtMethod* other, PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700448 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe542451c2016-07-26 09:02:02 -0700449 bool HasSameDexCacheResolvedMethods(ArtMethod** other_cache, PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700450 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800451
Andreas Gampe58a5af82014-07-31 16:23:49 -0700452 template <bool kWithCheck = true>
Andreas Gampe542451c2016-07-26 09:02:02 -0700453 mirror::Class* GetDexCacheResolvedType(uint32_t type_idx, PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700454 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe542451c2016-07-26 09:02:02 -0700455 void SetDexCacheResolvedTypes(GcRoot<mirror::Class>* new_dex_cache_types,
456 PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700457 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe542451c2016-07-26 09:02:02 -0700458 bool HasDexCacheResolvedTypes(PointerSize pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
459 bool HasSameDexCacheResolvedTypes(ArtMethod* other, PointerSize pointer_size)
Vladimir Marko05792b92015-08-03 11:56:49 +0100460 SHARED_REQUIRES(Locks::mutator_lock_);
Andreas Gampe542451c2016-07-26 09:02:02 -0700461 bool HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache, PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700462 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800463
Ian Rogersa0485602014-12-02 15:48:04 -0800464 // Get the Class* from the type index into this method's dex cache.
Andreas Gampe542451c2016-07-26 09:02:02 -0700465 mirror::Class* GetClassFromTypeIndex(uint16_t type_idx, bool resolve, PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700466 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersa0485602014-12-02 15:48:04 -0800467
Alex Light6c8467f2015-11-20 15:03:26 -0800468 // Returns true if this method has the same name and signature of the other method.
469 bool HasSameNameAndSignature(ArtMethod* other) SHARED_REQUIRES(Locks::mutator_lock_);
470
Ian Rogerse0a02da2014-12-02 14:10:53 -0800471 // Find the method that this method overrides.
Andreas Gampe542451c2016-07-26 09:02:02 -0700472 ArtMethod* FindOverriddenMethod(PointerSize pointer_size)
Alex Light705ad492015-09-21 11:36:30 -0700473 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800474
Ian Rogerse0a02da2014-12-02 14:10:53 -0800475 // Find the method index for this method within other_dexfile. If this method isn't present then
476 // return DexFile::kDexNoIndex. The name_and_signature_idx MUST refer to a MethodId with the same
477 // name and signature in the other_dexfile, such as the method index used to resolve this method
478 // in the other_dexfile.
479 uint32_t FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
480 uint32_t name_and_signature_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700481 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800482
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700483 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, const char* shorty)
Mathieu Chartier90443472015-07-16 20:32:27 -0700484 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800485
Mathieu Chartiere401d142015-04-22 13:56:20 -0700486 const void* GetEntryPointFromQuickCompiledCode() {
Andreas Gampe542451c2016-07-26 09:02:02 -0700487 return GetEntryPointFromQuickCompiledCodePtrSize(kRuntimePointerSize);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800488 }
Andreas Gampe542451c2016-07-26 09:02:02 -0700489 ALWAYS_INLINE const void* GetEntryPointFromQuickCompiledCodePtrSize(PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100490 return GetNativePointer<const void*>(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800491 EntryPointFromQuickCompiledCodeOffset(pointer_size), pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800492 }
493
Mathieu Chartiere401d142015-04-22 13:56:20 -0700494 void SetEntryPointFromQuickCompiledCode(const void* entry_point_from_quick_compiled_code) {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800495 SetEntryPointFromQuickCompiledCodePtrSize(entry_point_from_quick_compiled_code,
Andreas Gampe542451c2016-07-26 09:02:02 -0700496 kRuntimePointerSize);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800497 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800498 ALWAYS_INLINE void SetEntryPointFromQuickCompiledCodePtrSize(
Andreas Gampe542451c2016-07-26 09:02:02 -0700499 const void* entry_point_from_quick_compiled_code, PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100500 SetNativePointer(EntryPointFromQuickCompiledCodeOffset(pointer_size),
Andreas Gampe542451c2016-07-26 09:02:02 -0700501 entry_point_from_quick_compiled_code,
502 pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800503 }
504
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700505 void RegisterNative(const void* native_method, bool is_fast)
Mathieu Chartier90443472015-07-16 20:32:27 -0700506 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800507
Mathieu Chartier90443472015-07-16 20:32:27 -0700508 void UnregisterNative() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800509
Andreas Gampe542451c2016-07-26 09:02:02 -0700510 static MemberOffset DexCacheResolvedMethodsOffset(PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100511 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Andreas Gampe542451c2016-07-26 09:02:02 -0700512 PtrSizedFields, dex_cache_resolved_methods_) / sizeof(void*)
513 * static_cast<size_t>(pointer_size));
Vladimir Marko05792b92015-08-03 11:56:49 +0100514 }
515
Andreas Gampe542451c2016-07-26 09:02:02 -0700516 static MemberOffset DexCacheResolvedTypesOffset(PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100517 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Andreas Gampe542451c2016-07-26 09:02:02 -0700518 PtrSizedFields, dex_cache_resolved_types_) / sizeof(void*)
519 * static_cast<size_t>(pointer_size));
Vladimir Marko05792b92015-08-03 11:56:49 +0100520 }
521
Andreas Gampe542451c2016-07-26 09:02:02 -0700522 static MemberOffset DataOffset(PointerSize pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800523 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Andreas Gampe542451c2016-07-26 09:02:02 -0700524 PtrSizedFields, data_) / sizeof(void*) * static_cast<size_t>(pointer_size));
Andreas Gampe75f08852016-07-19 08:06:07 -0700525 }
526
Andreas Gampe542451c2016-07-26 09:02:02 -0700527 static MemberOffset EntryPointFromJniOffset(PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700528 return DataOffset(pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800529 }
530
Andreas Gampe542451c2016-07-26 09:02:02 -0700531 static MemberOffset EntryPointFromQuickCompiledCodeOffset(PointerSize pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800532 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Andreas Gampe542451c2016-07-26 09:02:02 -0700533 PtrSizedFields, entry_point_from_quick_compiled_code_) / sizeof(void*)
534 * static_cast<size_t>(pointer_size));
Mathieu Chartier2d721012014-11-10 11:08:06 -0800535 }
536
Andreas Gampe542451c2016-07-26 09:02:02 -0700537 ImtConflictTable* GetImtConflictTable(PointerSize pointer_size) {
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000538 DCHECK(IsRuntimeMethod());
Andreas Gampe75f08852016-07-19 08:06:07 -0700539 return reinterpret_cast<ImtConflictTable*>(GetDataPtrSize(pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000540 }
541
Andreas Gampe542451c2016-07-26 09:02:02 -0700542 ALWAYS_INLINE void SetImtConflictTable(ImtConflictTable* table, PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700543 DCHECK(IsRuntimeMethod());
544 SetDataPtrSize(table, pointer_size);
545 }
546
Andreas Gampe542451c2016-07-26 09:02:02 -0700547 ProfilingInfo* GetProfilingInfo(PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700548 return reinterpret_cast<ProfilingInfo*>(GetDataPtrSize(pointer_size));
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000549 }
550
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000551 ALWAYS_INLINE void SetProfilingInfo(ProfilingInfo* info) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700552 SetDataPtrSize(info, kRuntimePointerSize);
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000553 }
554
Andreas Gampe542451c2016-07-26 09:02:02 -0700555 ALWAYS_INLINE void SetProfilingInfoPtrSize(ProfilingInfo* info, PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700556 SetDataPtrSize(info, pointer_size);
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000557 }
558
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000559 static MemberOffset ProfilingInfoOffset() {
Andreas Gampe542451c2016-07-26 09:02:02 -0700560 DCHECK(IsImagePointerSize(kRuntimePointerSize));
561 return DataOffset(kRuntimePointerSize);
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000562 }
563
Mathieu Chartiere401d142015-04-22 13:56:20 -0700564 void* GetEntryPointFromJni() {
Andreas Gampe75f08852016-07-19 08:06:07 -0700565 DCHECK(IsNative());
Andreas Gampe542451c2016-07-26 09:02:02 -0700566 return GetEntryPointFromJniPtrSize(kRuntimePointerSize);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800567 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100568
Andreas Gampe542451c2016-07-26 09:02:02 -0700569 ALWAYS_INLINE void* GetEntryPointFromJniPtrSize(PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700570 return GetDataPtrSize(pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800571 }
572
Andreas Gampecbc96b82015-09-30 20:05:24 +0000573 void SetEntryPointFromJni(const void* entrypoint) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100574 DCHECK(IsNative());
Andreas Gampe542451c2016-07-26 09:02:02 -0700575 SetEntryPointFromJniPtrSize(entrypoint, kRuntimePointerSize);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800576 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100577
Andreas Gampe542451c2016-07-26 09:02:02 -0700578 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700579 SetDataPtrSize(entrypoint, pointer_size);
580 }
581
Andreas Gampe542451c2016-07-26 09:02:02 -0700582 ALWAYS_INLINE void* GetDataPtrSize(PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700583 DCHECK(IsImagePointerSize(pointer_size));
584 return GetNativePointer<void*>(DataOffset(pointer_size), pointer_size);
585 }
586
Andreas Gampe542451c2016-07-26 09:02:02 -0700587 ALWAYS_INLINE void SetDataPtrSize(const void* data, PointerSize pointer_size) {
Andreas Gampe75f08852016-07-19 08:06:07 -0700588 DCHECK(IsImagePointerSize(pointer_size));
589 SetNativePointer(DataOffset(pointer_size), data, pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800590 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800591
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800592 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
593 // conventions for a method of managed code. Returns false for Proxy methods.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700594 ALWAYS_INLINE bool IsRuntimeMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800595
596 // Is this a hand crafted method used for something like describing callee saves?
Mathieu Chartier90443472015-07-16 20:32:27 -0700597 bool IsCalleeSaveMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800598
Mathieu Chartier90443472015-07-16 20:32:27 -0700599 bool IsResolutionMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800600
Mathieu Chartier90443472015-07-16 20:32:27 -0700601 bool IsImtUnimplementedMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700602
Mathieu Chartier90443472015-07-16 20:32:27 -0700603 MethodReference ToMethodReference() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier36b58f52014-12-10 12:06:45 -0800604 return MethodReference(GetDexFile(), GetDexMethodIndex());
605 }
606
Ian Rogersc449aa82013-07-29 14:35:46 -0700607 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
608 // indicates whether the found catch block is responsible for clearing the exception or whether
609 // a move-exception instruction is present.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700610 uint32_t FindCatchBlock(Handle<mirror::Class> exception_type, uint32_t dex_pc,
611 bool* has_no_move_exception)
Mathieu Chartier90443472015-07-16 20:32:27 -0700612 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800613
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700614 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700615 template<ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename RootVisitorType>
Andreas Gampe542451c2016-07-26 09:02:02 -0700616 void VisitRoots(RootVisitorType& visitor, PointerSize pointer_size) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800617
Mathieu Chartier90443472015-07-16 20:32:27 -0700618 const DexFile* GetDexFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700619
Mathieu Chartier90443472015-07-16 20:32:27 -0700620 const char* GetDeclaringClassDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700621
Mathieu Chartier90443472015-07-16 20:32:27 -0700622 const char* GetShorty() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700623 uint32_t unused_length;
624 return GetShorty(&unused_length);
625 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700626
Mathieu Chartier90443472015-07-16 20:32:27 -0700627 const char* GetShorty(uint32_t* out_length) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700628
Mathieu Chartier90443472015-07-16 20:32:27 -0700629 const Signature GetSignature() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700630
Mathieu Chartier90443472015-07-16 20:32:27 -0700631 ALWAYS_INLINE const char* GetName() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700632
Mathieu Chartier90443472015-07-16 20:32:27 -0700633 mirror::String* GetNameAsString(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers6b14d552014-10-28 21:50:58 -0700634
Mathieu Chartier90443472015-07-16 20:32:27 -0700635 const DexFile::CodeItem* GetCodeItem() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700636
Andreas Gampe542451c2016-07-26 09:02:02 -0700637 bool IsResolvedTypeIdx(uint16_t type_idx, PointerSize pointer_size)
638 SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700639
Mathieu Chartier90443472015-07-16 20:32:27 -0700640 int32_t GetLineNumFromDexPC(uint32_t dex_pc) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700641
Mathieu Chartier90443472015-07-16 20:32:27 -0700642 const DexFile::ProtoId& GetPrototype() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700643
Mathieu Chartier90443472015-07-16 20:32:27 -0700644 const DexFile::TypeList* GetParameterTypeList() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700645
Mathieu Chartier90443472015-07-16 20:32:27 -0700646 const char* GetDeclaringClassSourceFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700647
Mathieu Chartier90443472015-07-16 20:32:27 -0700648 uint16_t GetClassDefIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700649
Mathieu Chartier90443472015-07-16 20:32:27 -0700650 const DexFile::ClassDef& GetClassDef() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700651
Mathieu Chartier90443472015-07-16 20:32:27 -0700652 const char* GetReturnTypeDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700653
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700654 const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700655 SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700656
Ian Rogersded66a02014-10-28 18:12:55 -0700657 // May cause thread suspension due to GetClassFromTypeIdx calling ResolveType this caused a large
658 // number of bugs at call sites.
Andreas Gampe542451c2016-07-26 09:02:02 -0700659 mirror::Class* GetReturnType(bool resolve, PointerSize pointer_size)
Vladimir Marko05792b92015-08-03 11:56:49 +0100660 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersded66a02014-10-28 18:12:55 -0700661
Mathieu Chartier90443472015-07-16 20:32:27 -0700662 mirror::ClassLoader* GetClassLoader() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700663
Mathieu Chartier90443472015-07-16 20:32:27 -0700664 mirror::DexCache* GetDexCache() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700665
Andreas Gampe542451c2016-07-26 09:02:02 -0700666 ALWAYS_INLINE ArtMethod* GetInterfaceMethodIfProxy(PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700667 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700668
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700669 // May cause thread suspension due to class resolution.
670 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
Mathieu Chartier90443472015-07-16 20:32:27 -0700671 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700672
Vladimir Marko14632852015-08-17 12:07:23 +0100673 // Size of an instance of this native class.
Andreas Gampe542451c2016-07-26 09:02:02 -0700674 static size_t Size(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700675 return PtrSizedFieldsOffset(pointer_size) +
Andreas Gampe542451c2016-07-26 09:02:02 -0700676 (sizeof(PtrSizedFields) / sizeof(void*)) * static_cast<size_t>(pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800677 }
678
Vladimir Marko14632852015-08-17 12:07:23 +0100679 // Alignment of an instance of this native class.
Andreas Gampe542451c2016-07-26 09:02:02 -0700680 static size_t Alignment(PointerSize pointer_size) {
Vladimir Markocf36d492015-08-12 19:27:26 +0100681 // The ArtMethod alignment is the same as image pointer size. This differs from
Vladimir Marko14632852015-08-17 12:07:23 +0100682 // alignof(ArtMethod) if cross-compiling with pointer_size != sizeof(void*).
Andreas Gampe542451c2016-07-26 09:02:02 -0700683 return static_cast<size_t>(pointer_size);
Vladimir Markocf36d492015-08-12 19:27:26 +0100684 }
685
Andreas Gampe542451c2016-07-26 09:02:02 -0700686 void CopyFrom(ArtMethod* src, PointerSize image_pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700687 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700688
Andreas Gampe542451c2016-07-26 09:02:02 -0700689 ALWAYS_INLINE GcRoot<mirror::Class>* GetDexCacheResolvedTypes(PointerSize pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700690 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700691
Bill Buzbee1d011d92016-04-04 16:59:29 +0000692 // Note, hotness_counter_ updates are non-atomic but it doesn't need to be precise. Also,
693 // given that the counter is only 16 bits wide we can expect wrap-around in some
694 // situations. Consumers of hotness_count_ must be able to deal with that.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100695 uint16_t IncrementCounter() {
696 return ++hotness_count_;
697 }
698
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100699 void ClearCounter() {
700 hotness_count_ = 0;
701 }
702
Bill Buzbee1d011d92016-04-04 16:59:29 +0000703 void SetCounter(int16_t hotness_count) {
704 hotness_count_ = hotness_count;
705 }
706
707 uint16_t GetCounter() const {
708 return hotness_count_;
709 }
710
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100711 const uint8_t* GetQuickenedInfo() SHARED_REQUIRES(Locks::mutator_lock_);
712
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100713 // Returns the method header for the compiled code containing 'pc'. Note that runtime
714 // methods will return null for this method, as they are not oat based.
715 const OatQuickMethodHeader* GetOatQuickMethodHeader(uintptr_t pc)
716 SHARED_REQUIRES(Locks::mutator_lock_);
717
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000718 // Returns whether the method has any compiled code, JIT or AOT.
719 bool HasAnyCompiledCode() SHARED_REQUIRES(Locks::mutator_lock_);
720
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800721
722 // Update heap objects and non-entrypoint pointers by the passed in visitor for image relocation.
723 // Does not use read barrier.
724 template <typename Visitor>
Andreas Gampe542451c2016-07-26 09:02:02 -0700725 ALWAYS_INLINE void UpdateObjectsForImageRelocation(const Visitor& visitor,
726 PointerSize pointer_size)
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800727 SHARED_REQUIRES(Locks::mutator_lock_);
728
729 // Update entry points by passing them through the visitor.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800730 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename Visitor>
Andreas Gampe542451c2016-07-26 09:02:02 -0700731 ALWAYS_INLINE void UpdateEntrypoints(const Visitor& visitor, PointerSize pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800732
Mathieu Chartier2d721012014-11-10 11:08:06 -0800733 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800734 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800735 // The class we are a part of.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700736 GcRoot<mirror::Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800737
Ian Rogersef7d42f2014-01-06 12:55:46 -0800738 // Access flags; low 16 bits are defined by spec.
739 uint32_t access_flags_;
740
741 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
742
743 // Offset to the CodeItem.
744 uint32_t dex_code_item_offset_;
745
746 // Index into method_ids of the dex file associated with this method.
747 uint32_t dex_method_index_;
748
749 /* End of dex file fields. */
750
751 // Entry within a dispatch table for this method. For static/direct methods the index is into
752 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
753 // ifTable.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100754 uint16_t method_index_;
755
Bill Buzbee1d011d92016-04-04 16:59:29 +0000756 // The hotness we measure for this method. Managed by the interpreter. Not atomic, as we allow
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100757 // missing increments: if the method is hot, we will see it eventually.
758 uint16_t hotness_count_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800759
Mathieu Chartiereace4582014-11-24 18:29:54 -0800760 // Fake padding field gets inserted here.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800761
762 // Must be the last fields in the method.
Andreas Gampe479b1de2016-07-19 18:27:17 -0700763 struct PtrSizedFields {
Vladimir Marko05792b92015-08-03 11:56:49 +0100764 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
765 ArtMethod** dex_cache_resolved_methods_;
766
767 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
768 GcRoot<mirror::Class>* dex_cache_resolved_types_;
769
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100770 // Pointer to JNI function registered to this method, or a function to resolve the JNI function,
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000771 // or the profiling data for non-native methods, or an ImtConflictTable.
Andreas Gampe75f08852016-07-19 08:06:07 -0700772 void* data_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800773
774 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
Elliott Hughes956af0f2014-12-11 14:34:28 -0800775 // the interpreter.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800776 void* entry_point_from_quick_compiled_code_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800777 } ptr_sized_fields_;
778
Mathieu Chartier02e25112013-08-14 16:14:24 -0700779 private:
Andreas Gampe542451c2016-07-26 09:02:02 -0700780 static constexpr size_t PtrSizedFieldsOffset(PointerSize pointer_size) {
Andreas Gampe479b1de2016-07-19 18:27:17 -0700781 // Round up to pointer size for padding field. Tested in art_method.cc.
Andreas Gampe542451c2016-07-26 09:02:02 -0700782 return RoundUp(offsetof(ArtMethod, hotness_count_) + sizeof(hotness_count_),
783 static_cast<size_t>(pointer_size));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700784 }
785
Andreas Gampe75f08852016-07-19 08:06:07 -0700786 // Compare given pointer size to the image pointer size.
Andreas Gampe542451c2016-07-26 09:02:02 -0700787 static bool IsImagePointerSize(PointerSize pointer_size);
Andreas Gampe75f08852016-07-19 08:06:07 -0700788
Mathieu Chartiere401d142015-04-22 13:56:20 -0700789 template<typename T>
Andreas Gampe542451c2016-07-26 09:02:02 -0700790 ALWAYS_INLINE T GetNativePointer(MemberOffset offset, PointerSize pointer_size) const {
Vladimir Marko05792b92015-08-03 11:56:49 +0100791 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700792 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
Andreas Gampe542451c2016-07-26 09:02:02 -0700793 if (pointer_size == PointerSize::k32) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700794 return reinterpret_cast<T>(*reinterpret_cast<const uint32_t*>(addr));
795 } else {
796 auto v = *reinterpret_cast<const uint64_t*>(addr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100797 return reinterpret_cast<T>(dchecked_integral_cast<uintptr_t>(v));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700798 }
799 }
800
801 template<typename T>
Andreas Gampe542451c2016-07-26 09:02:02 -0700802 ALWAYS_INLINE void SetNativePointer(MemberOffset offset, T new_value, PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100803 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700804 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
Andreas Gampe542451c2016-07-26 09:02:02 -0700805 if (pointer_size == PointerSize::k32) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700806 uintptr_t ptr = reinterpret_cast<uintptr_t>(new_value);
Vladimir Marko05792b92015-08-03 11:56:49 +0100807 *reinterpret_cast<uint32_t*>(addr) = dchecked_integral_cast<uint32_t>(ptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700808 } else {
809 *reinterpret_cast<uint64_t*>(addr) = reinterpret_cast<uintptr_t>(new_value);
810 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800811 }
812
Mathieu Chartiere401d142015-04-22 13:56:20 -0700813 DISALLOW_COPY_AND_ASSIGN(ArtMethod); // Need to use CopyFrom to deal with 32 vs 64 bits.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800814};
815
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800816} // namespace art
817
Mathieu Chartiere401d142015-04-22 13:56:20 -0700818#endif // ART_RUNTIME_ART_METHOD_H_