blob: 32ae6ffad5c6b7cf4e7bff0dc32c8be30b4b1a5b [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_INL_H_
18#define ART_RUNTIME_ART_METHOD_INL_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
Brian Carlstromea46f952013-07-30 01:26:50 -070020#include "art_method.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021
Andreas Gampe58a5af82014-07-31 16:23:49 -070022#include "art_field.h"
Mathieu Chartier7c0fe5e2015-07-17 19:53:47 -070023#include "base/logging.h"
Hiroshi Yamauchi00370822015-08-18 14:47:25 -070024#include "class_linker-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010025#include "common_throws.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "dex_file.h"
Elliott Hughes956af0f2014-12-11 14:34:28 -080027#include "dex_file-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070028#include "gc_root-inl.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010029#include "jit/profiling_info.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "mirror/class-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010031#include "mirror/dex_cache-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070032#include "mirror/object-inl.h"
33#include "mirror/object_array.h"
Vladimir Marko96c6ab92014-04-08 14:00:50 +010034#include "oat.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010035#include "quick/quick_method_frame_info.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070036#include "read_barrier-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010037#include "runtime-inl.h"
Andreas Gampecbc96b82015-09-30 20:05:24 +000038#include "scoped_thread_state_change.h"
39#include "thread-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010040#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041
42namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080044template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartiere401d142015-04-22 13:56:20 -070045inline mirror::Class* ArtMethod::GetDeclaringClassUnchecked() {
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -070046 GcRootSource gc_root_source(this);
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080047 return declaring_class_.Read<kReadBarrierOption>(&gc_root_source);
Mingyao Yang98d1cc82014-05-15 17:02:16 -070048}
49
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080050template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartiere401d142015-04-22 13:56:20 -070051inline mirror::Class* ArtMethod::GetDeclaringClass() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080052 mirror::Class* result = GetDeclaringClassUnchecked<kReadBarrierOption>();
Mathieu Chartiere401d142015-04-22 13:56:20 -070053 if (kIsDebugBuild) {
54 if (!IsRuntimeMethod()) {
55 CHECK(result != nullptr) << this;
56 CHECK(result->IsIdxLoaded() || result->IsErroneous())
57 << result->GetStatus() << " " << PrettyClass(result);
58 } else {
59 CHECK(result == nullptr) << this;
60 }
61 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080062 return result;
63}
64
Mathieu Chartiere401d142015-04-22 13:56:20 -070065inline void ArtMethod::SetDeclaringClass(mirror::Class* new_declaring_class) {
66 declaring_class_ = GcRoot<mirror::Class>(new_declaring_class);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080067}
68
Mathieu Chartier10e5ea92015-08-13 12:56:31 -070069inline bool ArtMethod::CASDeclaringClass(mirror::Class* expected_class,
70 mirror::Class* desired_class) {
71 GcRoot<mirror::Class> expected_root(expected_class);
72 GcRoot<mirror::Class> desired_root(desired_class);
73 return reinterpret_cast<Atomic<GcRoot<mirror::Class>>*>(&declaring_class_)->
74 CompareExchangeStrongSequentiallyConsistent(
75 expected_root, desired_root);
76}
77
Andreas Gampecbc96b82015-09-30 20:05:24 +000078// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
79// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080080template <ReadBarrierOption kReadBarrierOption>
81ALWAYS_INLINE static inline void DoGetAccessFlagsHelper(ArtMethod* method)
82 NO_THREAD_SAFETY_ANALYSIS {
83 CHECK(method->IsRuntimeMethod() ||
84 method->GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
85 method->GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
Andreas Gampecbc96b82015-09-30 20:05:24 +000086}
87
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080088template <ReadBarrierOption kReadBarrierOption>
Ian Rogersef7d42f2014-01-06 12:55:46 -080089inline uint32_t ArtMethod::GetAccessFlags() {
Andreas Gampecbc96b82015-09-30 20:05:24 +000090 if (kIsDebugBuild) {
91 Thread* self = Thread::Current();
92 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
93 ScopedObjectAccess soa(self);
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080094 CHECK(IsRuntimeMethod() ||
95 GetDeclaringClass<kReadBarrierOption>()->IsIdxLoaded() ||
96 GetDeclaringClass<kReadBarrierOption>()->IsErroneous());
Andreas Gampecbc96b82015-09-30 20:05:24 +000097 } else {
98 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
99 // runnable state (e.g., during GC).
100 Locks::mutator_lock_->AssertSharedHeld(self);
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800101 DoGetAccessFlagsHelper<kReadBarrierOption>(this);
Andreas Gampecbc96b82015-09-30 20:05:24 +0000102 }
103 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700104 return access_flags_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800105}
106
Ian Rogersef7d42f2014-01-06 12:55:46 -0800107inline uint16_t ArtMethod::GetMethodIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700108 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsResolved() ||
109 GetDeclaringClass()->IsErroneous());
110 return method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800111}
112
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700113inline uint16_t ArtMethod::GetMethodIndexDuringLinking() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700114 return method_index_;
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700115}
116
Ian Rogersef7d42f2014-01-06 12:55:46 -0800117inline uint32_t ArtMethod::GetDexMethodIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700118 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() ||
119 GetDeclaringClass()->IsErroneous());
120 return dex_method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800121}
122
Matthew Gharrity465ecc82016-07-19 21:32:52 +0000123inline uint32_t ArtMethod::GetImtIndex() {
124 return GetDexMethodIndex() % ImTable::kSize;
125}
126
Vladimir Marko05792b92015-08-03 11:56:49 +0100127inline ArtMethod** ArtMethod::GetDexCacheResolvedMethods(size_t pointer_size) {
128 return GetNativePointer<ArtMethod**>(DexCacheResolvedMethodsOffset(pointer_size),
129 pointer_size);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700130}
131
Mathieu Chartiere401d142015-04-22 13:56:20 -0700132inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100133 // NOTE: Unchecked, i.e. not throwing AIOOB. We don't even know the length here
134 // without accessing the DexCache and we don't want to do that in release build.
135 DCHECK_LT(method_index,
136 GetInterfaceMethodIfProxy(ptr_size)->GetDeclaringClass()
137 ->GetDexCache()->NumResolvedMethods());
138 ArtMethod* method = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(ptr_size),
139 method_index,
140 ptr_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700141 if (LIKELY(method != nullptr)) {
142 auto* declaring_class = method->GetDeclaringClass();
143 if (LIKELY(declaring_class == nullptr || !declaring_class->IsErroneous())) {
144 return method;
145 }
Andreas Gampe58a5af82014-07-31 16:23:49 -0700146 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700147 return nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700148}
149
Vladimir Marko05792b92015-08-03 11:56:49 +0100150inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_index, ArtMethod* new_method,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700151 size_t ptr_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100152 // NOTE: Unchecked, i.e. not throwing AIOOB. We don't even know the length here
153 // without accessing the DexCache and we don't want to do that in release build.
154 DCHECK_LT(method_index,
155 GetInterfaceMethodIfProxy(ptr_size)->GetDeclaringClass()
156 ->GetDexCache()->NumResolvedMethods());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700157 DCHECK(new_method == nullptr || new_method->GetDeclaringClass() != nullptr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100158 mirror::DexCache::SetElementPtrSize(GetDexCacheResolvedMethods(ptr_size),
159 method_index,
160 new_method,
161 ptr_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700162}
163
Vladimir Marko05792b92015-08-03 11:56:49 +0100164inline bool ArtMethod::HasDexCacheResolvedMethods(size_t pointer_size) {
165 return GetDexCacheResolvedMethods(pointer_size) != nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700166}
167
Vladimir Marko05792b92015-08-03 11:56:49 +0100168inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod** other_cache,
169 size_t pointer_size) {
170 return GetDexCacheResolvedMethods(pointer_size) == other_cache;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700171}
172
Vladimir Marko05792b92015-08-03 11:56:49 +0100173inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other, size_t pointer_size) {
174 return GetDexCacheResolvedMethods(pointer_size) ==
175 other->GetDexCacheResolvedMethods(pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700176}
177
Vladimir Marko05792b92015-08-03 11:56:49 +0100178inline GcRoot<mirror::Class>* ArtMethod::GetDexCacheResolvedTypes(size_t pointer_size) {
179 return GetNativePointer<GcRoot<mirror::Class>*>(DexCacheResolvedTypesOffset(pointer_size),
180 pointer_size);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700181}
182
Andreas Gampe58a5af82014-07-31 16:23:49 -0700183template <bool kWithCheck>
Vladimir Marko05792b92015-08-03 11:56:49 +0100184inline mirror::Class* ArtMethod::GetDexCacheResolvedType(uint32_t type_index, size_t ptr_size) {
185 if (kWithCheck) {
186 mirror::DexCache* dex_cache =
187 GetInterfaceMethodIfProxy(ptr_size)->GetDeclaringClass()->GetDexCache();
188 if (UNLIKELY(type_index >= dex_cache->NumResolvedTypes())) {
189 ThrowArrayIndexOutOfBoundsException(type_index, dex_cache->NumResolvedTypes());
190 return nullptr;
191 }
192 }
193 mirror::Class* klass = GetDexCacheResolvedTypes(ptr_size)[type_index].Read();
Andreas Gampe58a5af82014-07-31 16:23:49 -0700194 return (klass != nullptr && !klass->IsErroneous()) ? klass : nullptr;
195}
196
Vladimir Marko05792b92015-08-03 11:56:49 +0100197inline bool ArtMethod::HasDexCacheResolvedTypes(size_t pointer_size) {
198 return GetDexCacheResolvedTypes(pointer_size) != nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700199}
200
Vladimir Marko05792b92015-08-03 11:56:49 +0100201inline bool ArtMethod::HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache,
202 size_t pointer_size) {
203 return GetDexCacheResolvedTypes(pointer_size) == other_cache;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700204}
205
Vladimir Marko05792b92015-08-03 11:56:49 +0100206inline bool ArtMethod::HasSameDexCacheResolvedTypes(ArtMethod* other, size_t pointer_size) {
207 return GetDexCacheResolvedTypes(pointer_size) == other->GetDexCacheResolvedTypes(pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700208}
209
Vladimir Marko05792b92015-08-03 11:56:49 +0100210inline mirror::Class* ArtMethod::GetClassFromTypeIndex(uint16_t type_idx,
211 bool resolve,
212 size_t ptr_size) {
213 mirror::Class* type = GetDexCacheResolvedType(type_idx, ptr_size);
Ian Rogersa0485602014-12-02 15:48:04 -0800214 if (type == nullptr && resolve) {
215 type = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, this);
216 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
217 }
218 return type;
219}
220
Brian Carlstromea46f952013-07-30 01:26:50 -0700221inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800222 switch (type) {
223 case kStatic:
224 return !IsStatic();
225 case kDirect:
226 return !IsDirect() || IsStatic();
227 case kVirtual: {
Alex Lighteb7c1442015-08-31 13:17:42 -0700228 // We have an error if we are direct or a non-default, non-miranda interface method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700229 mirror::Class* methods_class = GetDeclaringClass();
Alex Lighteb7c1442015-08-31 13:17:42 -0700230 return IsDirect() || (methods_class->IsInterface() && !IsDefault() && !IsMiranda());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800231 }
232 case kSuper:
Andreas Gampe8f252e62014-08-25 20:46:31 -0700233 // Constructors and static methods are called with invoke-direct.
Alex Light705ad492015-09-21 11:36:30 -0700234 return IsConstructor() || IsStatic();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800235 case kInterface: {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700236 mirror::Class* methods_class = GetDeclaringClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800237 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
238 }
239 default:
240 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700241 UNREACHABLE();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800242 }
243}
244
Ian Rogersef7d42f2014-01-06 12:55:46 -0800245inline bool ArtMethod::IsRuntimeMethod() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700246 return dex_method_index_ == DexFile::kDexNoIndex;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800247}
248
Ian Rogersef7d42f2014-01-06 12:55:46 -0800249inline bool ArtMethod::IsCalleeSaveMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800250 if (!IsRuntimeMethod()) {
251 return false;
252 }
253 Runtime* runtime = Runtime::Current();
254 bool result = false;
255 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
256 if (this == runtime->GetCalleeSaveMethod(Runtime::CalleeSaveType(i))) {
257 result = true;
258 break;
259 }
260 }
261 return result;
262}
263
Ian Rogersef7d42f2014-01-06 12:55:46 -0800264inline bool ArtMethod::IsResolutionMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800265 bool result = this == Runtime::Current()->GetResolutionMethod();
266 // Check that if we do think it is phony it looks like the resolution method.
267 DCHECK(!result || IsRuntimeMethod());
268 return result;
269}
Jeff Hao88474b42013-10-23 16:24:40 -0700270
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700271inline bool ArtMethod::IsImtUnimplementedMethod() {
272 bool result = this == Runtime::Current()->GetImtUnimplementedMethod();
273 // Check that if we do think it is phony it looks like the imt unimplemented method.
274 DCHECK(!result || IsRuntimeMethod());
275 return result;
276}
277
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700278inline const DexFile* ArtMethod::GetDexFile() {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700279 return GetDexCache()->GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700280}
281
282inline const char* ArtMethod::GetDeclaringClassDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700283 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700284 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
285 return "<runtime method>";
286 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700287 DCHECK(!IsProxyMethod());
288 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700289 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
290}
291
292inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000293 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700294 const DexFile* dex_file = GetDexFile();
295 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700296}
297
298inline const Signature ArtMethod::GetSignature() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700299 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700300 if (dex_method_idx != DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700301 DCHECK(!IsProxyMethod());
302 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700303 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
304 }
305 return Signature::NoSignature();
306}
307
Ian Rogers1ff3c982014-08-12 02:30:58 -0700308inline const char* ArtMethod::GetName() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700309 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700310 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700311 DCHECK(!IsProxyMethod());
312 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700313 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
314 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700315 Runtime* const runtime = Runtime::Current();
316 if (this == runtime->GetResolutionMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700317 return "<runtime internal resolution method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700318 } else if (this == runtime->GetImtConflictMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700319 return "<runtime internal imt conflict method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700320 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700321 return "<runtime internal callee-save all registers method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700322 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700323 return "<runtime internal callee-save reference registers method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700324 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700325 return "<runtime internal callee-save reference and argument registers method>";
326 } else {
327 return "<unknown runtime internal method>";
328 }
329}
330
331inline const DexFile::CodeItem* ArtMethod::GetCodeItem() {
Mathieu Chartier12b3dd72014-12-11 13:25:33 -0800332 return GetDeclaringClass()->GetDexFile().GetCodeItem(GetCodeItemOffset());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700333}
334
Vladimir Marko05792b92015-08-03 11:56:49 +0100335inline bool ArtMethod::IsResolvedTypeIdx(uint16_t type_idx, size_t ptr_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336 DCHECK(!IsProxyMethod());
Vladimir Marko05792b92015-08-03 11:56:49 +0100337 return GetDexCacheResolvedType(type_idx, ptr_size) != nullptr;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700338}
339
340inline int32_t ArtMethod::GetLineNumFromDexPC(uint32_t dex_pc) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700341 DCHECK(!IsProxyMethod());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700342 if (dex_pc == DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700343 return IsNative() ? -2 : -1;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700344 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700345 return GetDexFile()->GetLineNumFromPC(this, dex_pc);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700346}
347
348inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700349 DCHECK(!IsProxyMethod());
350 const DexFile* dex_file = GetDexFile();
351 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700352}
353
354inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000355 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700356 const DexFile* dex_file = GetDexFile();
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000357 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
358 dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700359 return dex_file->GetProtoParameters(proto);
360}
361
362inline const char* ArtMethod::GetDeclaringClassSourceFile() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700363 DCHECK(!IsProxyMethod());
364 return GetDeclaringClass()->GetSourceFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700365}
366
367inline uint16_t ArtMethod::GetClassDefIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700368 DCHECK(!IsProxyMethod());
369 return GetDeclaringClass()->GetDexClassDefIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700370}
371
372inline const DexFile::ClassDef& ArtMethod::GetClassDef() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700373 DCHECK(!IsProxyMethod());
374 return GetDexFile()->GetClassDef(GetClassDefIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700375}
376
377inline const char* ArtMethod::GetReturnTypeDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700378 DCHECK(!IsProxyMethod());
379 const DexFile* dex_file = GetDexFile();
380 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700381 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
382 uint16_t return_type_idx = proto_id.return_type_idx_;
383 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx));
384}
385
386inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(uint16_t type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700387 DCHECK(!IsProxyMethod());
388 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700389 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx));
390}
391
392inline mirror::ClassLoader* ArtMethod::GetClassLoader() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700393 DCHECK(!IsProxyMethod());
394 return GetDeclaringClass()->GetClassLoader();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700395}
396
397inline mirror::DexCache* ArtMethod::GetDexCache() {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000398 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700399 return GetDeclaringClass()->GetDexCache();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700400}
401
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700402template<ReadBarrierOption kReadBarrierOption>
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700403inline bool ArtMethod::IsProxyMethod() {
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700404 return GetDeclaringClass<kReadBarrierOption>()->IsProxyClass();
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700405}
406
Mathieu Chartiere401d142015-04-22 13:56:20 -0700407inline ArtMethod* ArtMethod::GetInterfaceMethodIfProxy(size_t pointer_size) {
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700408 if (LIKELY(!IsProxyMethod())) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700409 return this;
410 }
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700411 mirror::Class* klass = GetDeclaringClass();
Vladimir Marko05792b92015-08-03 11:56:49 +0100412 ArtMethod* interface_method = mirror::DexCache::GetElementPtrSize(
413 GetDexCacheResolvedMethods(pointer_size),
414 GetDexMethodIndex(),
415 pointer_size);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700416 DCHECK(interface_method != nullptr);
417 DCHECK_EQ(interface_method,
418 Runtime::Current()->GetClassLinker()->FindMethodForProxy(klass, this));
419 return interface_method;
420}
421
Vladimir Marko05792b92015-08-03 11:56:49 +0100422inline void ArtMethod::SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods,
423 size_t ptr_size) {
424 SetNativePointer(DexCacheResolvedMethodsOffset(ptr_size), new_dex_cache_methods, ptr_size);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700425}
426
Vladimir Marko05792b92015-08-03 11:56:49 +0100427inline void ArtMethod::SetDexCacheResolvedTypes(GcRoot<mirror::Class>* new_dex_cache_types,
428 size_t ptr_size) {
429 SetNativePointer(DexCacheResolvedTypesOffset(ptr_size), new_dex_cache_types, ptr_size);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700430}
431
Vladimir Marko05792b92015-08-03 11:56:49 +0100432inline mirror::Class* ArtMethod::GetReturnType(bool resolve, size_t ptr_size) {
Ian Rogersded66a02014-10-28 18:12:55 -0700433 DCHECK(!IsProxyMethod());
434 const DexFile* dex_file = GetDexFile();
435 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
436 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
437 uint16_t return_type_idx = proto_id.return_type_idx_;
Vladimir Marko05792b92015-08-03 11:56:49 +0100438 mirror::Class* type = GetDexCacheResolvedType(return_type_idx, ptr_size);
Ian Rogersded66a02014-10-28 18:12:55 -0700439 if (type == nullptr && resolve) {
440 type = Runtime::Current()->GetClassLinker()->ResolveType(return_type_idx, this);
441 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
442 }
443 return type;
444}
445
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700446template<ReadBarrierOption kReadBarrierOption, typename RootVisitorType>
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700447void ArtMethod::VisitRoots(RootVisitorType& visitor, size_t pointer_size) {
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700448 if (LIKELY(!declaring_class_.IsNull())) {
449 visitor.VisitRoot(declaring_class_.AddressWithoutBarrier());
450 mirror::Class* klass = declaring_class_.Read<kReadBarrierOption>();
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000451 if (UNLIKELY(klass->IsProxyClass())) {
452 // For normal methods, dex cache shortcuts will be visited through the declaring class.
453 // However, for proxies we need to keep the interface method alive, so we visit its roots.
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700454 ArtMethod* interface_method = mirror::DexCache::GetElementPtrSize(
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000455 GetDexCacheResolvedMethods(pointer_size),
456 GetDexMethodIndex(),
457 pointer_size);
458 DCHECK(interface_method != nullptr);
459 DCHECK_EQ(interface_method,
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700460 Runtime::Current()->GetClassLinker()->FindMethodForProxy<kReadBarrierOption>(
461 klass, this));
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000462 interface_method->VisitRoots(visitor, pointer_size);
463 }
Nicolas Geoffray022dd862016-05-04 09:51:24 +0100464 // We know we don't have profiling information if the class hasn't been verified. Note
465 // that this check also ensures the IsNative call can be made, as IsNative expects a fully
466 // created class (and not a retired one).
467 if (klass->IsVerified()) {
468 // Runtime methods and native methods use the same field as the profiling info for
469 // storing their own data (jni entrypoint for native methods, and ImtConflictTable for
470 // some runtime methods).
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700471 if (!IsNative<kReadBarrierOption>() && !IsRuntimeMethod()) {
Nicolas Geoffray022dd862016-05-04 09:51:24 +0100472 ProfilingInfo* profiling_info = GetProfilingInfo(pointer_size);
473 if (profiling_info != nullptr) {
474 profiling_info->VisitRoots(visitor);
475 }
Hiroshi Yamauchib79eb752016-03-07 13:56:33 -0800476 }
477 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100478 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800479}
480
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800481template <typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800482inline void ArtMethod::UpdateObjectsForImageRelocation(const Visitor& visitor,
483 size_t pointer_size) {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800484 mirror::Class* old_class = GetDeclaringClassUnchecked<kWithoutReadBarrier>();
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800485 mirror::Class* new_class = visitor(old_class);
486 if (old_class != new_class) {
487 SetDeclaringClass(new_class);
488 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800489 ArtMethod** old_methods = GetDexCacheResolvedMethods(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800490 ArtMethod** new_methods = visitor(old_methods);
491 if (old_methods != new_methods) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800492 SetDexCacheResolvedMethods(new_methods, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800493 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800494 GcRoot<mirror::Class>* old_types = GetDexCacheResolvedTypes(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800495 GcRoot<mirror::Class>* new_types = visitor(old_types);
496 if (old_types != new_types) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800497 SetDexCacheResolvedTypes(new_types, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800498 }
499}
500
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800501template <ReadBarrierOption kReadBarrierOption, typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800502inline void ArtMethod::UpdateEntrypoints(const Visitor& visitor, size_t pointer_size) {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800503 if (IsNative<kReadBarrierOption>()) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800504 const void* old_native_code = GetEntryPointFromJniPtrSize(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800505 const void* new_native_code = visitor(old_native_code);
506 if (old_native_code != new_native_code) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800507 SetEntryPointFromJniPtrSize(new_native_code, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800508 }
509 } else {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800510 DCHECK(GetEntryPointFromJniPtrSize(pointer_size) == nullptr);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800511 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800512 const void* old_code = GetEntryPointFromQuickCompiledCodePtrSize(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800513 const void* new_code = visitor(old_code);
514 if (old_code != new_code) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800515 SetEntryPointFromQuickCompiledCodePtrSize(new_code, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800516 }
517}
518
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800519} // namespace art
520
Mathieu Chartiere401d142015-04-22 13:56:20 -0700521#endif // ART_RUNTIME_ART_METHOD_INL_H_