blob: 22d55e2a397099a9f47b9729a8bbca89bfe20c3c [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
Brian Carlstromea46f952013-07-30 01:26:50 -070017#ifndef ART_RUNTIME_MIRROR_ART_METHOD_INL_H_
18#define ART_RUNTIME_MIRROR_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"
23#include "class.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070024#include "class_linker.h"
25#include "dex_cache.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "dex_file.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070027#include "method_helper.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070028#include "object-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034
35namespace art {
36namespace mirror {
37
Mingyao Yang98d1cc82014-05-15 17:02:16 -070038inline uint32_t ArtMethod::ClassSize() {
39 uint32_t vtable_entries = Object::kVTableLength + 8;
Fred Shih37f05ef2014-07-16 18:38:08 -070040 return Class::ComputeClassSize(true, vtable_entries, 0, 0, 0, 0, 0);
Mingyao Yang98d1cc82014-05-15 17:02:16 -070041}
42
43template<ReadBarrierOption kReadBarrierOption>
44inline Class* ArtMethod::GetJavaLangReflectArtMethod() {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070045 DCHECK(!java_lang_reflect_ArtMethod_.IsNull());
46 return java_lang_reflect_ArtMethod_.Read<kReadBarrierOption>();
Mingyao Yang98d1cc82014-05-15 17:02:16 -070047}
48
Ian Rogersef7d42f2014-01-06 12:55:46 -080049inline Class* ArtMethod::GetDeclaringClass() {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070050 Class* result = GetFieldObject<Class>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, declaring_class_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051 DCHECK(result != NULL) << this;
52 DCHECK(result->IsIdxLoaded() || result->IsErroneous()) << this;
53 return result;
54}
55
Brian Carlstromea46f952013-07-30 01:26:50 -070056inline void ArtMethod::SetDeclaringClass(Class *new_declaring_class) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010057 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, declaring_class_),
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070058 new_declaring_class);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080059}
60
Ian Rogersef7d42f2014-01-06 12:55:46 -080061inline uint32_t ArtMethod::GetAccessFlags() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080062 DCHECK(GetDeclaringClass()->IsIdxLoaded() || GetDeclaringClass()->IsErroneous());
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070063 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, access_flags_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080064}
65
Ian Rogersef7d42f2014-01-06 12:55:46 -080066inline uint16_t ArtMethod::GetMethodIndex() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080067 DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous());
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070068 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069}
70
Mathieu Chartier9f3629d2014-10-28 18:23:02 -070071inline uint16_t ArtMethod::GetMethodIndexDuringLinking() {
72 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_));
73}
74
Ian Rogersef7d42f2014-01-06 12:55:46 -080075inline uint32_t ArtMethod::GetDexMethodIndex() {
Dragos Sbirlea90af14d2013-08-15 17:50:16 -070076#ifdef ART_SEA_IR_MODE
77 // TODO: Re-add this check for (PORTABLE + SMALL + ) SEA IR when PORTABLE IS fixed!
78 // DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
79#else
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080080 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Dragos Sbirlea90af14d2013-08-15 17:50:16 -070081#endif
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070082 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080083}
84
Ian Rogersef7d42f2014-01-06 12:55:46 -080085inline ObjectArray<ArtMethod>* ArtMethod::GetDexCacheResolvedMethods() {
Ian Rogers700a4022014-05-19 16:49:03 -070086 return GetFieldObject<ObjectArray<ArtMethod>>(
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070087 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_methods_));
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070088}
89
Andreas Gampe58a5af82014-07-31 16:23:49 -070090inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index) {
91 ArtMethod* method = GetDexCacheResolvedMethods()->Get(method_index);
92 if (method != nullptr && !method->GetDeclaringClass()->IsErroneous()) {
93 return method;
94 } else {
95 return nullptr;
96 }
97}
98
99inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_idx, ArtMethod* new_method) {
100 GetDexCacheResolvedMethods()->Set<false>(method_idx, new_method);
101}
102
103inline bool ArtMethod::HasDexCacheResolvedMethods() {
104 return GetDexCacheResolvedMethods() != nullptr;
105}
106
107inline bool ArtMethod::HasSameDexCacheResolvedMethods(ObjectArray<ArtMethod>* other_cache) {
108 return GetDexCacheResolvedMethods() == other_cache;
109}
110
111inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other) {
112 return GetDexCacheResolvedMethods() == other->GetDexCacheResolvedMethods();
113}
114
115
Ian Rogersef7d42f2014-01-06 12:55:46 -0800116inline ObjectArray<Class>* ArtMethod::GetDexCacheResolvedTypes() {
Ian Rogers700a4022014-05-19 16:49:03 -0700117 return GetFieldObject<ObjectArray<Class>>(
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700118 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_types_));
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700119}
120
Andreas Gampe58a5af82014-07-31 16:23:49 -0700121template <bool kWithCheck>
122inline Class* ArtMethod::GetDexCacheResolvedType(uint32_t type_index) {
123 Class* klass;
124 if (kWithCheck) {
125 klass = GetDexCacheResolvedTypes()->Get(type_index);
126 } else {
127 klass = GetDexCacheResolvedTypes()->GetWithoutChecks(type_index);
128 }
129 return (klass != nullptr && !klass->IsErroneous()) ? klass : nullptr;
130}
131
132inline bool ArtMethod::HasDexCacheResolvedTypes() {
133 return GetDexCacheResolvedTypes() != nullptr;
134}
135
136inline bool ArtMethod::HasSameDexCacheResolvedTypes(ObjectArray<Class>* other_cache) {
137 return GetDexCacheResolvedTypes() == other_cache;
138}
139
140inline bool ArtMethod::HasSameDexCacheResolvedTypes(ArtMethod* other) {
141 return GetDexCacheResolvedTypes() == other->GetDexCacheResolvedTypes();
142}
143
Ian Rogersef7d42f2014-01-06 12:55:46 -0800144inline uint32_t ArtMethod::GetCodeSize() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800145 DCHECK(!IsRuntimeMethod() && !IsProxyMethod()) << PrettyMethod(this);
Vladimir Marko8a630572014-04-09 18:45:35 +0100146 const void* code = EntryPointToCodePointer(GetEntryPointFromQuickCompiledCode());
147 if (code == nullptr) {
148 return 0u;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800149 }
Vladimir Marko7624d252014-05-02 14:40:15 +0100150 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].code_size_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800151}
152
Brian Carlstromea46f952013-07-30 01:26:50 -0700153inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800154 switch (type) {
155 case kStatic:
156 return !IsStatic();
157 case kDirect:
158 return !IsDirect() || IsStatic();
159 case kVirtual: {
160 Class* methods_class = GetDeclaringClass();
161 return IsDirect() || (methods_class->IsInterface() && !IsMiranda());
162 }
163 case kSuper:
Andreas Gampe8f252e62014-08-25 20:46:31 -0700164 // Constructors and static methods are called with invoke-direct.
165 // Interface methods cannot be invoked with invoke-super.
166 return IsConstructor() || IsStatic() || GetDeclaringClass()->IsInterface();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800167 case kInterface: {
168 Class* methods_class = GetDeclaringClass();
169 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
170 }
171 default:
172 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700173 UNREACHABLE();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800174 }
175}
176
Ian Rogersef7d42f2014-01-06 12:55:46 -0800177inline uint32_t ArtMethod::GetQuickOatCodeOffset() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800178 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800179 return PointerToLowMemUInt32(GetEntryPointFromQuickCompiledCode());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800180}
181
Ian Rogersef7d42f2014-01-06 12:55:46 -0800182inline uint32_t ArtMethod::GetPortableOatCodeOffset() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800183 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800184 return PointerToLowMemUInt32(GetEntryPointFromPortableCompiledCode());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800185}
186
Ian Rogersef7d42f2014-01-06 12:55:46 -0800187inline void ArtMethod::SetQuickOatCodeOffset(uint32_t code_offset) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800188 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800189 SetEntryPointFromQuickCompiledCode(reinterpret_cast<void*>(code_offset));
190}
191
192inline void ArtMethod::SetPortableOatCodeOffset(uint32_t code_offset) {
193 DCHECK(!Runtime::Current()->IsStarted());
194 SetEntryPointFromPortableCompiledCode(reinterpret_cast<void*>(code_offset));
195}
196
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800197inline const uint8_t* ArtMethod::GetMappingTable(size_t pointer_size) {
198 const void* code_pointer = GetQuickOatCodePointer(pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100199 if (code_pointer == nullptr) {
200 return nullptr;
201 }
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800202 return GetMappingTable(code_pointer, pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100203}
204
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800205inline const uint8_t* ArtMethod::GetMappingTable(const void* code_pointer, size_t pointer_size) {
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100206 DCHECK(code_pointer != nullptr);
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800207 DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size));
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100208 uint32_t offset =
209 reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].mapping_table_offset_;
210 if (UNLIKELY(offset == 0u)) {
211 return nullptr;
212 }
213 return reinterpret_cast<const uint8_t*>(code_pointer) - offset;
214}
215
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800216inline const uint8_t* ArtMethod::GetVmapTable(size_t pointer_size) {
217 const void* code_pointer = GetQuickOatCodePointer(pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100218 if (code_pointer == nullptr) {
219 return nullptr;
220 }
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800221 return GetVmapTable(code_pointer, pointer_size);
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100222}
223
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800224inline const uint8_t* ArtMethod::GetVmapTable(const void* code_pointer, size_t pointer_size) {
225 CHECK(!IsOptimized(pointer_size)) << "Unimplemented vmap table for optimized compiler";
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100226 DCHECK(code_pointer != nullptr);
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800227 DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size));
Vladimir Marko4c1c5102014-05-14 16:51:16 +0100228 uint32_t offset =
229 reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].vmap_table_offset_;
230 if (UNLIKELY(offset == 0u)) {
231 return nullptr;
232 }
233 return reinterpret_cast<const uint8_t*>(code_pointer) - offset;
234}
235
Nicolas Geoffray39468442014-09-02 15:17:15 +0100236inline StackMap ArtMethod::GetStackMap(uint32_t native_pc_offset) {
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +0100237 return GetOptimizedCodeInfo().GetStackMapForNativePcOffset(native_pc_offset);
238}
239
240inline CodeInfo ArtMethod::GetOptimizedCodeInfo() {
Mathieu Chartiera7dd0382014-11-20 17:08:58 -0800241 DCHECK(IsOptimized(sizeof(void*)));
242 const void* code_pointer = GetQuickOatCodePointer(sizeof(void*));
Nicolas Geoffray39468442014-09-02 15:17:15 +0100243 DCHECK(code_pointer != nullptr);
244 uint32_t offset =
245 reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].vmap_table_offset_;
246 const void* data = 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() {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700270 return GetDexMethodIndex() == 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() {
326 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
327 uint32_t dex_method_idx = method->GetDexMethodIndex();
328 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
329 return "<runtime method>";
330 }
331 const DexFile* dex_file = method->GetDexFile();
332 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
333}
334
335inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
336 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
337 const DexFile* dex_file = method->GetDexFile();
338 return dex_file->GetMethodShorty(dex_file->GetMethodId(method->GetDexMethodIndex()), out_length);
339}
340
341inline const Signature ArtMethod::GetSignature() {
342 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
343 uint32_t dex_method_idx = method->GetDexMethodIndex();
344 if (dex_method_idx != DexFile::kDexNoIndex) {
345 const DexFile* dex_file = method->GetDexFile();
346 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 Chartierbfd9a432014-05-21 17:43:44 -0700352 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
353 uint32_t dex_method_idx = method->GetDexMethodIndex();
354 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
355 const DexFile* dex_file = method->GetDexFile();
356 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
357 }
358 Runtime* runtime = Runtime::Current();
359 if (method == runtime->GetResolutionMethod()) {
360 return "<runtime internal resolution method>";
361 } else if (method == runtime->GetImtConflictMethod()) {
362 return "<runtime internal imt conflict method>";
363 } else if (method == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) {
364 return "<runtime internal callee-save all registers method>";
365 } else if (method == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) {
366 return "<runtime internal callee-save reference registers method>";
367 } else if (method == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) {
368 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() {
375 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
376 return method->GetDexFile()->GetCodeItem(method->GetCodeItemOffset());
377}
378
379inline bool ArtMethod::IsResolvedTypeIdx(uint16_t type_idx) {
380 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
Andreas Gampe58a5af82014-07-31 16:23:49 -0700381 return method->GetDexCacheResolvedType(type_idx) != nullptr;
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700382}
383
384inline int32_t ArtMethod::GetLineNumFromDexPC(uint32_t dex_pc) {
385 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
386 if (dex_pc == DexFile::kDexNoIndex) {
387 return method->IsNative() ? -2 : -1;
388 }
389 return method->GetDexFile()->GetLineNumFromPC(method, dex_pc);
390}
391
392inline const DexFile::ProtoId& ArtMethod::GetPrototype() {
393 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
394 const DexFile* dex_file = method->GetDexFile();
395 return dex_file->GetMethodPrototype(dex_file->GetMethodId(method->GetDexMethodIndex()));
396}
397
398inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() {
399 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
400 const DexFile* dex_file = method->GetDexFile();
401 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype(
402 dex_file->GetMethodId(method->GetDexMethodIndex()));
403 return dex_file->GetProtoParameters(proto);
404}
405
406inline const char* ArtMethod::GetDeclaringClassSourceFile() {
407 return GetInterfaceMethodIfProxy()->GetDeclaringClass()->GetSourceFile();
408}
409
410inline uint16_t ArtMethod::GetClassDefIndex() {
411 return GetInterfaceMethodIfProxy()->GetDeclaringClass()->GetDexClassDefIndex();
412}
413
414inline const DexFile::ClassDef& ArtMethod::GetClassDef() {
415 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
416 return method->GetDexFile()->GetClassDef(GetClassDefIndex());
417}
418
419inline const char* ArtMethod::GetReturnTypeDescriptor() {
420 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
421 const DexFile* dex_file = method->GetDexFile();
422 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex());
423 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
424 uint16_t return_type_idx = proto_id.return_type_idx_;
425 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx));
426}
427
428inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(uint16_t type_idx) {
429 mirror::ArtMethod* method = GetInterfaceMethodIfProxy();
430 const DexFile* dex_file = method->GetDexFile();
431 return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx));
432}
433
434inline mirror::ClassLoader* ArtMethod::GetClassLoader() {
435 return GetInterfaceMethodIfProxy()->GetDeclaringClass()->GetClassLoader();
436}
437
438inline mirror::DexCache* ArtMethod::GetDexCache() {
439 return GetInterfaceMethodIfProxy()->GetDeclaringClass()->GetDexCache();
440}
441
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700442inline bool ArtMethod::IsProxyMethod() {
443 return GetDeclaringClass()->IsProxyClass();
444}
445
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700446inline ArtMethod* ArtMethod::GetInterfaceMethodIfProxy() {
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700447 if (LIKELY(!IsProxyMethod())) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700448 return this;
449 }
Ian Rogers03b6eaf2014-10-28 09:34:57 -0700450 mirror::Class* klass = GetDeclaringClass();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700451 mirror::ArtMethod* interface_method = GetDexCacheResolvedMethods()->Get(GetDexMethodIndex());
452 DCHECK(interface_method != nullptr);
453 DCHECK_EQ(interface_method,
454 Runtime::Current()->GetClassLinker()->FindMethodForProxy(klass, this));
455 return interface_method;
456}
457
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700458inline void ArtMethod::SetDexCacheResolvedMethods(ObjectArray<ArtMethod>* new_dex_cache_methods) {
459 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_methods_),
460 new_dex_cache_methods);
461}
462
463inline void ArtMethod::SetDexCacheResolvedTypes(ObjectArray<Class>* new_dex_cache_classes) {
464 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_types_),
465 new_dex_cache_classes);
466}
467
Ian Rogersded66a02014-10-28 18:12:55 -0700468inline mirror::Class* ArtMethod::GetReturnType(bool resolve) {
469 DCHECK(!IsProxyMethod());
470 const DexFile* dex_file = GetDexFile();
471 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
472 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
473 uint16_t return_type_idx = proto_id.return_type_idx_;
474 mirror::Class* type = GetDexCacheResolvedType(return_type_idx);
475 if (type == nullptr && resolve) {
476 type = Runtime::Current()->GetClassLinker()->ResolveType(return_type_idx, this);
477 CHECK(type != nullptr || Thread::Current()->IsExceptionPending());
478 }
479 return type;
480}
481
Mathieu Chartier2d721012014-11-10 11:08:06 -0800482inline void ArtMethod::CheckObjectSizeEqualsMirrorSize() {
483 // Using the default, check the class object size to make sure it matches the size of the
484 // object.
Mathieu Chartiereace4582014-11-24 18:29:54 -0800485 size_t this_size = sizeof(*this);
486#ifdef ART_METHOD_HAS_PADDING_FIELD_ON_64_BIT
487 this_size += sizeof(void*) - sizeof(uint32_t);
488#endif
489 DCHECK_EQ(GetClass()->GetObjectSize(), this_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800490}
491
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800492} // namespace mirror
493} // namespace art
494
Brian Carlstromea46f952013-07-30 01:26:50 -0700495#endif // ART_RUNTIME_MIRROR_ART_METHOD_INL_H_