blob: 74eb7227dcd2e8bc18c1cb08a12c4b03d725fe88 [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 Chartiere401d142015-04-22 13:56:20 -070044inline mirror::Class* ArtMethod::GetDeclaringClassUnchecked() {
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -070045 GcRootSource gc_root_source(this);
46 return declaring_class_.Read(&gc_root_source);
Mingyao Yang98d1cc82014-05-15 17:02:16 -070047}
48
Mathieu Chartiere401d142015-04-22 13:56:20 -070049inline mirror::Class* ArtMethod::GetDeclaringClassNoBarrier() {
50 return declaring_class_.Read<kWithoutReadBarrier>();
Mingyao Yang98d1cc82014-05-15 17:02:16 -070051}
52
Mathieu Chartiere401d142015-04-22 13:56:20 -070053inline mirror::Class* ArtMethod::GetDeclaringClass() {
54 mirror::Class* result = GetDeclaringClassUnchecked();
55 if (kIsDebugBuild) {
56 if (!IsRuntimeMethod()) {
57 CHECK(result != nullptr) << this;
58 CHECK(result->IsIdxLoaded() || result->IsErroneous())
59 << result->GetStatus() << " " << PrettyClass(result);
60 } else {
61 CHECK(result == nullptr) << this;
62 }
63 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080064 return result;
65}
66
Mathieu Chartiere401d142015-04-22 13:56:20 -070067inline void ArtMethod::SetDeclaringClass(mirror::Class* new_declaring_class) {
68 declaring_class_ = GcRoot<mirror::Class>(new_declaring_class);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069}
70
Mathieu Chartier10e5ea92015-08-13 12:56:31 -070071inline bool ArtMethod::CASDeclaringClass(mirror::Class* expected_class,
72 mirror::Class* desired_class) {
73 GcRoot<mirror::Class> expected_root(expected_class);
74 GcRoot<mirror::Class> desired_root(desired_class);
75 return reinterpret_cast<Atomic<GcRoot<mirror::Class>>*>(&declaring_class_)->
76 CompareExchangeStrongSequentiallyConsistent(
77 expected_root, desired_root);
78}
79
Andreas Gampecbc96b82015-09-30 20:05:24 +000080// AssertSharedHeld doesn't work in GetAccessFlags, so use a NO_THREAD_SAFETY_ANALYSIS helper.
81// TODO: Figure out why ASSERT_SHARED_CAPABILITY doesn't work.
82ALWAYS_INLINE
83static inline void DoGetAccessFlagsHelper(ArtMethod* method) NO_THREAD_SAFETY_ANALYSIS {
84 CHECK(method->IsRuntimeMethod() || method->GetDeclaringClass()->IsIdxLoaded() ||
85 method->GetDeclaringClass()->IsErroneous());
86}
87
Ian Rogersef7d42f2014-01-06 12:55:46 -080088inline uint32_t ArtMethod::GetAccessFlags() {
Andreas Gampecbc96b82015-09-30 20:05:24 +000089 if (kIsDebugBuild) {
90 Thread* self = Thread::Current();
91 if (!Locks::mutator_lock_->IsSharedHeld(self)) {
92 ScopedObjectAccess soa(self);
93 CHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() ||
94 GetDeclaringClass()->IsErroneous());
95 } else {
96 // We cannot use SOA in this case. We might be holding the lock, but may not be in the
97 // runnable state (e.g., during GC).
98 Locks::mutator_lock_->AssertSharedHeld(self);
99 DoGetAccessFlagsHelper(this);
100 }
101 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700102 return access_flags_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800103}
104
Ian Rogersef7d42f2014-01-06 12:55:46 -0800105inline uint16_t ArtMethod::GetMethodIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700106 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsResolved() ||
107 GetDeclaringClass()->IsErroneous());
108 return method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800109}
110
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700111inline uint16_t ArtMethod::GetMethodIndexDuringLinking() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700112 return method_index_;
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700113}
114
Ian Rogersef7d42f2014-01-06 12:55:46 -0800115inline uint32_t ArtMethod::GetDexMethodIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700116 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() ||
117 GetDeclaringClass()->IsErroneous());
118 return dex_method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800119}
120
Vladimir Marko05792b92015-08-03 11:56:49 +0100121inline ArtMethod** ArtMethod::GetDexCacheResolvedMethods(size_t pointer_size) {
122 return GetNativePointer<ArtMethod**>(DexCacheResolvedMethodsOffset(pointer_size),
123 pointer_size);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700124}
125
Mathieu Chartiere401d142015-04-22 13:56:20 -0700126inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100127 // NOTE: Unchecked, i.e. not throwing AIOOB. We don't even know the length here
128 // without accessing the DexCache and we don't want to do that in release build.
129 DCHECK_LT(method_index,
130 GetInterfaceMethodIfProxy(ptr_size)->GetDeclaringClass()
131 ->GetDexCache()->NumResolvedMethods());
132 ArtMethod* method = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(ptr_size),
133 method_index,
134 ptr_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700135 if (LIKELY(method != nullptr)) {
136 auto* declaring_class = method->GetDeclaringClass();
137 if (LIKELY(declaring_class == nullptr || !declaring_class->IsErroneous())) {
138 return method;
139 }
Andreas Gampe58a5af82014-07-31 16:23:49 -0700140 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700141 return nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700142}
143
Vladimir Marko05792b92015-08-03 11:56:49 +0100144inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_index, ArtMethod* new_method,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700145 size_t ptr_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100146 // NOTE: Unchecked, i.e. not throwing AIOOB. We don't even know the length here
147 // without accessing the DexCache and we don't want to do that in release build.
148 DCHECK_LT(method_index,
149 GetInterfaceMethodIfProxy(ptr_size)->GetDeclaringClass()
150 ->GetDexCache()->NumResolvedMethods());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700151 DCHECK(new_method == nullptr || new_method->GetDeclaringClass() != nullptr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100152 mirror::DexCache::SetElementPtrSize(GetDexCacheResolvedMethods(ptr_size),
153 method_index,
154 new_method,
155 ptr_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700156}
157
Vladimir Marko05792b92015-08-03 11:56:49 +0100158inline bool ArtMethod::HasDexCacheResolvedMethods(size_t pointer_size) {
159 return GetDexCacheResolvedMethods(pointer_size) != nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700160}
161
Vladimir Marko05792b92015-08-03 11:56:49 +0100162inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod** other_cache,
163 size_t pointer_size) {
164 return GetDexCacheResolvedMethods(pointer_size) == other_cache;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700165}
166
Vladimir Marko05792b92015-08-03 11:56:49 +0100167inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other, size_t pointer_size) {
168 return GetDexCacheResolvedMethods(pointer_size) ==
169 other->GetDexCacheResolvedMethods(pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700170}
171
Vladimir Marko05792b92015-08-03 11:56:49 +0100172inline GcRoot<mirror::Class>* ArtMethod::GetDexCacheResolvedTypes(size_t pointer_size) {
173 return GetNativePointer<GcRoot<mirror::Class>*>(DexCacheResolvedTypesOffset(pointer_size),
174 pointer_size);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700175}
176
Andreas Gampe58a5af82014-07-31 16:23:49 -0700177template <bool kWithCheck>
Vladimir Marko05792b92015-08-03 11:56:49 +0100178inline mirror::Class* ArtMethod::GetDexCacheResolvedType(uint32_t type_index, size_t ptr_size) {
179 if (kWithCheck) {
180 mirror::DexCache* dex_cache =
181 GetInterfaceMethodIfProxy(ptr_size)->GetDeclaringClass()->GetDexCache();
182 if (UNLIKELY(type_index >= dex_cache->NumResolvedTypes())) {
183 ThrowArrayIndexOutOfBoundsException(type_index, dex_cache->NumResolvedTypes());
184 return nullptr;
185 }
186 }
187 mirror::Class* klass = GetDexCacheResolvedTypes(ptr_size)[type_index].Read();
Andreas Gampe58a5af82014-07-31 16:23:49 -0700188 return (klass != nullptr && !klass->IsErroneous()) ? klass : nullptr;
189}
190
Vladimir Marko05792b92015-08-03 11:56:49 +0100191inline bool ArtMethod::HasDexCacheResolvedTypes(size_t pointer_size) {
192 return GetDexCacheResolvedTypes(pointer_size) != nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700193}
194
Vladimir Marko05792b92015-08-03 11:56:49 +0100195inline bool ArtMethod::HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache,
196 size_t pointer_size) {
197 return GetDexCacheResolvedTypes(pointer_size) == other_cache;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700198}
199
Vladimir Marko05792b92015-08-03 11:56:49 +0100200inline bool ArtMethod::HasSameDexCacheResolvedTypes(ArtMethod* other, size_t pointer_size) {
201 return GetDexCacheResolvedTypes(pointer_size) == other->GetDexCacheResolvedTypes(pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700202}
203
Vladimir Marko05792b92015-08-03 11:56:49 +0100204inline mirror::Class* ArtMethod::GetClassFromTypeIndex(uint16_t type_idx,
205 bool resolve,
206 size_t ptr_size) {
207 mirror::Class* type = GetDexCacheResolvedType(type_idx, ptr_size);
Ian Rogersa0485602014-12-02 15:48:04 -0800208 if (type == nullptr && resolve) {
209 type = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, this);
210 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
211 }
212 return type;
213}
214
Brian Carlstromea46f952013-07-30 01:26:50 -0700215inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800216 switch (type) {
217 case kStatic:
218 return !IsStatic();
219 case kDirect:
220 return !IsDirect() || IsStatic();
221 case kVirtual: {
Alex Lighteb7c1442015-08-31 13:17:42 -0700222 // We have an error if we are direct or a non-default, non-miranda interface method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700223 mirror::Class* methods_class = GetDeclaringClass();
Alex Lighteb7c1442015-08-31 13:17:42 -0700224 return IsDirect() || (methods_class->IsInterface() && !IsDefault() && !IsMiranda());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800225 }
226 case kSuper:
Andreas Gampe8f252e62014-08-25 20:46:31 -0700227 // Constructors and static methods are called with invoke-direct.
Alex Light705ad492015-09-21 11:36:30 -0700228 return IsConstructor() || IsStatic();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800229 case kInterface: {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700230 mirror::Class* methods_class = GetDeclaringClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800231 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
232 }
233 default:
234 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700235 UNREACHABLE();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800236 }
237}
238
Ian Rogersef7d42f2014-01-06 12:55:46 -0800239inline bool ArtMethod::IsRuntimeMethod() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700240 return dex_method_index_ == DexFile::kDexNoIndex;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800241}
242
Ian Rogersef7d42f2014-01-06 12:55:46 -0800243inline bool ArtMethod::IsCalleeSaveMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800244 if (!IsRuntimeMethod()) {
245 return false;
246 }
247 Runtime* runtime = Runtime::Current();
248 bool result = false;
249 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
250 if (this == runtime->GetCalleeSaveMethod(Runtime::CalleeSaveType(i))) {
251 result = true;
252 break;
253 }
254 }
255 return result;
256}
257
Ian Rogersef7d42f2014-01-06 12:55:46 -0800258inline bool ArtMethod::IsResolutionMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800259 bool result = this == Runtime::Current()->GetResolutionMethod();
260 // Check that if we do think it is phony it looks like the resolution method.
261 DCHECK(!result || IsRuntimeMethod());
262 return result;
263}
Jeff Hao88474b42013-10-23 16:24:40 -0700264
Ian Rogersef7d42f2014-01-06 12:55:46 -0800265inline bool ArtMethod::IsImtConflictMethod() {
Jeff Hao88474b42013-10-23 16:24:40 -0700266 bool result = this == Runtime::Current()->GetImtConflictMethod();
267 // Check that if we do think it is phony it looks like the imt conflict method.
268 DCHECK(!result || IsRuntimeMethod());
269 return result;
270}
Mathieu Chartier4e305412014-02-19 10:54:44 -0800271
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700272inline bool ArtMethod::IsImtUnimplementedMethod() {
273 bool result = this == Runtime::Current()->GetImtUnimplementedMethod();
274 // Check that if we do think it is phony it looks like the imt unimplemented method.
275 DCHECK(!result || IsRuntimeMethod());
276 return result;
277}
278
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700279inline const DexFile* ArtMethod::GetDexFile() {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700280 return GetDexCache()->GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700281}
282
283inline const char* ArtMethod::GetDeclaringClassDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700284 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700285 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
286 return "<runtime method>";
287 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700288 DCHECK(!IsProxyMethod());
289 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700290 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
291}
292
293inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000294 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700295 const DexFile* dex_file = GetDexFile();
296 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700297}
298
299inline const Signature ArtMethod::GetSignature() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700300 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700301 if (dex_method_idx != DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700302 DCHECK(!IsProxyMethod());
303 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700304 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
305 }
306 return Signature::NoSignature();
307}
308
Ian Rogers1ff3c982014-08-12 02:30:58 -0700309inline const char* ArtMethod::GetName() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700310 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700311 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700312 DCHECK(!IsProxyMethod());
313 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700314 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
315 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700316 Runtime* const runtime = Runtime::Current();
317 if (this == runtime->GetResolutionMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700318 return "<runtime internal resolution method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700319 } else if (this == runtime->GetImtConflictMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700320 return "<runtime internal imt conflict method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700321 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700322 return "<runtime internal callee-save all registers method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700323 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700324 return "<runtime internal callee-save reference registers method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700325 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700326 return "<runtime internal callee-save reference and argument registers method>";
327 } else {
328 return "<unknown runtime internal method>";
329 }
330}
331
332inline const DexFile::CodeItem* ArtMethod::GetCodeItem() {
Mathieu Chartier12b3dd72014-12-11 13:25:33 -0800333 return GetDeclaringClass()->GetDexFile().GetCodeItem(GetCodeItemOffset());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700334}
335
Vladimir Marko05792b92015-08-03 11:56:49 +0100336inline bool ArtMethod::IsResolvedTypeIdx(uint16_t type_idx, size_t ptr_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700337 DCHECK(!IsProxyMethod());
Vladimir Marko05792b92015-08-03 11:56:49 +0100338 return GetDexCacheResolvedType(type_idx, ptr_size) != nullptr;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700339}
340
341inline int32_t ArtMethod::GetLineNumFromDexPC(uint32_t dex_pc) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700342 DCHECK(!IsProxyMethod());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700343 if (dex_pc == DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700344 return IsNative() ? -2 : -1;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700345 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700346 return GetDexFile()->GetLineNumFromPC(this, dex_pc);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700347}
348
349inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700350 DCHECK(!IsProxyMethod());
351 const DexFile* dex_file = GetDexFile();
352 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700353}
354
355inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000356 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700357 const DexFile* dex_file = GetDexFile();
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000358 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
359 dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700360 return dex_file->GetProtoParameters(proto);
361}
362
363inline const char* ArtMethod::GetDeclaringClassSourceFile() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700364 DCHECK(!IsProxyMethod());
365 return GetDeclaringClass()->GetSourceFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700366}
367
368inline uint16_t ArtMethod::GetClassDefIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700369 DCHECK(!IsProxyMethod());
370 return GetDeclaringClass()->GetDexClassDefIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700371}
372
373inline const DexFile::ClassDef& ArtMethod::GetClassDef() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700374 DCHECK(!IsProxyMethod());
375 return GetDexFile()->GetClassDef(GetClassDefIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700376}
377
378inline const char* ArtMethod::GetReturnTypeDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700379 DCHECK(!IsProxyMethod());
380 const DexFile* dex_file = GetDexFile();
381 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700382 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
383 uint16_t return_type_idx = proto_id.return_type_idx_;
384 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx));
385}
386
387inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(uint16_t type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700388 DCHECK(!IsProxyMethod());
389 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700390 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx));
391}
392
393inline mirror::ClassLoader* ArtMethod::GetClassLoader() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700394 DCHECK(!IsProxyMethod());
395 return GetDeclaringClass()->GetClassLoader();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700396}
397
398inline mirror::DexCache* ArtMethod::GetDexCache() {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000399 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700400 return GetDeclaringClass()->GetDexCache();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700401}
402
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700403inline bool ArtMethod::IsProxyMethod() {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000404 return GetDeclaringClass()->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
Mathieu Chartiere401d142015-04-22 13:56:20 -0700446template<typename RootVisitorType>
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700447void ArtMethod::VisitRoots(RootVisitorType& visitor, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100448 ArtMethod* interface_method = nullptr;
449 mirror::Class* klass = declaring_class_.Read();
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000450 if (UNLIKELY(klass != nullptr && klass->IsProxyClass())) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100451 // For normal methods, dex cache shortcuts will be visited through the declaring class.
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000452 // However, for proxies we need to keep the interface method alive, so we visit its roots.
Vladimir Marko05792b92015-08-03 11:56:49 +0100453 interface_method = mirror::DexCache::GetElementPtrSize(
454 GetDexCacheResolvedMethods(pointer_size),
455 GetDexMethodIndex(),
456 pointer_size);
457 DCHECK(interface_method != nullptr);
458 DCHECK_EQ(interface_method,
459 Runtime::Current()->GetClassLinker()->FindMethodForProxy(klass, this));
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700460 interface_method->VisitRoots(visitor, pointer_size);
Vladimir Marko05792b92015-08-03 11:56:49 +0100461 }
462
Mathieu Chartiere3b034a2015-05-31 14:29:23 -0700463 visitor.VisitRootIfNonNull(declaring_class_.AddressWithoutBarrier());
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700464 ProfilingInfo* profiling_info = GetProfilingInfo(pointer_size);
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100465 if (hotness_count_ != 0 && !IsNative() && profiling_info != nullptr) {
466 profiling_info->VisitRoots(visitor);
467 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800468}
469
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800470template <typename Visitor>
471inline void ArtMethod::UpdateObjectsForImageRelocation(const Visitor& visitor) {
472 mirror::Class* old_class = GetDeclaringClassNoBarrier();
473 mirror::Class* new_class = visitor(old_class);
474 if (old_class != new_class) {
475 SetDeclaringClass(new_class);
476 }
477 ArtMethod** old_methods = GetDexCacheResolvedMethods(sizeof(void*));
478 ArtMethod** new_methods = visitor(old_methods);
479 if (old_methods != new_methods) {
480 SetDexCacheResolvedMethods(new_methods, sizeof(void*));
481 }
482 GcRoot<mirror::Class>* old_types = GetDexCacheResolvedTypes(sizeof(void*));
483 GcRoot<mirror::Class>* new_types = visitor(old_types);
484 if (old_types != new_types) {
485 SetDexCacheResolvedTypes(new_types, sizeof(void*));
486 }
487}
488
489template <typename Visitor>
490inline void ArtMethod::UpdateEntrypoints(const Visitor& visitor) {
491 if (IsNative()) {
492 const void* old_native_code = GetEntryPointFromJni();
493 const void* new_native_code = visitor(old_native_code);
494 if (old_native_code != new_native_code) {
495 SetEntryPointFromJni(new_native_code);
496 }
497 } else {
498 DCHECK(GetEntryPointFromJni() == nullptr);
499 }
500 const void* old_code = GetEntryPointFromQuickCompiledCode();
501 const void* new_code = visitor(old_code);
502 if (old_code != new_code) {
503 SetEntryPointFromQuickCompiledCode(new_code);
504 }
505}
506
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800507} // namespace art
508
Mathieu Chartiere401d142015-04-22 13:56:20 -0700509#endif // ART_RUNTIME_ART_METHOD_INL_H_