blob: ad1ecea0bcdb3def28e081bd0ff1525aa873941c [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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "dex_file.h"
Elliott Hughes956af0f2014-12-11 14:34:28 -080024#include "dex_file-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "gc_root-inl.h"
26#include "mirror/class-inl.h"
27#include "mirror/dex_cache.h"
28#include "mirror/object-inl.h"
29#include "mirror/object_array.h"
Vladimir Marko96c6ab92014-04-08 14:00:50 +010030#include "oat.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010031#include "quick/quick_method_frame_info.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070032#include "read_barrier-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010033#include "runtime-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010034#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035
36namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037
Mathieu Chartiere401d142015-04-22 13:56:20 -070038inline mirror::Class* ArtMethod::GetDeclaringClassUnchecked() {
39 return declaring_class_.Read();
Mingyao Yang98d1cc82014-05-15 17:02:16 -070040}
41
Mathieu Chartiere401d142015-04-22 13:56:20 -070042inline mirror::Class* ArtMethod::GetDeclaringClassNoBarrier() {
43 return declaring_class_.Read<kWithoutReadBarrier>();
Mingyao Yang98d1cc82014-05-15 17:02:16 -070044}
45
Mathieu Chartiere401d142015-04-22 13:56:20 -070046inline mirror::Class* ArtMethod::GetDeclaringClass() {
47 mirror::Class* result = GetDeclaringClassUnchecked();
48 if (kIsDebugBuild) {
49 if (!IsRuntimeMethod()) {
50 CHECK(result != nullptr) << this;
51 CHECK(result->IsIdxLoaded() || result->IsErroneous())
52 << result->GetStatus() << " " << PrettyClass(result);
53 } else {
54 CHECK(result == nullptr) << this;
55 }
56 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080057 return result;
58}
59
Mathieu Chartiere401d142015-04-22 13:56:20 -070060inline void ArtMethod::SetDeclaringClass(mirror::Class* new_declaring_class) {
61 declaring_class_ = GcRoot<mirror::Class>(new_declaring_class);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080062}
63
Ian Rogersef7d42f2014-01-06 12:55:46 -080064inline uint32_t ArtMethod::GetAccessFlags() {
Mathieu Chartiere401d142015-04-22 13:56:20 -070065 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() ||
66 GetDeclaringClass()->IsErroneous());
67 return access_flags_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080068}
69
Ian Rogersef7d42f2014-01-06 12:55:46 -080070inline uint16_t ArtMethod::GetMethodIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -070071 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsResolved() ||
72 GetDeclaringClass()->IsErroneous());
73 return method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080074}
75
Mathieu Chartier9f3629d2014-10-28 18:23:02 -070076inline uint16_t ArtMethod::GetMethodIndexDuringLinking() {
Mathieu Chartiere401d142015-04-22 13:56:20 -070077 return method_index_;
Mathieu Chartier9f3629d2014-10-28 18:23:02 -070078}
79
Ian Rogersef7d42f2014-01-06 12:55:46 -080080inline uint32_t ArtMethod::GetDexMethodIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -070081 DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() ||
82 GetDeclaringClass()->IsErroneous());
83 return dex_method_index_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080084}
85
Mathieu Chartiere401d142015-04-22 13:56:20 -070086inline mirror::PointerArray* ArtMethod::GetDexCacheResolvedMethods() {
87 return dex_cache_resolved_methods_.Read();
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070088}
89
Mathieu Chartiere401d142015-04-22 13:56:20 -070090inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size) {
91 auto* method = GetDexCacheResolvedMethods()->GetElementPtrSize<ArtMethod*>(
92 method_index, ptr_size);
93 if (LIKELY(method != nullptr)) {
94 auto* declaring_class = method->GetDeclaringClass();
95 if (LIKELY(declaring_class == nullptr || !declaring_class->IsErroneous())) {
96 return method;
97 }
Andreas Gampe58a5af82014-07-31 16:23:49 -070098 }
Mathieu Chartiere401d142015-04-22 13:56:20 -070099 return nullptr;
Andreas Gampe58a5af82014-07-31 16:23:49 -0700100}
101
Mathieu Chartiere401d142015-04-22 13:56:20 -0700102inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_idx, ArtMethod* new_method,
103 size_t ptr_size) {
104 DCHECK(new_method == nullptr || new_method->GetDeclaringClass() != nullptr);
105 GetDexCacheResolvedMethods()->SetElementPtrSize(method_idx, new_method, ptr_size);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700106}
107
108inline bool ArtMethod::HasDexCacheResolvedMethods() {
109 return GetDexCacheResolvedMethods() != nullptr;
110}
111
Mathieu Chartiere401d142015-04-22 13:56:20 -0700112inline bool ArtMethod::HasSameDexCacheResolvedMethods(mirror::PointerArray* other_cache) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700113 return GetDexCacheResolvedMethods() == other_cache;
114}
115
116inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other) {
117 return GetDexCacheResolvedMethods() == other->GetDexCacheResolvedMethods();
118}
119
Mathieu Chartiere401d142015-04-22 13:56:20 -0700120inline mirror::ObjectArray<mirror::Class>* ArtMethod::GetDexCacheResolvedTypes() {
121 return dex_cache_resolved_types_.Read();
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700122}
123
Andreas Gampe58a5af82014-07-31 16:23:49 -0700124template <bool kWithCheck>
Mathieu Chartiere401d142015-04-22 13:56:20 -0700125inline mirror::Class* ArtMethod::GetDexCacheResolvedType(uint32_t type_index) {
126 mirror::Class* klass = kWithCheck ?
127 GetDexCacheResolvedTypes()->Get(type_index) :
128 GetDexCacheResolvedTypes()->GetWithoutChecks(type_index);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700129 return (klass != nullptr && !klass->IsErroneous()) ? klass : nullptr;
130}
131
132inline bool ArtMethod::HasDexCacheResolvedTypes() {
133 return GetDexCacheResolvedTypes() != nullptr;
134}
135
Mathieu Chartiere401d142015-04-22 13:56:20 -0700136inline bool ArtMethod::HasSameDexCacheResolvedTypes(
137 mirror::ObjectArray<mirror::Class>* other_cache) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700138 return GetDexCacheResolvedTypes() == other_cache;
139}
140
141inline bool ArtMethod::HasSameDexCacheResolvedTypes(ArtMethod* other) {
142 return GetDexCacheResolvedTypes() == other->GetDexCacheResolvedTypes();
143}
144
Ian Rogersa0485602014-12-02 15:48:04 -0800145inline mirror::Class* ArtMethod::GetClassFromTypeIndex(uint16_t type_idx, bool resolve) {
146 mirror::Class* type = GetDexCacheResolvedType(type_idx);
147 if (type == nullptr && resolve) {
148 type = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, this);
149 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
150 }
151 return type;
152}
153
Ian Rogersef7d42f2014-01-06 12:55:46 -0800154inline uint32_t ArtMethod::GetCodeSize() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800155 DCHECK(!IsRuntimeMethod() && !IsProxyMethod()) << PrettyMethod(this);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800156 return GetCodeSize(EntryPointToCodePointer(GetEntryPointFromQuickCompiledCode()));
157}
158
159inline uint32_t ArtMethod::GetCodeSize(const void* code) {
Vladimir Marko8a630572014-04-09 18:45:35 +0100160 if (code == nullptr) {
161 return 0u;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800162 }
Vladimir Marko7624d252014-05-02 14:40:15 +0100163 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].code_size_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800164}
165
Brian Carlstromea46f952013-07-30 01:26:50 -0700166inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800167 switch (type) {
168 case kStatic:
169 return !IsStatic();
170 case kDirect:
171 return !IsDirect() || IsStatic();
172 case kVirtual: {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700173 mirror::Class* methods_class = GetDeclaringClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800174 return IsDirect() || (methods_class->IsInterface() && !IsMiranda());
175 }
176 case kSuper:
Andreas Gampe8f252e62014-08-25 20:46:31 -0700177 // Constructors and static methods are called with invoke-direct.
178 // Interface methods cannot be invoked with invoke-super.
179 return IsConstructor() || IsStatic() || GetDeclaringClass()->IsInterface();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800180 case kInterface: {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700181 mirror::Class* methods_class = GetDeclaringClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800182 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
183 }
184 default:
185 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700186 UNREACHABLE();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800187 }
188}
189
Ian Rogersef7d42f2014-01-06 12:55:46 -0800190inline uint32_t ArtMethod::GetQuickOatCodeOffset() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800191 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800192 return PointerToLowMemUInt32(GetEntryPointFromQuickCompiledCode());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800193}
194
Ian Rogersef7d42f2014-01-06 12:55:46 -0800195inline void ArtMethod::SetQuickOatCodeOffset(uint32_t code_offset) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800197 SetEntryPointFromQuickCompiledCode(reinterpret_cast<void*>(code_offset));
198}
199
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800200inline const uint8_t* ArtMethod::GetMappingTable(size_t pointer_size) {
201 const void* code_pointer = GetQuickOatCodePointer(pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100202 if (code_pointer == nullptr) {
203 return nullptr;
204 }
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800205 return GetMappingTable(code_pointer, pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100206}
207
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800208inline const uint8_t* ArtMethod::GetMappingTable(const void* code_pointer, size_t pointer_size) {
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100209 DCHECK(code_pointer != nullptr);
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800210 DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size));
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100211 uint32_t offset =
212 reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].mapping_table_offset_;
213 if (UNLIKELY(offset == 0u)) {
214 return nullptr;
215 }
216 return reinterpret_cast<const uint8_t*>(code_pointer) - offset;
217}
218
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800219inline const uint8_t* ArtMethod::GetVmapTable(size_t pointer_size) {
220 const void* code_pointer = GetQuickOatCodePointer(pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100221 if (code_pointer == nullptr) {
222 return nullptr;
223 }
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800224 return GetVmapTable(code_pointer, pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100225}
226
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800227inline const uint8_t* ArtMethod::GetVmapTable(const void* code_pointer, size_t pointer_size) {
228 CHECK(!IsOptimized(pointer_size)) << "Unimplemented vmap table for optimized compiler";
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100229 DCHECK(code_pointer != nullptr);
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800230 DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size));
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100231 uint32_t offset =
232 reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].vmap_table_offset_;
233 if (UNLIKELY(offset == 0u)) {
234 return nullptr;
235 }
236 return reinterpret_cast<const uint8_t*>(code_pointer) - offset;
237}
238
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100239inline CodeInfo ArtMethod::GetOptimizedCodeInfo() {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800240 DCHECK(IsOptimized(sizeof(void*)));
241 const void* code_pointer = GetQuickOatCodePointer(sizeof(void*));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100242 DCHECK(code_pointer != nullptr);
243 uint32_t offset =
244 reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].vmap_table_offset_;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700245 const void* data =
246 reinterpret_cast<const void*>(reinterpret_cast<const uint8_t*>(code_pointer) - offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100247 return CodeInfo(data);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100248}
249
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800250inline const uint8_t* ArtMethod::GetNativeGcMap(size_t pointer_size) {
251 const void* code_pointer = GetQuickOatCodePointer(pointer_size);
252 if (code_pointer == nullptr) {
253 return nullptr;
254 }
255 return GetNativeGcMap(code_pointer, pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800256}
257
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800258inline const uint8_t* ArtMethod::GetNativeGcMap(const void* code_pointer, size_t pointer_size) {
259 DCHECK(code_pointer != nullptr);
260 DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size));
261 uint32_t offset =
262 reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].gc_map_offset_;
263 if (UNLIKELY(offset == 0u)) {
264 return nullptr;
265 }
266 return reinterpret_cast<const uint8_t*>(code_pointer) - offset;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800267}
268
Ian Rogersef7d42f2014-01-06 12:55:46 -0800269inline bool ArtMethod::IsRuntimeMethod() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700270 return dex_method_index_ == DexFile::kDexNoIndex;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800271}
272
Ian Rogersef7d42f2014-01-06 12:55:46 -0800273inline bool ArtMethod::IsCalleeSaveMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800274 if (!IsRuntimeMethod()) {
275 return false;
276 }
277 Runtime* runtime = Runtime::Current();
278 bool result = false;
279 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
280 if (this == runtime->GetCalleeSaveMethod(Runtime::CalleeSaveType(i))) {
281 result = true;
282 break;
283 }
284 }
285 return result;
286}
287
Ian Rogersef7d42f2014-01-06 12:55:46 -0800288inline bool ArtMethod::IsResolutionMethod() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800289 bool result = this == Runtime::Current()->GetResolutionMethod();
290 // Check that if we do think it is phony it looks like the resolution method.
291 DCHECK(!result || IsRuntimeMethod());
292 return result;
293}
Jeff Hao88474b42013-10-23 16:24:40 -0700294
Ian Rogersef7d42f2014-01-06 12:55:46 -0800295inline bool ArtMethod::IsImtConflictMethod() {
Jeff Hao88474b42013-10-23 16:24:40 -0700296 bool result = this == Runtime::Current()->GetImtConflictMethod();
297 // Check that if we do think it is phony it looks like the imt conflict method.
298 DCHECK(!result || IsRuntimeMethod());
299 return result;
300}
Mathieu Chartier4e305412014-02-19 10:54:44 -0800301
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700302inline bool ArtMethod::IsImtUnimplementedMethod() {
303 bool result = this == Runtime::Current()->GetImtUnimplementedMethod();
304 // Check that if we do think it is phony it looks like the imt unimplemented method.
305 DCHECK(!result || IsRuntimeMethod());
306 return result;
307}
308
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700309inline uintptr_t ArtMethod::NativeQuickPcOffset(const uintptr_t pc) {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800310 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(
311 this, sizeof(void*));
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100312 return pc - reinterpret_cast<uintptr_t>(code);
313}
314
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100315inline QuickMethodFrameInfo ArtMethod::GetQuickFrameInfo(const void* code_pointer) {
316 DCHECK(code_pointer != nullptr);
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800317 DCHECK_EQ(code_pointer, GetQuickOatCodePointer(sizeof(void*)));
Vladimir Marko7624d252014-05-02 14:40:15 +0100318 return reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].frame_info_;
319}
320
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700321inline const DexFile* ArtMethod::GetDexFile() {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700322 return GetDexCache()->GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700323}
324
325inline const char* ArtMethod::GetDeclaringClassDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700326 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700327 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
328 return "<runtime method>";
329 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700330 DCHECK(!IsProxyMethod());
331 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700332 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
333}
334
335inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700336 DCHECK(!IsProxyMethod());
337 const DexFile* dex_file = GetDexFile();
338 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700339}
340
341inline const Signature ArtMethod::GetSignature() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700342 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700343 if (dex_method_idx != DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700344 DCHECK(!IsProxyMethod());
345 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700346 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
347 }
348 return Signature::NoSignature();
349}
350
Ian Rogers1ff3c982014-08-12 02:30:58 -0700351inline const char* ArtMethod::GetName() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700352 uint32_t dex_method_idx = GetDexMethodIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700353 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700354 DCHECK(!IsProxyMethod());
355 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700356 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
357 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700358 Runtime* const runtime = Runtime::Current();
359 if (this == runtime->GetResolutionMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700360 return "<runtime internal resolution method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700361 } else if (this == runtime->GetImtConflictMethod()) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700362 return "<runtime internal imt conflict method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700363 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700364 return "<runtime internal callee-save all registers method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700365 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700366 return "<runtime internal callee-save reference registers method>";
Mathieu Chartiere401d142015-04-22 13:56:20 -0700367 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700368 return "<runtime internal callee-save reference and argument registers method>";
369 } else {
370 return "<unknown runtime internal method>";
371 }
372}
373
374inline const DexFile::CodeItem* ArtMethod::GetCodeItem() {
Mathieu Chartier12b3dd72014-12-11 13:25:33 -0800375 return GetDeclaringClass()->GetDexFile().GetCodeItem(GetCodeItemOffset());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700376}
377
378inline bool ArtMethod::IsResolvedTypeIdx(uint16_t type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700379 DCHECK(!IsProxyMethod());
380 return GetDexCacheResolvedType(type_idx) != nullptr;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700381}
382
383inline int32_t ArtMethod::GetLineNumFromDexPC(uint32_t dex_pc) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700384 DCHECK(!IsProxyMethod());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700385 if (dex_pc == DexFile::kDexNoIndex) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700386 return IsNative() ? -2 : -1;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700387 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700388 return GetDexFile()->GetLineNumFromPC(this, dex_pc);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700389}
390
391inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700392 DCHECK(!IsProxyMethod());
393 const DexFile* dex_file = GetDexFile();
394 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700395}
396
397inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700398 DCHECK(!IsProxyMethod());
399 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700400 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700401 dex_file->GetMethodId(GetDexMethodIndex()));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700402 return dex_file->GetProtoParameters(proto);
403}
404
405inline const char* ArtMethod::GetDeclaringClassSourceFile() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700406 DCHECK(!IsProxyMethod());
407 return GetDeclaringClass()->GetSourceFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700408}
409
410inline uint16_t ArtMethod::GetClassDefIndex() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700411 DCHECK(!IsProxyMethod());
412 return GetDeclaringClass()->GetDexClassDefIndex();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700413}
414
415inline const DexFile::ClassDef& ArtMethod::GetClassDef() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700416 DCHECK(!IsProxyMethod());
417 return GetDexFile()->GetClassDef(GetClassDefIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700418}
419
420inline const char* ArtMethod::GetReturnTypeDescriptor() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700421 DCHECK(!IsProxyMethod());
422 const DexFile* dex_file = GetDexFile();
423 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700424 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
425 uint16_t return_type_idx = proto_id.return_type_idx_;
426 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx));
427}
428
429inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(uint16_t type_idx) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700430 DCHECK(!IsProxyMethod());
431 const DexFile* dex_file = GetDexFile();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700432 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx));
433}
434
435inline mirror::ClassLoader* ArtMethod::GetClassLoader() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700436 DCHECK(!IsProxyMethod());
437 return GetDeclaringClass()->GetClassLoader();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700438}
439
440inline mirror::DexCache* ArtMethod::GetDexCache() {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700441 DCHECK(!IsProxyMethod());
442 return GetDeclaringClass()->GetDexCache();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700443}
444
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700445inline bool ArtMethod::IsProxyMethod() {
446 return GetDeclaringClass()->IsProxyClass();
447}
448
Mathieu Chartiere401d142015-04-22 13:56:20 -0700449inline ArtMethod* ArtMethod::GetInterfaceMethodIfProxy(size_t pointer_size) {
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700450 if (LIKELY(!IsProxyMethod())) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700451 return this;
452 }
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700453 mirror::Class* klass = GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700454 auto interface_method = GetDexCacheResolvedMethods()->GetElementPtrSize<ArtMethod*>(
455 GetDexMethodIndex(), pointer_size);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700456 DCHECK(interface_method != nullptr);
457 DCHECK_EQ(interface_method,
458 Runtime::Current()->GetClassLinker()->FindMethodForProxy(klass, this));
459 return interface_method;
460}
461
Mathieu Chartiere401d142015-04-22 13:56:20 -0700462inline void ArtMethod::SetDexCacheResolvedMethods(mirror::PointerArray* new_dex_cache_methods) {
463 dex_cache_resolved_methods_ = GcRoot<mirror::PointerArray>(new_dex_cache_methods);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700464}
465
Mathieu Chartiere401d142015-04-22 13:56:20 -0700466inline void ArtMethod::SetDexCacheResolvedTypes(
467 mirror::ObjectArray<mirror::Class>* new_dex_cache_types) {
468 dex_cache_resolved_types_ = GcRoot<mirror::ObjectArray<mirror::Class>>(new_dex_cache_types);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700469}
470
Ian Rogersded66a02014-10-28 18:12:55 -0700471inline mirror::Class* ArtMethod::GetReturnType(bool resolve) {
472 DCHECK(!IsProxyMethod());
473 const DexFile* dex_file = GetDexFile();
474 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
475 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
476 uint16_t return_type_idx = proto_id.return_type_idx_;
477 mirror::Class* type = GetDexCacheResolvedType(return_type_idx);
478 if (type == nullptr && resolve) {
479 type = Runtime::Current()->GetClassLinker()->ResolveType(return_type_idx, this);
480 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
481 }
482 return type;
483}
484
Mathieu Chartiere401d142015-04-22 13:56:20 -0700485template<typename RootVisitorType>
486void ArtMethod::VisitRoots(RootVisitorType& visitor) {
487 visitor.VisitRoot(declaring_class_.AddressWithoutBarrier());
488 visitor.VisitRoot(dex_cache_resolved_methods_.AddressWithoutBarrier());
489 visitor.VisitRoot(dex_cache_resolved_types_.AddressWithoutBarrier());
Mathieu Chartier2d721012014-11-10 11:08:06 -0800490}
491
Mathieu Chartiere401d142015-04-22 13:56:20 -0700492inline void ArtMethod::CopyFrom(const ArtMethod* src, size_t image_pointer_size) {
493 memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src),
494 ObjectSize(image_pointer_size));
495 declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass());
496 dex_cache_resolved_methods_ = GcRoot<mirror::PointerArray>(
497 const_cast<ArtMethod*>(src)->GetDexCacheResolvedMethods());
498 dex_cache_resolved_types_ = GcRoot<mirror::ObjectArray<mirror::Class>>(
499 const_cast<ArtMethod*>(src)->GetDexCacheResolvedTypes());
500}
501
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800502} // namespace art
503
Mathieu Chartiere401d142015-04-22 13:56:20 -0700504#endif // ART_RUNTIME_ART_METHOD_INL_H_