blob: 8567c004faad822ca657c7411c755135b6f6b24a [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"
David Sehr9323e6e2016-09-13 08:58:35 -070027#include "dex_file_annotations.h"
Elliott Hughes956af0f2014-12-11 14:34:28 -080028#include "dex_file-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "gc_root-inl.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010030#include "jit/profiling_info.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070031#include "mirror/class-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010032#include "mirror/dex_cache-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070033#include "mirror/object-inl.h"
34#include "mirror/object_array.h"
Nicolas Geoffray4c0b4bc2017-03-17 13:08:26 +000035#include "mirror/string.h"
Vladimir Marko96c6ab92014-04-08 14:00:50 +010036#include "oat.h"
Mathieu Chartier28357fa2016-10-18 16:27:40 -070037#include "obj_ptr-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010038#include "quick/quick_method_frame_info.h"
39#include "runtime-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070040#include "scoped_thread_state_change-inl.h"
Andreas Gampeb486a982017-06-01 13:45:54 -070041#include "thread-current-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010042#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043
44namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080045
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080046template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartiere401d142015-04-22 13:56:20 -070047inline mirror::Class* ArtMethod::GetDeclaringClassUnchecked() {
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -070048 GcRootSource gc_root_source(this);
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080049 return declaring_class_.Read<kReadBarrierOption>(&gc_root_source);
Mingyao Yang98d1cc82014-05-15 17:02:16 -070050}
51
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080052template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartiere401d142015-04-22 13:56:20 -070053inline mirror::Class* ArtMethod::GetDeclaringClass() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080054 mirror::Class* result = GetDeclaringClassUnchecked<kReadBarrierOption>();
Mathieu Chartiere401d142015-04-22 13:56:20 -070055 if (kIsDebugBuild) {
56 if (!IsRuntimeMethod()) {
57 CHECK(result != nullptr) << this;
Andreas Gampeb1106e22017-02-23 11:34:48 -080058 if (kCheckDeclaringClassState) {
Nicolas Geoffray4c0b4bc2017-03-17 13:08:26 +000059 if (!(result->IsIdxLoaded() || result->IsErroneous())) {
60 LOG(FATAL_WITHOUT_ABORT) << "Class status: " << result->GetStatus();
61 LOG(FATAL) << result->PrettyClass();
62 }
Andreas Gampeb1106e22017-02-23 11:34:48 -080063 }
Mathieu Chartiere401d142015-04-22 13:56:20 -070064 } else {
65 CHECK(result == nullptr) << this;
66 }
67 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080068 return result;
69}
70
Mathieu Chartier28357fa2016-10-18 16:27:40 -070071inline void ArtMethod::SetDeclaringClass(ObjPtr<mirror::Class> new_declaring_class) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070072 declaring_class_ = GcRoot<mirror::Class>(new_declaring_class);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080073}
74
Mathieu Chartier10e5ea92015-08-13 12:56:31 -070075inline bool ArtMethod::CASDeclaringClass(mirror::Class* expected_class,
76 mirror::Class* desired_class) {
77 GcRoot<mirror::Class> expected_root(expected_class);
78 GcRoot<mirror::Class> desired_root(desired_class);
79 return reinterpret_cast<Atomic<GcRoot<mirror::Class>>*>(&declaring_class_)->
80 CompareExchangeStrongSequentiallyConsistent(
81 expected_root, desired_root);
82}
83
Ian Rogersef7d42f2014-01-06 12:55:46 -080084inline uint16_t ArtMethod::GetMethodIndex() {
Vladimir Marko72ab6842017-01-20 19:32:50 +000085 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsResolved());
Mathieu Chartiere401d142015-04-22 13:56:20 -070086 return method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080087}
88
Mathieu Chartier9f3629d2014-10-28 18:23:02 -070089inline uint16_t ArtMethod::GetMethodIndexDuringLinking() {
Mathieu Chartiere401d142015-04-22 13:56:20 -070090 return method_index_;
Mathieu Chartier9f3629d2014-10-28 18:23:02 -070091}
92
Ian Rogersef7d42f2014-01-06 12:55:46 -080093inline uint32_t ArtMethod::GetDexMethodIndex() {
Andreas Gampeb1106e22017-02-23 11:34:48 -080094 if (kCheckDeclaringClassState) {
95 CHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() ||
96 GetDeclaringClass()->IsErroneous());
97 }
Nicolas Geoffray5d37c152017-01-12 13:25:19 +000098 return GetDexMethodIndexUnchecked();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080099}
100
Andreas Gampe542451c2016-07-26 09:02:02 -0700101inline ArtMethod** ArtMethod::GetDexCacheResolvedMethods(PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100102 return GetNativePointer<ArtMethod**>(DexCacheResolvedMethodsOffset(pointer_size),
103 pointer_size);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700104}
105
Andreas Gampe542451c2016-07-26 09:02:02 -0700106inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index,
107 PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100108 // NOTE: Unchecked, i.e. not throwing AIOOB. We don't even know the length here
109 // without accessing the DexCache and we don't want to do that in release build.
110 DCHECK_LT(method_index,
Alex Lightdba61482016-12-21 08:20:29 -0800111 GetInterfaceMethodIfProxy(pointer_size)->GetDexCache()->NumResolvedMethods());
Andreas Gampe542451c2016-07-26 09:02:02 -0700112 ArtMethod* method = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
Vladimir Marko05792b92015-08-03 11:56:49 +0100113 method_index,
Andreas Gampe542451c2016-07-26 09:02:02 -0700114 pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700115 if (LIKELY(method != nullptr)) {
116 auto* declaring_class = method->GetDeclaringClass();
117 if (LIKELY(declaring_class == nullptr || !declaring_class->IsErroneous())) {
118 return method;
119 }
Andreas Gampe58a5af82014-07-31 16:23:49 -0700120 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700121 return nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700122}
123
Andreas Gampe542451c2016-07-26 09:02:02 -0700124inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_index,
125 ArtMethod* new_method,
126 PointerSize pointer_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,
Alex Lightdba61482016-12-21 08:20:29 -0800130 GetInterfaceMethodIfProxy(pointer_size)->GetDexCache()->NumResolvedMethods());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700131 DCHECK(new_method == nullptr || new_method->GetDeclaringClass() != nullptr);
Andreas Gampe542451c2016-07-26 09:02:02 -0700132 mirror::DexCache::SetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
Vladimir Marko05792b92015-08-03 11:56:49 +0100133 method_index,
134 new_method,
Andreas Gampe542451c2016-07-26 09:02:02 -0700135 pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700136}
137
Andreas Gampe542451c2016-07-26 09:02:02 -0700138inline bool ArtMethod::HasDexCacheResolvedMethods(PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100139 return GetDexCacheResolvedMethods(pointer_size) != nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700140}
141
Vladimir Marko05792b92015-08-03 11:56:49 +0100142inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod** other_cache,
Andreas Gampe542451c2016-07-26 09:02:02 -0700143 PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100144 return GetDexCacheResolvedMethods(pointer_size) == other_cache;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700145}
146
Andreas Gampe542451c2016-07-26 09:02:02 -0700147inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other, PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100148 return GetDexCacheResolvedMethods(pointer_size) ==
149 other->GetDexCacheResolvedMethods(pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700150}
151
Vladimir Marko942fd312017-01-16 20:52:19 +0000152inline mirror::Class* ArtMethod::GetClassFromTypeIndex(dex::TypeIndex type_idx, bool resolve) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000153 // TODO: Refactor this function into two functions, Resolve...() and Lookup...()
154 // so that we can properly annotate it with no-suspension possible / suspension possible.
Vladimir Marko942fd312017-01-16 20:52:19 +0000155 ObjPtr<mirror::DexCache> dex_cache = GetDexCache();
156 ObjPtr<mirror::Class> type = dex_cache->GetResolvedType(type_idx);
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000157 if (UNLIKELY(type == nullptr)) {
Vladimir Marko942fd312017-01-16 20:52:19 +0000158 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000159 if (resolve) {
160 type = class_linker->ResolveType(type_idx, this);
161 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
162 } else {
163 type = class_linker->LookupResolvedType(
164 *dex_cache->GetDexFile(), type_idx, dex_cache, GetClassLoader());
165 }
Ian Rogersa0485602014-12-02 15:48:04 -0800166 }
Vladimir Marko942fd312017-01-16 20:52:19 +0000167 return type.Ptr();
Ian Rogersa0485602014-12-02 15:48:04 -0800168}
169
Brian Carlstromea46f952013-07-30 01:26:50 -0700170inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800171 switch (type) {
172 case kStatic:
173 return !IsStatic();
174 case kDirect:
175 return !IsDirect() || IsStatic();
176 case kVirtual: {
Alex Lightd6e0fa92016-10-17 13:02:39 -0700177 // We have an error if we are direct or a non-copied (i.e. not part of a real class) interface
178 // method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700179 mirror::Class* methods_class = GetDeclaringClass();
Alex Lightd6e0fa92016-10-17 13:02:39 -0700180 return IsDirect() || (methods_class->IsInterface() && !IsCopied());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800181 }
182 case kSuper:
Andreas Gampe8f252e62014-08-25 20:46:31 -0700183 // Constructors and static methods are called with invoke-direct.
Alex Light705ad492015-09-21 11:36:30 -0700184 return IsConstructor() || IsStatic();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800185 case kInterface: {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700186 mirror::Class* methods_class = GetDeclaringClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800187 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
188 }
189 default:
190 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700191 UNREACHABLE();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800192 }
193}
194
Ian Rogersef7d42f2014-01-06 12:55:46 -0800195inline bool ArtMethod::IsCalleeSaveMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 if (!IsRuntimeMethod()) {
197 return false;
198 }
199 Runtime* runtime = Runtime::Current();
200 bool result = false;
201 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
202 if (this == runtime->GetCalleeSaveMethod(Runtime::CalleeSaveType(i))) {
203 result = true;
204 break;
205 }
206 }
207 return result;
208}
209
Ian Rogersef7d42f2014-01-06 12:55:46 -0800210inline bool ArtMethod::IsResolutionMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800211 bool result = this == Runtime::Current()->GetResolutionMethod();
212 // Check that if we do think it is phony it looks like the resolution method.
213 DCHECK(!result || IsRuntimeMethod());
214 return result;
215}
Jeff Hao88474b42013-10-23 16:24:40 -0700216
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700217inline bool ArtMethod::IsImtUnimplementedMethod() {
218 bool result = this == Runtime::Current()->GetImtUnimplementedMethod();
219 // Check that if we do think it is phony it looks like the imt unimplemented method.
220 DCHECK(!result || IsRuntimeMethod());
221 return result;
222}
223
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700224inline const DexFile* ArtMethod::GetDexFile() {
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800225 // It is safe to avoid the read barrier here since the dex file is constant, so if we read the
226 // from-space dex file pointer it will be equal to the to-space copy.
227 return GetDexCache<kWithoutReadBarrier>()->GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700228}
229
230inline const char* ArtMethod::GetDeclaringClassDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700231 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700232 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
233 return "<runtime method>";
234 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700235 DCHECK(!IsProxyMethod());
236 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700237 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
238}
239
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800240inline const char* ArtMethod::GetShorty() {
241 uint32_t unused_length;
242 return GetShorty(&unused_length);
243}
244
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700245inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000246 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700247 const DexFile* dex_file = GetDexFile();
248 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700249}
250
251inline const Signature ArtMethod::GetSignature() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700252 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700253 if (dex_method_idx != DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700254 DCHECK(!IsProxyMethod());
255 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700256 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
257 }
258 return Signature::NoSignature();
259}
260
Ian Rogers1ff3c982014-08-12 02:30:58 -0700261inline const char* ArtMethod::GetName() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700262 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700263 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700264 DCHECK(!IsProxyMethod());
265 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700266 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
267 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700268 Runtime* const runtime = Runtime::Current();
269 if (this == runtime->GetResolutionMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700270 return "<runtime internal resolution method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700271 } else if (this == runtime->GetImtConflictMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700272 return "<runtime internal imt conflict method>";
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100273 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveAllCalleeSaves)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700274 return "<runtime internal callee-save all registers method>";
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100275 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveRefsOnly)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700276 return "<runtime internal callee-save reference registers method>";
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100277 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveRefsAndArgs)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700278 return "<runtime internal callee-save reference and argument registers method>";
279 } else {
280 return "<unknown runtime internal method>";
281 }
282}
283
284inline const DexFile::CodeItem* ArtMethod::GetCodeItem() {
Alex Lightdba61482016-12-21 08:20:29 -0800285 return GetDexFile()->GetCodeItem(GetCodeItemOffset());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700286}
287
Vladimir Marko942fd312017-01-16 20:52:19 +0000288inline bool ArtMethod::IsResolvedTypeIdx(dex::TypeIndex type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700289 DCHECK(!IsProxyMethod());
Vladimir Marko942fd312017-01-16 20:52:19 +0000290 return GetClassFromTypeIndex(type_idx, /* resolve */ false) != nullptr;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700291}
292
293inline int32_t ArtMethod::GetLineNumFromDexPC(uint32_t dex_pc) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700294 DCHECK(!IsProxyMethod());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700295 if (dex_pc == DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700296 return IsNative() ? -2 : -1;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700297 }
David Sehr9323e6e2016-09-13 08:58:35 -0700298 return annotations::GetLineNumFromPC(GetDexFile(), this, dex_pc);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700299}
300
301inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700302 DCHECK(!IsProxyMethod());
303 const DexFile* dex_file = GetDexFile();
304 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700305}
306
307inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000308 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700309 const DexFile* dex_file = GetDexFile();
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000310 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
311 dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700312 return dex_file->GetProtoParameters(proto);
313}
314
315inline const char* ArtMethod::GetDeclaringClassSourceFile() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700316 DCHECK(!IsProxyMethod());
317 return GetDeclaringClass()->GetSourceFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700318}
319
320inline uint16_t ArtMethod::GetClassDefIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700321 DCHECK(!IsProxyMethod());
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000322 if (LIKELY(!IsObsolete())) {
323 return GetDeclaringClass()->GetDexClassDefIndex();
324 } else {
325 return FindObsoleteDexClassDefIndex();
326 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700327}
328
329inline const DexFile::ClassDef& ArtMethod::GetClassDef() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700330 DCHECK(!IsProxyMethod());
331 return GetDexFile()->GetClassDef(GetClassDefIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700332}
333
334inline const char* ArtMethod::GetReturnTypeDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700335 DCHECK(!IsProxyMethod());
336 const DexFile* dex_file = GetDexFile();
337 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700338 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -0800339 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(proto_id.return_type_idx_));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700340}
341
Andreas Gampea5b09a62016-11-17 15:21:22 -0800342inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(dex::TypeIndex type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700343 DCHECK(!IsProxyMethod());
344 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700345 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx));
346}
347
348inline mirror::ClassLoader* ArtMethod::GetClassLoader() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700349 DCHECK(!IsProxyMethod());
350 return GetDeclaringClass()->GetClassLoader();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700351}
352
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800353template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700354inline mirror::DexCache* ArtMethod::GetDexCache() {
Alex Lightdba61482016-12-21 08:20:29 -0800355 if (LIKELY(!IsObsolete())) {
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800356 mirror::Class* klass = GetDeclaringClass<kReadBarrierOption>();
357 return klass->GetDexCache<kDefaultVerifyFlags, kReadBarrierOption>();
Alex Lightdba61482016-12-21 08:20:29 -0800358 } else {
359 DCHECK(!IsProxyMethod());
360 return GetObsoleteDexCache();
Alex Lighta01de592016-11-15 10:43:06 -0800361 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700362}
363
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700364inline bool ArtMethod::IsProxyMethod() {
Mathieu Chartier90c5a9b2017-02-01 13:10:06 -0800365 // Avoid read barrier since the from-space version of the class will have the correct proxy class
366 // flags since they are constant for the lifetime of the class.
367 return GetDeclaringClass<kWithoutReadBarrier>()->IsProxyClass();
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700368}
369
Andreas Gampe542451c2016-07-26 09:02:02 -0700370inline ArtMethod* ArtMethod::GetInterfaceMethodIfProxy(PointerSize pointer_size) {
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700371 if (LIKELY(!IsProxyMethod())) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700372 return this;
373 }
Vladimir Marko05792b92015-08-03 11:56:49 +0100374 ArtMethod* interface_method = mirror::DexCache::GetElementPtrSize(
375 GetDexCacheResolvedMethods(pointer_size),
376 GetDexMethodIndex(),
377 pointer_size);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700378 DCHECK(interface_method != nullptr);
379 DCHECK_EQ(interface_method,
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800380 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700381 return interface_method;
382}
383
Vladimir Marko05792b92015-08-03 11:56:49 +0100384inline void ArtMethod::SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods,
Andreas Gampe542451c2016-07-26 09:02:02 -0700385 PointerSize pointer_size) {
386 SetNativePointer(DexCacheResolvedMethodsOffset(pointer_size),
387 new_dex_cache_methods,
388 pointer_size);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700389}
390
Vladimir Marko942fd312017-01-16 20:52:19 +0000391inline mirror::Class* ArtMethod::GetReturnType(bool resolve) {
Ian Rogersded66a02014-10-28 18:12:55 -0700392 DCHECK(!IsProxyMethod());
393 const DexFile* dex_file = GetDexFile();
394 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
395 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -0800396 dex::TypeIndex return_type_idx = proto_id.return_type_idx_;
Vladimir Marko942fd312017-01-16 20:52:19 +0000397 return GetClassFromTypeIndex(return_type_idx, resolve);
Ian Rogersded66a02014-10-28 18:12:55 -0700398}
399
Mingyao Yang063fc772016-08-02 11:02:54 -0700400inline bool ArtMethod::HasSingleImplementation() {
401 if (IsFinal() || GetDeclaringClass()->IsFinal()) {
402 // We don't set kAccSingleImplementation for these cases since intrinsic
403 // can use the flag also.
404 return true;
405 }
406 return (GetAccessFlags() & kAccSingleImplementation) != 0;
407}
408
409inline void ArtMethod::SetIntrinsic(uint32_t intrinsic) {
410 DCHECK(IsUint<8>(intrinsic));
411 // Currently we only do intrinsics for static/final methods or methods of final
412 // classes. We don't set kHasSingleImplementation for those methods.
413 DCHECK(IsStatic() || IsFinal() || GetDeclaringClass()->IsFinal()) <<
414 "Potential conflict with kAccSingleImplementation";
415 uint32_t new_value = (GetAccessFlags() & kAccFlagsNotUsedByIntrinsic) |
416 kAccIntrinsic |
417 (intrinsic << POPCOUNT(kAccFlagsNotUsedByIntrinsic));
418 if (kIsDebugBuild) {
419 uint32_t java_flags = (GetAccessFlags() & kAccJavaFlagsMask);
420 bool is_constructor = IsConstructor();
421 bool is_synchronized = IsSynchronized();
422 bool skip_access_checks = SkipAccessChecks();
423 bool is_fast_native = IsFastNative();
424 bool is_copied = IsCopied();
425 bool is_miranda = IsMiranda();
426 bool is_default = IsDefault();
427 bool is_default_conflict = IsDefaultConflicting();
428 bool is_compilable = IsCompilable();
429 bool must_count_locks = MustCountLocks();
430 SetAccessFlags(new_value);
431 DCHECK_EQ(java_flags, (GetAccessFlags() & kAccJavaFlagsMask));
432 DCHECK_EQ(is_constructor, IsConstructor());
433 DCHECK_EQ(is_synchronized, IsSynchronized());
434 DCHECK_EQ(skip_access_checks, SkipAccessChecks());
435 DCHECK_EQ(is_fast_native, IsFastNative());
436 DCHECK_EQ(is_copied, IsCopied());
437 DCHECK_EQ(is_miranda, IsMiranda());
438 DCHECK_EQ(is_default, IsDefault());
439 DCHECK_EQ(is_default_conflict, IsDefaultConflicting());
440 DCHECK_EQ(is_compilable, IsCompilable());
441 DCHECK_EQ(must_count_locks, MustCountLocks());
442 } else {
443 SetAccessFlags(new_value);
444 }
445}
446
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700447template<ReadBarrierOption kReadBarrierOption, typename RootVisitorType>
Andreas Gampe542451c2016-07-26 09:02:02 -0700448void ArtMethod::VisitRoots(RootVisitorType& visitor, PointerSize pointer_size) {
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700449 if (LIKELY(!declaring_class_.IsNull())) {
450 visitor.VisitRoot(declaring_class_.AddressWithoutBarrier());
451 mirror::Class* klass = declaring_class_.Read<kReadBarrierOption>();
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000452 if (UNLIKELY(klass->IsProxyClass())) {
453 // For normal methods, dex cache shortcuts will be visited through the declaring class.
454 // However, for proxies we need to keep the interface method alive, so we visit its roots.
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700455 ArtMethod* interface_method = mirror::DexCache::GetElementPtrSize(
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000456 GetDexCacheResolvedMethods(pointer_size),
457 GetDexMethodIndex(),
458 pointer_size);
459 DCHECK(interface_method != nullptr);
460 DCHECK_EQ(interface_method,
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700461 Runtime::Current()->GetClassLinker()->FindMethodForProxy<kReadBarrierOption>(
462 klass, this));
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000463 interface_method->VisitRoots(visitor, pointer_size);
464 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100465 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800466}
467
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800468template <typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800469inline void ArtMethod::UpdateObjectsForImageRelocation(const Visitor& visitor,
Andreas Gampe542451c2016-07-26 09:02:02 -0700470 PointerSize pointer_size) {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800471 mirror::Class* old_class = GetDeclaringClassUnchecked<kWithoutReadBarrier>();
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800472 mirror::Class* new_class = visitor(old_class);
473 if (old_class != new_class) {
474 SetDeclaringClass(new_class);
475 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800476 ArtMethod** old_methods = GetDexCacheResolvedMethods(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800477 ArtMethod** new_methods = visitor(old_methods);
478 if (old_methods != new_methods) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800479 SetDexCacheResolvedMethods(new_methods, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800480 }
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800481}
482
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800483template <ReadBarrierOption kReadBarrierOption, typename Visitor>
Andreas Gampe542451c2016-07-26 09:02:02 -0700484inline void ArtMethod::UpdateEntrypoints(const Visitor& visitor, PointerSize pointer_size) {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800485 if (IsNative<kReadBarrierOption>()) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800486 const void* old_native_code = GetEntryPointFromJniPtrSize(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800487 const void* new_native_code = visitor(old_native_code);
488 if (old_native_code != new_native_code) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800489 SetEntryPointFromJniPtrSize(new_native_code, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800490 }
491 } else {
Andreas Gampe75f08852016-07-19 08:06:07 -0700492 DCHECK(GetDataPtrSize(pointer_size) == nullptr);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800493 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800494 const void* old_code = GetEntryPointFromQuickCompiledCodePtrSize(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800495 const void* new_code = visitor(old_code);
496 if (old_code != new_code) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800497 SetEntryPointFromQuickCompiledCodePtrSize(new_code, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800498 }
499}
500
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800501} // namespace art
502
Mathieu Chartiere401d142015-04-22 13:56:20 -0700503#endif // ART_RUNTIME_ART_METHOD_INL_H_