blob: ee23c40af5a7864bb75bf490d44cb7b8041e3742 [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_H_
18#define ART_RUNTIME_MIRROR_ART_METHOD_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
20#include "class.h"
Jeff Hao790ad902013-05-22 15:02:08 -070021#include "dex_file.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "invoke_type.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "modifiers.h"
24#include "object.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080025#include "object_callbacks.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026
27namespace art {
28
Brian Carlstromea46f952013-07-30 01:26:50 -070029struct ArtMethodOffsets;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030struct ConstructorMethodOffsets;
31union JValue;
32struct MethodClassOffsets;
Jeff Hao790ad902013-05-22 15:02:08 -070033class MethodHelper;
Ian Rogers62f05122014-03-21 11:21:29 -070034class ScopedObjectAccess;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035class StringPiece;
Jeff Hao16743632013-05-08 10:59:04 -070036class ShadowFrame;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037
38namespace mirror {
39
40class StaticStorageBase;
41
Jeff Hao790ad902013-05-22 15:02:08 -070042typedef void (EntryPointFromInterpreter)(Thread* self, MethodHelper& mh,
43 const DexFile::CodeItem* code_item, ShadowFrame* shadow_frame, JValue* result);
Jeff Hao16743632013-05-08 10:59:04 -070044
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080045// C++ mirror of java.lang.reflect.Method and java.lang.reflect.Constructor
Brian Carlstromea46f952013-07-30 01:26:50 -070046class MANAGED ArtMethod : public Object {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047 public:
Ian Rogers62f05122014-03-21 11:21:29 -070048 static ArtMethod* FromReflectedMethod(const ScopedObjectAccess& soa, jobject jlr_method)
49 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
50
Ian Rogersef7d42f2014-01-06 12:55:46 -080051 Class* GetDeclaringClass() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052
53 void SetDeclaringClass(Class *new_declaring_class) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
54
55 static MemberOffset DeclaringClassOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -070056 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, declaring_class_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080057 }
58
Ian Rogersef7d42f2014-01-06 12:55:46 -080059 uint32_t GetAccessFlags() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao5d917302013-02-27 17:57:33 -080060
Ian Rogersef7d42f2014-01-06 12:55:46 -080061 void SetAccessFlags(uint32_t new_access_flags) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010062 // Not called within a transaction.
63 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, access_flags_), new_access_flags, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080064 }
65
66 // Approximate what kind of method call would be used for this method.
Ian Rogersef7d42f2014-01-06 12:55:46 -080067 InvokeType GetInvokeType() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080068
69 // Returns true if the method is declared public.
Ian Rogersef7d42f2014-01-06 12:55:46 -080070 bool IsPublic() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080071 return (GetAccessFlags() & kAccPublic) != 0;
72 }
73
74 // Returns true if the method is declared private.
Ian Rogersef7d42f2014-01-06 12:55:46 -080075 bool IsPrivate() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080076 return (GetAccessFlags() & kAccPrivate) != 0;
77 }
78
79 // Returns true if the method is declared static.
Ian Rogersef7d42f2014-01-06 12:55:46 -080080 bool IsStatic() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080081 return (GetAccessFlags() & kAccStatic) != 0;
82 }
83
84 // Returns true if the method is a constructor.
Ian Rogersef7d42f2014-01-06 12:55:46 -080085 bool IsConstructor() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080086 return (GetAccessFlags() & kAccConstructor) != 0;
87 }
88
89 // Returns true if the method is static, private, or a constructor.
Ian Rogersef7d42f2014-01-06 12:55:46 -080090 bool IsDirect() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091 return IsDirect(GetAccessFlags());
92 }
93
94 static bool IsDirect(uint32_t access_flags) {
95 return (access_flags & (kAccStatic | kAccPrivate | kAccConstructor)) != 0;
96 }
97
98 // Returns true if the method is declared synchronized.
Ian Rogersef7d42f2014-01-06 12:55:46 -080099 bool IsSynchronized() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800100 uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
101 return (GetAccessFlags() & synchonized) != 0;
102 }
103
Ian Rogersef7d42f2014-01-06 12:55:46 -0800104 bool IsFinal() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800105 return (GetAccessFlags() & kAccFinal) != 0;
106 }
107
Ian Rogersef7d42f2014-01-06 12:55:46 -0800108 bool IsMiranda() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800109 return (GetAccessFlags() & kAccMiranda) != 0;
110 }
111
Ian Rogersef7d42f2014-01-06 12:55:46 -0800112 bool IsNative() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800113 return (GetAccessFlags() & kAccNative) != 0;
114 }
115
Ian Rogersef7d42f2014-01-06 12:55:46 -0800116 bool IsFastNative() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers16ce0922014-01-10 14:59:36 -0800117 uint32_t mask = kAccFastNative | kAccNative;
118 return (GetAccessFlags() & mask) == mask;
Ian Rogers1eb512d2013-10-18 15:42:20 -0700119 }
120
Ian Rogersef7d42f2014-01-06 12:55:46 -0800121 bool IsAbstract() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800122 return (GetAccessFlags() & kAccAbstract) != 0;
123 }
124
Ian Rogersef7d42f2014-01-06 12:55:46 -0800125 bool IsSynthetic() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800126 return (GetAccessFlags() & kAccSynthetic) != 0;
127 }
128
Ian Rogersef7d42f2014-01-06 12:55:46 -0800129 bool IsProxyMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800130
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131 bool IsPreverified() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200132 return (GetAccessFlags() & kAccPreverified) != 0;
133 }
134
Ian Rogersef7d42f2014-01-06 12:55:46 -0800135 void SetPreverified() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
136 DCHECK(!IsPreverified());
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200137 SetAccessFlags(GetAccessFlags() | kAccPreverified);
138 }
139
Ian Rogersef7d42f2014-01-06 12:55:46 -0800140 bool IsPortableCompiled() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
141 return (GetAccessFlags() & kAccPortableCompiled) != 0;
142 }
143
144 void SetIsPortableCompiled() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
145 DCHECK(!IsPortableCompiled());
146 SetAccessFlags(GetAccessFlags() | kAccPortableCompiled);
147 }
148
149 void ClearIsPortableCompiled() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
150 DCHECK(IsPortableCompiled());
151 SetAccessFlags(GetAccessFlags() & ~kAccPortableCompiled);
152 }
153
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800154 bool CheckIncompatibleClassChange(InvokeType type) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
155
Ian Rogersef7d42f2014-01-06 12:55:46 -0800156 uint16_t GetMethodIndex() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800157
Ian Rogersef7d42f2014-01-06 12:55:46 -0800158 size_t GetVtableIndex() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800159 return GetMethodIndex();
160 }
161
Ian Rogersef7d42f2014-01-06 12:55:46 -0800162 void SetMethodIndex(uint16_t new_method_index) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100163 // Not called within a transaction.
164 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_), new_method_index, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800165 }
166
167 static MemberOffset MethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700168 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800169 }
170
Ian Rogersef7d42f2014-01-06 12:55:46 -0800171 uint32_t GetCodeItemOffset() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
172 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_code_item_offset_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800173 }
174
175 void SetCodeItemOffset(uint32_t new_code_off) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100176 // Not called within a transaction.
177 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_code_item_offset_), new_code_off, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800178 }
179
180 // Number of 32bit registers that would be required to hold all the arguments
181 static size_t NumArgRegisters(const StringPiece& shorty);
182
Ian Rogersef7d42f2014-01-06 12:55:46 -0800183 uint32_t GetDexMethodIndex() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800184
185 void SetDexMethodIndex(uint32_t new_idx) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100186 // Not called within a transaction.
187 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_), new_idx, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800188 }
189
Ian Rogersef7d42f2014-01-06 12:55:46 -0800190 ObjectArray<String>* GetDexCacheStrings() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800191 void SetDexCacheStrings(ObjectArray<String>* new_dex_cache_strings)
192 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
193
194 static MemberOffset DexCacheStringsOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700195 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_strings_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 }
197
198 static MemberOffset DexCacheResolvedMethodsOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700199 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_methods_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800200 }
201
202 static MemberOffset DexCacheResolvedTypesOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700203 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_types_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800204 }
205
Ian Rogersef7d42f2014-01-06 12:55:46 -0800206 ObjectArray<ArtMethod>* GetDexCacheResolvedMethods() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700207 void SetDexCacheResolvedMethods(ObjectArray<ArtMethod>* new_dex_cache_methods)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800208 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
209
Ian Rogersef7d42f2014-01-06 12:55:46 -0800210 ObjectArray<Class>* GetDexCacheResolvedTypes() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800211 void SetDexCacheResolvedTypes(ObjectArray<Class>* new_dex_cache_types)
212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
213
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800214 // Find the method that this method overrides
Ian Rogersef7d42f2014-01-06 12:55:46 -0800215 ArtMethod* FindOverriddenMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800216
Ian Rogers0177e532014-02-11 16:30:46 -0800217 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
218 const char* shorty) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800219
Mathieu Chartier4e305412014-02-19 10:54:44 -0800220 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800221 EntryPointFromInterpreter* GetEntryPointFromInterpreter() {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800222 return GetFieldPtr<EntryPointFromInterpreter*, kVerifyFlags>(
Ian Rogersef7d42f2014-01-06 12:55:46 -0800223 OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_interpreter_), false);
Jeff Hao16743632013-05-08 10:59:04 -0700224 }
225
Mathieu Chartier4e305412014-02-19 10:54:44 -0800226 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Jeff Hao16743632013-05-08 10:59:04 -0700227 void SetEntryPointFromInterpreter(EntryPointFromInterpreter* entry_point_from_interpreter) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800228 SetFieldPtr<false, true, kVerifyFlags>(
229 OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_interpreter_),
230 entry_point_from_interpreter, false);
Jeff Hao16743632013-05-08 10:59:04 -0700231 }
232
Ian Rogersef7d42f2014-01-06 12:55:46 -0800233 static MemberOffset EntryPointFromPortableCompiledCodeOffset() {
234 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, entry_point_from_portable_compiled_code_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800235 }
236
Mathieu Chartier4e305412014-02-19 10:54:44 -0800237 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800238 const void* GetEntryPointFromPortableCompiledCode() {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800239 return GetFieldPtr<const void*, kVerifyFlags>(
240 EntryPointFromPortableCompiledCodeOffset(), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800241 }
242
Mathieu Chartier4e305412014-02-19 10:54:44 -0800243 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800244 void SetEntryPointFromPortableCompiledCode(const void* entry_point_from_portable_compiled_code) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800245 SetFieldPtr<false, true, kVerifyFlags>(
246 EntryPointFromPortableCompiledCodeOffset(), entry_point_from_portable_compiled_code, false);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800247 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800248
Ian Rogersef7d42f2014-01-06 12:55:46 -0800249 static MemberOffset EntryPointFromQuickCompiledCodeOffset() {
250 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, entry_point_from_quick_compiled_code_));
251 }
252
Mathieu Chartier4e305412014-02-19 10:54:44 -0800253 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800254 const void* GetEntryPointFromQuickCompiledCode() {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800255 return GetFieldPtr<const void*, kVerifyFlags>(EntryPointFromQuickCompiledCodeOffset(), false);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800256 }
257
Mathieu Chartier4e305412014-02-19 10:54:44 -0800258 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800259 void SetEntryPointFromQuickCompiledCode(const void* entry_point_from_quick_compiled_code) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800260 SetFieldPtr<false, true, kVerifyFlags>(
261 EntryPointFromQuickCompiledCodeOffset(), entry_point_from_quick_compiled_code, false);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800262 }
263
264
265 uint32_t GetCodeSize() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
266
267 bool IsWithinQuickCode(uintptr_t pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
268 uintptr_t code = reinterpret_cast<uintptr_t>(GetEntryPointFromQuickCompiledCode());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800269 if (code == 0) {
270 return pc == 0;
271 }
272 /*
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100273 * During a stack walk, a return PC may point past-the-end of the code
274 * in the case that the last instruction is a call that isn't expected to
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800275 * return. Thus, we check <= code + GetCodeSize().
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100276 *
277 * NOTE: For Thumb both pc and code are offset by 1 indicating the Thumb state.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800278 */
279 return (code <= pc && pc <= code + GetCodeSize());
280 }
281
Ian Rogersef7d42f2014-01-06 12:55:46 -0800282 void AssertPcIsWithinQuickCode(uintptr_t pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800283
Ian Rogersef7d42f2014-01-06 12:55:46 -0800284 uint32_t GetQuickOatCodeOffset();
285 uint32_t GetPortableOatCodeOffset();
286 void SetQuickOatCodeOffset(uint32_t code_offset);
287 void SetPortableOatCodeOffset(uint32_t code_offset);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800288
Ian Rogers1809a722013-08-09 22:05:32 -0700289 // Callers should wrap the uint8_t* in a MappingTable instance for convenient access.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800290 const uint8_t* GetMappingTable() {
291 return GetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_mapping_table_),
292 false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800293 }
294
Mathieu Chartier4e305412014-02-19 10:54:44 -0800295 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers1809a722013-08-09 22:05:32 -0700296 void SetMappingTable(const uint8_t* mapping_table) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800297 SetFieldPtr<false, true, kVerifyFlags>(
298 OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_mapping_table_), mapping_table, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800299 }
300
Ian Rogersef7d42f2014-01-06 12:55:46 -0800301 uint32_t GetOatMappingTableOffset();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800302
303 void SetOatMappingTableOffset(uint32_t mapping_table_offset);
304
Ian Rogers1809a722013-08-09 22:05:32 -0700305 // Callers should wrap the uint8_t* in a VmapTable instance for convenient access.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800306 const uint8_t* GetVmapTable() {
307 return GetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_vmap_table_),
308 false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800309 }
310
Mathieu Chartier4e305412014-02-19 10:54:44 -0800311 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers1809a722013-08-09 22:05:32 -0700312 void SetVmapTable(const uint8_t* vmap_table) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800313 SetFieldPtr<false, true, kVerifyFlags>(
314 OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_vmap_table_), vmap_table, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800315 }
316
Ian Rogersef7d42f2014-01-06 12:55:46 -0800317 uint32_t GetOatVmapTableOffset();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800318
319 void SetOatVmapTableOffset(uint32_t vmap_table_offset);
320
Ian Rogersef7d42f2014-01-06 12:55:46 -0800321 const uint8_t* GetNativeGcMap() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700322 return GetFieldPtr<uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, gc_map_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800323 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800324 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800325 void SetNativeGcMap(const uint8_t* data) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800326 SetFieldPtr<false, true, kVerifyFlags>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, gc_map_), data,
327 false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 }
329
330 // When building the oat need a convenient place to stuff the offset of the native GC map.
331 void SetOatNativeGcMapOffset(uint32_t gc_map_offset);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800332 uint32_t GetOatNativeGcMapOffset();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800333
Andreas Gampe90546832014-03-12 18:07:19 -0700334 template <bool kCheckFrameSize = true>
Ian Rogers936b37f2014-02-14 00:52:24 -0800335 uint32_t GetFrameSizeInBytes() {
336 uint32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_frame_size_in_bytes_),
337 false);
Andreas Gampe90546832014-03-12 18:07:19 -0700338 if (kCheckFrameSize) {
339 DCHECK_LE(static_cast<size_t>(kStackAlignment), result);
340 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800341 return result;
342 }
343
344 void SetFrameSizeInBytes(size_t new_frame_size_in_bytes) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100345 // Not called within a transaction.
346 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_frame_size_in_bytes_),
347 new_frame_size_in_bytes, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800348 }
349
Ian Rogersef7d42f2014-01-06 12:55:46 -0800350 size_t GetReturnPcOffsetInBytes() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800351 return GetFrameSizeInBytes() - kPointerSize;
352 }
353
Ian Rogersef7d42f2014-01-06 12:55:46 -0800354 size_t GetSirtOffsetInBytes() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800355 return kPointerSize;
356 }
357
Ian Rogersef7d42f2014-01-06 12:55:46 -0800358 bool IsRegistered();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800359
Ian Rogers1eb512d2013-10-18 15:42:20 -0700360 void RegisterNative(Thread* self, const void* native_method, bool is_fast)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
362
363 void UnregisterNative(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
364
365 static MemberOffset NativeMethodOffset() {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800366 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_jni_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800367 }
368
Ian Rogersef7d42f2014-01-06 12:55:46 -0800369 const void* GetNativeMethod() {
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800370 return GetFieldPtr<const void*>(NativeMethodOffset(), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800371 }
372
Mathieu Chartier4e305412014-02-19 10:54:44 -0800373 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800374 void SetNativeMethod(const void*);
375
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800376 static MemberOffset GetMethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700377 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800378 }
379
Ian Rogersef7d42f2014-01-06 12:55:46 -0800380 uint32_t GetCoreSpillMask() {
381 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_core_spill_mask_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800382 }
383
384 void SetCoreSpillMask(uint32_t core_spill_mask) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100385 // Computed during compilation.
386 // Not called within a transaction.
387 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_core_spill_mask_), core_spill_mask, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800388 }
389
Ian Rogersef7d42f2014-01-06 12:55:46 -0800390 uint32_t GetFpSpillMask() {
391 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_fp_spill_mask_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800392 }
393
394 void SetFpSpillMask(uint32_t fp_spill_mask) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100395 // Computed during compilation.
396 // Not called within a transaction.
397 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_fp_spill_mask_), fp_spill_mask, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800398 }
399
400 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
401 // conventions for a method of managed code. Returns false for Proxy methods.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800402 bool IsRuntimeMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800403
404 // Is this a hand crafted method used for something like describing callee saves?
Ian Rogersef7d42f2014-01-06 12:55:46 -0800405 bool IsCalleeSaveMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800406
Ian Rogersef7d42f2014-01-06 12:55:46 -0800407 bool IsResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800408
Ian Rogersef7d42f2014-01-06 12:55:46 -0800409 bool IsImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao88474b42013-10-23 16:24:40 -0700410
Ian Rogersef7d42f2014-01-06 12:55:46 -0800411 uintptr_t NativePcOffset(const uintptr_t pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800412
413 // Converts a native PC to a dex PC.
Dave Allisonb373e092014-02-20 16:06:36 -0800414 uint32_t ToDexPc(const uintptr_t pc, bool abort_on_failure = true)
415 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800416
417 // Converts a dex PC to a native PC.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800418 uintptr_t ToNativePc(const uint32_t dex_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800419
Ian Rogersc449aa82013-07-29 14:35:46 -0700420 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
421 // indicates whether the found catch block is responsible for clearing the exception or whether
422 // a move-exception instruction is present.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800423 uint32_t FindCatchBlock(Class* exception_type, uint32_t dex_pc, bool* has_no_move_exception)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
425
Brian Carlstromea46f952013-07-30 01:26:50 -0700426 static void SetClass(Class* java_lang_reflect_ArtMethod);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800427
Brian Carlstromea46f952013-07-30 01:26:50 -0700428 static Class* GetJavaLangReflectArtMethod() {
429 return java_lang_reflect_ArtMethod_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800430 }
431
Brian Carlstromea46f952013-07-30 01:26:50 -0700432 static void ResetClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800433
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800434 static void VisitRoots(RootCallback* callback, void* arg)
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800435 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
436
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800437 protected:
438 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800439 // The class we are a part of.
440 HeapReference<Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800441
Ian Rogersef7d42f2014-01-06 12:55:46 -0800442 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
443 HeapReference<ObjectArray<ArtMethod> > dex_cache_resolved_methods_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800444
Ian Rogersef7d42f2014-01-06 12:55:46 -0800445 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
446 HeapReference<ObjectArray<Class> > dex_cache_resolved_types_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800447
Ian Rogersef7d42f2014-01-06 12:55:46 -0800448 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
449 HeapReference<ObjectArray<String> > dex_cache_strings_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800450
Ian Rogersef7d42f2014-01-06 12:55:46 -0800451 // Method dispatch from the interpreter invokes this pointer which may cause a bridge into
452 // compiled code.
453 uint64_t entry_point_from_interpreter_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800454
Ian Rogersef7d42f2014-01-06 12:55:46 -0800455 // Pointer to JNI function registered to this method, or a function to resolve the JNI function.
456 uint64_t entry_point_from_jni_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800457
Ian Rogersef7d42f2014-01-06 12:55:46 -0800458 // Method dispatch from portable compiled code invokes this pointer which may cause bridging into
459 // quick compiled code or the interpreter.
460 uint64_t entry_point_from_portable_compiled_code_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800461
Ian Rogersef7d42f2014-01-06 12:55:46 -0800462 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
463 // portable compiled code or the interpreter.
464 uint64_t entry_point_from_quick_compiled_code_;
Jeff Haoaa4a7932013-05-13 11:28:27 -0700465
Ian Rogersef7d42f2014-01-06 12:55:46 -0800466 // Pointer to a data structure created by the compiler and used by the garbage collector to
467 // determine which registers hold live references to objects within the heap. Keyed by native PC
468 // offsets for the quick compiler and dex PCs for the portable.
469 uint64_t gc_map_;
Jeff Hao16743632013-05-08 10:59:04 -0700470
Ian Rogersef7d42f2014-01-06 12:55:46 -0800471 // --- Quick compiler meta-data. ---
472 // TODO: merge and place in native heap, such as done with the code size.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800473
Ian Rogersef7d42f2014-01-06 12:55:46 -0800474 // Pointer to a data structure created by the quick compiler to map between dex PCs and native
475 // PCs, and vice-versa.
476 uint64_t quick_mapping_table_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800477
478 // When a register is promoted into a register, the spill mask holds which registers hold dex
479 // registers. The first promoted register's corresponding dex register is vmap_table_[1], the Nth
480 // is vmap_table_[N]. vmap_table_[0] holds the length of the table.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800481 uint64_t quick_vmap_table_;
482
483 // --- End of quick compiler meta-data. ---
484
485 // Access flags; low 16 bits are defined by spec.
486 uint32_t access_flags_;
487
488 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
489
490 // Offset to the CodeItem.
491 uint32_t dex_code_item_offset_;
492
493 // Index into method_ids of the dex file associated with this method.
494 uint32_t dex_method_index_;
495
496 /* End of dex file fields. */
497
498 // Entry within a dispatch table for this method. For static/direct methods the index is into
499 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
500 // ifTable.
501 uint32_t method_index_;
502
503 // --- Quick compiler meta-data. ---
504 // TODO: merge and place in native heap, such as done with the code size.
505
506 // Bit map of spilled machine registers.
507 uint32_t quick_core_spill_mask_;
508
509 // Bit map of spilled floating point machine registers.
510 uint32_t quick_fp_spill_mask_;
511
512 // Fixed frame size for this method when executed.
513 uint32_t quick_frame_size_in_bytes_;
514
515 // --- End of quick compiler meta-data. ---
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800516
Brian Carlstromea46f952013-07-30 01:26:50 -0700517 static Class* java_lang_reflect_ArtMethod_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800518
Mathieu Chartier02e25112013-08-14 16:14:24 -0700519 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700520 friend struct art::ArtMethodOffsets; // for verifying offset information
521 DISALLOW_IMPLICIT_CONSTRUCTORS(ArtMethod);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800522};
523
Brian Carlstromea46f952013-07-30 01:26:50 -0700524class MANAGED ArtMethodClass : public Class {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800525 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700526 DISALLOW_IMPLICIT_CONSTRUCTORS(ArtMethodClass);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800527};
528
529} // namespace mirror
530} // namespace art
531
Brian Carlstromea46f952013-07-30 01:26:50 -0700532#endif // ART_RUNTIME_MIRROR_ART_METHOD_H_