blob: 40d7e5c3f3b31dde48c12091964f83a5462a7be0 [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"
Andreas Gampe8228cdf2017-05-30 15:03:54 -070023#include "base/callee_save_type.h"
Mathieu Chartier7c0fe5e2015-07-17 19:53:47 -070024#include "base/logging.h"
Hiroshi Yamauchi00370822015-08-18 14:47:25 -070025#include "class_linker-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010026#include "common_throws.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "dex_file.h"
David Sehr9323e6e2016-09-13 08:58:35 -070028#include "dex_file_annotations.h"
Elliott Hughes956af0f2014-12-11 14:34:28 -080029#include "dex_file-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "gc_root-inl.h"
Andreas Gampe5d08fcc2017-06-05 17:56:46 -070031#include "invoke_type.h"
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010032#include "jit/profiling_info.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070033#include "mirror/class-inl.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010034#include "mirror/dex_cache-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070035#include "mirror/object-inl.h"
36#include "mirror/object_array.h"
Nicolas Geoffray4c0b4bc2017-03-17 13:08:26 +000037#include "mirror/string.h"
Vladimir Marko96c6ab92014-04-08 14:00:50 +010038#include "oat.h"
Mathieu Chartier28357fa2016-10-18 16:27:40 -070039#include "obj_ptr-inl.h"
Alex Lightd7661582017-05-01 13:48:16 -070040#include "primitive.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010041#include "quick/quick_method_frame_info.h"
Alex Lightd7661582017-05-01 13:48:16 -070042#include "read_barrier-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010043#include "runtime-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070044#include "scoped_thread_state_change-inl.h"
Andreas Gampeb486a982017-06-01 13:45:54 -070045#include "thread-current-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010046#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047
48namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080050template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartiere401d142015-04-22 13:56:20 -070051inline mirror::Class* ArtMethod::GetDeclaringClassUnchecked() {
Hiroshi Yamauchi3f64f252015-06-12 18:35:06 -070052 GcRootSource gc_root_source(this);
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080053 return declaring_class_.Read<kReadBarrierOption>(&gc_root_source);
Mingyao Yang98d1cc82014-05-15 17:02:16 -070054}
55
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080056template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartiere401d142015-04-22 13:56:20 -070057inline mirror::Class* ArtMethod::GetDeclaringClass() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080058 mirror::Class* result = GetDeclaringClassUnchecked<kReadBarrierOption>();
Mathieu Chartiere401d142015-04-22 13:56:20 -070059 if (kIsDebugBuild) {
60 if (!IsRuntimeMethod()) {
61 CHECK(result != nullptr) << this;
Andreas Gampeb1106e22017-02-23 11:34:48 -080062 if (kCheckDeclaringClassState) {
Nicolas Geoffray4c0b4bc2017-03-17 13:08:26 +000063 if (!(result->IsIdxLoaded() || result->IsErroneous())) {
64 LOG(FATAL_WITHOUT_ABORT) << "Class status: " << result->GetStatus();
65 LOG(FATAL) << result->PrettyClass();
66 }
Andreas Gampeb1106e22017-02-23 11:34:48 -080067 }
Mathieu Chartiere401d142015-04-22 13:56:20 -070068 } else {
69 CHECK(result == nullptr) << this;
70 }
71 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080072 return result;
73}
74
Mathieu Chartier28357fa2016-10-18 16:27:40 -070075inline void ArtMethod::SetDeclaringClass(ObjPtr<mirror::Class> new_declaring_class) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070076 declaring_class_ = GcRoot<mirror::Class>(new_declaring_class);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080077}
78
Mathieu Chartier10e5ea92015-08-13 12:56:31 -070079inline bool ArtMethod::CASDeclaringClass(mirror::Class* expected_class,
80 mirror::Class* desired_class) {
81 GcRoot<mirror::Class> expected_root(expected_class);
82 GcRoot<mirror::Class> desired_root(desired_class);
83 return reinterpret_cast<Atomic<GcRoot<mirror::Class>>*>(&declaring_class_)->
84 CompareExchangeStrongSequentiallyConsistent(
85 expected_root, desired_root);
86}
87
Ian Rogersef7d42f2014-01-06 12:55:46 -080088inline uint16_t ArtMethod::GetMethodIndex() {
Vladimir Marko72ab6842017-01-20 19:32:50 +000089 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsResolved());
Mathieu Chartiere401d142015-04-22 13:56:20 -070090 return method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091}
92
Mathieu Chartier9f3629d2014-10-28 18:23:02 -070093inline uint16_t ArtMethod::GetMethodIndexDuringLinking() {
Mathieu Chartiere401d142015-04-22 13:56:20 -070094 return method_index_;
Mathieu Chartier9f3629d2014-10-28 18:23:02 -070095}
96
Ian Rogersef7d42f2014-01-06 12:55:46 -080097inline uint32_t ArtMethod::GetDexMethodIndex() {
Andreas Gampeb1106e22017-02-23 11:34:48 -080098 if (kCheckDeclaringClassState) {
99 CHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() ||
100 GetDeclaringClass()->IsErroneous());
101 }
Nicolas Geoffray5d37c152017-01-12 13:25:19 +0000102 return GetDexMethodIndexUnchecked();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800103}
104
Andreas Gampe542451c2016-07-26 09:02:02 -0700105inline ArtMethod** ArtMethod::GetDexCacheResolvedMethods(PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100106 return GetNativePointer<ArtMethod**>(DexCacheResolvedMethodsOffset(pointer_size),
107 pointer_size);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700108}
109
Andreas Gampe542451c2016-07-26 09:02:02 -0700110inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index,
111 PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100112 // NOTE: Unchecked, i.e. not throwing AIOOB. We don't even know the length here
113 // without accessing the DexCache and we don't want to do that in release build.
114 DCHECK_LT(method_index,
Alex Lightdba61482016-12-21 08:20:29 -0800115 GetInterfaceMethodIfProxy(pointer_size)->GetDexCache()->NumResolvedMethods());
Andreas Gampe542451c2016-07-26 09:02:02 -0700116 ArtMethod* method = mirror::DexCache::GetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
Vladimir Marko05792b92015-08-03 11:56:49 +0100117 method_index,
Andreas Gampe542451c2016-07-26 09:02:02 -0700118 pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700119 if (LIKELY(method != nullptr)) {
120 auto* declaring_class = method->GetDeclaringClass();
121 if (LIKELY(declaring_class == nullptr || !declaring_class->IsErroneous())) {
122 return method;
123 }
Andreas Gampe58a5af82014-07-31 16:23:49 -0700124 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700125 return nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700126}
127
Andreas Gampe542451c2016-07-26 09:02:02 -0700128inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_index,
129 ArtMethod* new_method,
130 PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100131 // NOTE: Unchecked, i.e. not throwing AIOOB. We don't even know the length here
132 // without accessing the DexCache and we don't want to do that in release build.
133 DCHECK_LT(method_index,
Alex Lightdba61482016-12-21 08:20:29 -0800134 GetInterfaceMethodIfProxy(pointer_size)->GetDexCache()->NumResolvedMethods());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700135 DCHECK(new_method == nullptr || new_method->GetDeclaringClass() != nullptr);
Andreas Gampe542451c2016-07-26 09:02:02 -0700136 mirror::DexCache::SetElementPtrSize(GetDexCacheResolvedMethods(pointer_size),
Vladimir Marko05792b92015-08-03 11:56:49 +0100137 method_index,
138 new_method,
Andreas Gampe542451c2016-07-26 09:02:02 -0700139 pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700140}
141
Andreas Gampe542451c2016-07-26 09:02:02 -0700142inline bool ArtMethod::HasDexCacheResolvedMethods(PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100143 return GetDexCacheResolvedMethods(pointer_size) != nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700144}
145
Vladimir Marko05792b92015-08-03 11:56:49 +0100146inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod** other_cache,
Andreas Gampe542451c2016-07-26 09:02:02 -0700147 PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100148 return GetDexCacheResolvedMethods(pointer_size) == other_cache;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700149}
150
Andreas Gampe542451c2016-07-26 09:02:02 -0700151inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other, PointerSize pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100152 return GetDexCacheResolvedMethods(pointer_size) ==
153 other->GetDexCacheResolvedMethods(pointer_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700154}
155
Vladimir Marko942fd312017-01-16 20:52:19 +0000156inline mirror::Class* ArtMethod::GetClassFromTypeIndex(dex::TypeIndex type_idx, bool resolve) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000157 // TODO: Refactor this function into two functions, Resolve...() and Lookup...()
158 // so that we can properly annotate it with no-suspension possible / suspension possible.
Vladimir Marko942fd312017-01-16 20:52:19 +0000159 ObjPtr<mirror::DexCache> dex_cache = GetDexCache();
160 ObjPtr<mirror::Class> type = dex_cache->GetResolvedType(type_idx);
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000161 if (UNLIKELY(type == nullptr)) {
Vladimir Marko942fd312017-01-16 20:52:19 +0000162 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000163 if (resolve) {
164 type = class_linker->ResolveType(type_idx, this);
165 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
166 } else {
167 type = class_linker->LookupResolvedType(
168 *dex_cache->GetDexFile(), type_idx, dex_cache, GetClassLoader());
169 }
Ian Rogersa0485602014-12-02 15:48:04 -0800170 }
Vladimir Marko942fd312017-01-16 20:52:19 +0000171 return type.Ptr();
Ian Rogersa0485602014-12-02 15:48:04 -0800172}
173
Brian Carlstromea46f952013-07-30 01:26:50 -0700174inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800175 switch (type) {
176 case kStatic:
177 return !IsStatic();
178 case kDirect:
179 return !IsDirect() || IsStatic();
180 case kVirtual: {
Alex Lightd6e0fa92016-10-17 13:02:39 -0700181 // We have an error if we are direct or a non-copied (i.e. not part of a real class) interface
182 // method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700183 mirror::Class* methods_class = GetDeclaringClass();
Alex Lightd6e0fa92016-10-17 13:02:39 -0700184 return IsDirect() || (methods_class->IsInterface() && !IsCopied());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800185 }
186 case kSuper:
Andreas Gampe8f252e62014-08-25 20:46:31 -0700187 // Constructors and static methods are called with invoke-direct.
Alex Light705ad492015-09-21 11:36:30 -0700188 return IsConstructor() || IsStatic();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800189 case kInterface: {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700190 mirror::Class* methods_class = GetDeclaringClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800191 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
192 }
193 default:
194 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700195 UNREACHABLE();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 }
197}
198
Ian Rogersef7d42f2014-01-06 12:55:46 -0800199inline bool ArtMethod::IsCalleeSaveMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800200 if (!IsRuntimeMethod()) {
201 return false;
202 }
203 Runtime* runtime = Runtime::Current();
204 bool result = false;
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700205 for (uint32_t i = 0; i < static_cast<uint32_t>(CalleeSaveType::kLastCalleeSaveType); i++) {
206 if (this == runtime->GetCalleeSaveMethod(CalleeSaveType(i))) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800207 result = true;
208 break;
209 }
210 }
211 return result;
212}
213
Ian Rogersef7d42f2014-01-06 12:55:46 -0800214inline bool ArtMethod::IsResolutionMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800215 bool result = this == Runtime::Current()->GetResolutionMethod();
216 // Check that if we do think it is phony it looks like the resolution method.
217 DCHECK(!result || IsRuntimeMethod());
218 return result;
219}
Jeff Hao88474b42013-10-23 16:24:40 -0700220
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700221inline bool ArtMethod::IsImtUnimplementedMethod() {
222 bool result = this == Runtime::Current()->GetImtUnimplementedMethod();
223 // Check that if we do think it is phony it looks like the imt unimplemented method.
224 DCHECK(!result || IsRuntimeMethod());
225 return result;
226}
227
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700228inline const DexFile* ArtMethod::GetDexFile() {
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800229 // It is safe to avoid the read barrier here since the dex file is constant, so if we read the
230 // from-space dex file pointer it will be equal to the to-space copy.
231 return GetDexCache<kWithoutReadBarrier>()->GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700232}
233
234inline const char* ArtMethod::GetDeclaringClassDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700235 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700236 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
237 return "<runtime method>";
238 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700239 DCHECK(!IsProxyMethod());
240 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700241 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
242}
243
Andreas Gampec6ea7d02017-02-01 16:46:28 -0800244inline const char* ArtMethod::GetShorty() {
245 uint32_t unused_length;
246 return GetShorty(&unused_length);
247}
248
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700249inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000250 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700251 const DexFile* dex_file = GetDexFile();
252 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700253}
254
255inline const Signature ArtMethod::GetSignature() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700256 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700257 if (dex_method_idx != DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700258 DCHECK(!IsProxyMethod());
259 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700260 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
261 }
262 return Signature::NoSignature();
263}
264
Ian Rogers1ff3c982014-08-12 02:30:58 -0700265inline const char* ArtMethod::GetName() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700266 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700267 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700268 DCHECK(!IsProxyMethod());
269 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700270 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
271 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700272 Runtime* const runtime = Runtime::Current();
273 if (this == runtime->GetResolutionMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700274 return "<runtime internal resolution method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700275 } else if (this == runtime->GetImtConflictMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700276 return "<runtime internal imt conflict method>";
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700277 } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveAllCalleeSaves)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700278 return "<runtime internal callee-save all registers method>";
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700279 } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsOnly)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700280 return "<runtime internal callee-save reference registers method>";
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700281 } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveRefsAndArgs)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700282 return "<runtime internal callee-save reference and argument registers method>";
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700283 } else if (this == runtime->GetCalleeSaveMethod(CalleeSaveType::kSaveEverything)) {
284 return "<runtime internal save-every-register method>";
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700285 } else {
286 return "<unknown runtime internal method>";
287 }
288}
289
290inline const DexFile::CodeItem* ArtMethod::GetCodeItem() {
Alex Lightdba61482016-12-21 08:20:29 -0800291 return GetDexFile()->GetCodeItem(GetCodeItemOffset());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700292}
293
Vladimir Marko942fd312017-01-16 20:52:19 +0000294inline bool ArtMethod::IsResolvedTypeIdx(dex::TypeIndex type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700295 DCHECK(!IsProxyMethod());
Vladimir Marko942fd312017-01-16 20:52:19 +0000296 return GetClassFromTypeIndex(type_idx, /* resolve */ false) != nullptr;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700297}
298
299inline int32_t ArtMethod::GetLineNumFromDexPC(uint32_t dex_pc) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700300 DCHECK(!IsProxyMethod());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700301 if (dex_pc == DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700302 return IsNative() ? -2 : -1;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700303 }
David Sehr9323e6e2016-09-13 08:58:35 -0700304 return annotations::GetLineNumFromPC(GetDexFile(), this, dex_pc);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700305}
306
307inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700308 DCHECK(!IsProxyMethod());
309 const DexFile* dex_file = GetDexFile();
310 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700311}
312
313inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() {
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000314 DCHECK(!IsProxyMethod());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700315 const DexFile* dex_file = GetDexFile();
Nicolas Geoffray3a090922015-11-24 09:17:30 +0000316 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
317 dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700318 return dex_file->GetProtoParameters(proto);
319}
320
321inline const char* ArtMethod::GetDeclaringClassSourceFile() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700322 DCHECK(!IsProxyMethod());
323 return GetDeclaringClass()->GetSourceFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700324}
325
326inline uint16_t ArtMethod::GetClassDefIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700327 DCHECK(!IsProxyMethod());
Alex Lightf2f1c9d2017-03-15 15:35:46 +0000328 if (LIKELY(!IsObsolete())) {
329 return GetDeclaringClass()->GetDexClassDefIndex();
330 } else {
331 return FindObsoleteDexClassDefIndex();
332 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700333}
334
335inline const DexFile::ClassDef& ArtMethod::GetClassDef() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336 DCHECK(!IsProxyMethod());
337 return GetDexFile()->GetClassDef(GetClassDefIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700338}
339
340inline const char* ArtMethod::GetReturnTypeDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700341 DCHECK(!IsProxyMethod());
342 const DexFile* dex_file = GetDexFile();
343 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700344 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -0800345 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(proto_id.return_type_idx_));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700346}
347
Alex Lightd7661582017-05-01 13:48:16 -0700348inline Primitive::Type ArtMethod::GetReturnTypePrimitive() {
349 return Primitive::GetType(GetReturnTypeDescriptor()[0]);
350}
351
Andreas Gampea5b09a62016-11-17 15:21:22 -0800352inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(dex::TypeIndex type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700353 DCHECK(!IsProxyMethod());
354 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700355 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx));
356}
357
358inline mirror::ClassLoader* ArtMethod::GetClassLoader() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700359 DCHECK(!IsProxyMethod());
360 return GetDeclaringClass()->GetClassLoader();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700361}
362
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800363template <ReadBarrierOption kReadBarrierOption>
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700364inline mirror::DexCache* ArtMethod::GetDexCache() {
Alex Lightdba61482016-12-21 08:20:29 -0800365 if (LIKELY(!IsObsolete())) {
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800366 mirror::Class* klass = GetDeclaringClass<kReadBarrierOption>();
367 return klass->GetDexCache<kDefaultVerifyFlags, kReadBarrierOption>();
Alex Lightdba61482016-12-21 08:20:29 -0800368 } else {
369 DCHECK(!IsProxyMethod());
370 return GetObsoleteDexCache();
Alex Lighta01de592016-11-15 10:43:06 -0800371 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700372}
373
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700374inline bool ArtMethod::IsProxyMethod() {
Mathieu Chartier90c5a9b2017-02-01 13:10:06 -0800375 // Avoid read barrier since the from-space version of the class will have the correct proxy class
376 // flags since they are constant for the lifetime of the class.
377 return GetDeclaringClass<kWithoutReadBarrier>()->IsProxyClass();
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700378}
379
Andreas Gampe542451c2016-07-26 09:02:02 -0700380inline ArtMethod* ArtMethod::GetInterfaceMethodIfProxy(PointerSize pointer_size) {
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700381 if (LIKELY(!IsProxyMethod())) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700382 return this;
383 }
Vladimir Marko05792b92015-08-03 11:56:49 +0100384 ArtMethod* interface_method = mirror::DexCache::GetElementPtrSize(
385 GetDexCacheResolvedMethods(pointer_size),
386 GetDexMethodIndex(),
387 pointer_size);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700388 DCHECK(interface_method != nullptr);
389 DCHECK_EQ(interface_method,
Mathieu Chartier137cdfa2017-01-26 14:03:11 -0800390 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700391 return interface_method;
392}
393
Vladimir Marko05792b92015-08-03 11:56:49 +0100394inline void ArtMethod::SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods,
Andreas Gampe542451c2016-07-26 09:02:02 -0700395 PointerSize pointer_size) {
396 SetNativePointer(DexCacheResolvedMethodsOffset(pointer_size),
397 new_dex_cache_methods,
398 pointer_size);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700399}
400
Vladimir Marko942fd312017-01-16 20:52:19 +0000401inline mirror::Class* ArtMethod::GetReturnType(bool resolve) {
Ian Rogersded66a02014-10-28 18:12:55 -0700402 DCHECK(!IsProxyMethod());
403 const DexFile* dex_file = GetDexFile();
404 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
405 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -0800406 dex::TypeIndex return_type_idx = proto_id.return_type_idx_;
Vladimir Marko942fd312017-01-16 20:52:19 +0000407 return GetClassFromTypeIndex(return_type_idx, resolve);
Ian Rogersded66a02014-10-28 18:12:55 -0700408}
409
Mingyao Yang063fc772016-08-02 11:02:54 -0700410inline bool ArtMethod::HasSingleImplementation() {
411 if (IsFinal() || GetDeclaringClass()->IsFinal()) {
412 // We don't set kAccSingleImplementation for these cases since intrinsic
413 // can use the flag also.
414 return true;
415 }
416 return (GetAccessFlags() & kAccSingleImplementation) != 0;
417}
418
419inline void ArtMethod::SetIntrinsic(uint32_t intrinsic) {
420 DCHECK(IsUint<8>(intrinsic));
421 // Currently we only do intrinsics for static/final methods or methods of final
422 // classes. We don't set kHasSingleImplementation for those methods.
423 DCHECK(IsStatic() || IsFinal() || GetDeclaringClass()->IsFinal()) <<
424 "Potential conflict with kAccSingleImplementation";
425 uint32_t new_value = (GetAccessFlags() & kAccFlagsNotUsedByIntrinsic) |
426 kAccIntrinsic |
427 (intrinsic << POPCOUNT(kAccFlagsNotUsedByIntrinsic));
428 if (kIsDebugBuild) {
429 uint32_t java_flags = (GetAccessFlags() & kAccJavaFlagsMask);
430 bool is_constructor = IsConstructor();
431 bool is_synchronized = IsSynchronized();
432 bool skip_access_checks = SkipAccessChecks();
433 bool is_fast_native = IsFastNative();
434 bool is_copied = IsCopied();
435 bool is_miranda = IsMiranda();
436 bool is_default = IsDefault();
437 bool is_default_conflict = IsDefaultConflicting();
438 bool is_compilable = IsCompilable();
439 bool must_count_locks = MustCountLocks();
440 SetAccessFlags(new_value);
441 DCHECK_EQ(java_flags, (GetAccessFlags() & kAccJavaFlagsMask));
442 DCHECK_EQ(is_constructor, IsConstructor());
443 DCHECK_EQ(is_synchronized, IsSynchronized());
444 DCHECK_EQ(skip_access_checks, SkipAccessChecks());
445 DCHECK_EQ(is_fast_native, IsFastNative());
446 DCHECK_EQ(is_copied, IsCopied());
447 DCHECK_EQ(is_miranda, IsMiranda());
448 DCHECK_EQ(is_default, IsDefault());
449 DCHECK_EQ(is_default_conflict, IsDefaultConflicting());
450 DCHECK_EQ(is_compilable, IsCompilable());
451 DCHECK_EQ(must_count_locks, MustCountLocks());
452 } else {
453 SetAccessFlags(new_value);
454 }
455}
456
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700457template<ReadBarrierOption kReadBarrierOption, typename RootVisitorType>
Andreas Gampe542451c2016-07-26 09:02:02 -0700458void ArtMethod::VisitRoots(RootVisitorType& visitor, PointerSize pointer_size) {
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700459 if (LIKELY(!declaring_class_.IsNull())) {
460 visitor.VisitRoot(declaring_class_.AddressWithoutBarrier());
461 mirror::Class* klass = declaring_class_.Read<kReadBarrierOption>();
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000462 if (UNLIKELY(klass->IsProxyClass())) {
463 // For normal methods, dex cache shortcuts will be visited through the declaring class.
464 // However, for proxies we need to keep the interface method alive, so we visit its roots.
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700465 ArtMethod* interface_method = mirror::DexCache::GetElementPtrSize(
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000466 GetDexCacheResolvedMethods(pointer_size),
467 GetDexMethodIndex(),
468 pointer_size);
469 DCHECK(interface_method != nullptr);
470 DCHECK_EQ(interface_method,
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700471 Runtime::Current()->GetClassLinker()->FindMethodForProxy<kReadBarrierOption>(
472 klass, this));
Nicolas Geoffraydec3a122016-02-13 12:38:36 +0000473 interface_method->VisitRoots(visitor, pointer_size);
474 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100475 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800476}
477
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800478template <typename Visitor>
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800479inline void ArtMethod::UpdateObjectsForImageRelocation(const Visitor& visitor,
Andreas Gampe542451c2016-07-26 09:02:02 -0700480 PointerSize pointer_size) {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800481 mirror::Class* old_class = GetDeclaringClassUnchecked<kWithoutReadBarrier>();
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800482 mirror::Class* new_class = visitor(old_class);
483 if (old_class != new_class) {
484 SetDeclaringClass(new_class);
485 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800486 ArtMethod** old_methods = GetDexCacheResolvedMethods(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800487 ArtMethod** new_methods = visitor(old_methods);
488 if (old_methods != new_methods) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800489 SetDexCacheResolvedMethods(new_methods, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800490 }
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800491}
492
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800493template <ReadBarrierOption kReadBarrierOption, typename Visitor>
Andreas Gampe542451c2016-07-26 09:02:02 -0700494inline void ArtMethod::UpdateEntrypoints(const Visitor& visitor, PointerSize pointer_size) {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800495 if (IsNative<kReadBarrierOption>()) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800496 const void* old_native_code = GetEntryPointFromJniPtrSize(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800497 const void* new_native_code = visitor(old_native_code);
498 if (old_native_code != new_native_code) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800499 SetEntryPointFromJniPtrSize(new_native_code, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800500 }
501 } else {
Andreas Gampe75f08852016-07-19 08:06:07 -0700502 DCHECK(GetDataPtrSize(pointer_size) == nullptr);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800503 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800504 const void* old_code = GetEntryPointFromQuickCompiledCodePtrSize(pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800505 const void* new_code = visitor(old_code);
506 if (old_code != new_code) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800507 SetEntryPointFromQuickCompiledCodePtrSize(new_code, pointer_size);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800508 }
509}
510
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800511} // namespace art
512
Mathieu Chartiere401d142015-04-22 13:56:20 -0700513#endif // ART_RUNTIME_ART_METHOD_INL_H_