blob: 38e44befba2ada8d99fd56c310db7a1728d78e0b [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 /*
273 * During a stack walk, a return PC may point to the end of the code + 1
274 * (in the case that the last instruction is a call that isn't expected to
275 * return. Thus, we check <= code + GetCodeSize().
276 */
277 return (code <= pc && pc <= code + GetCodeSize());
278 }
279
Ian Rogersef7d42f2014-01-06 12:55:46 -0800280 void AssertPcIsWithinQuickCode(uintptr_t pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800281
Ian Rogersef7d42f2014-01-06 12:55:46 -0800282 uint32_t GetQuickOatCodeOffset();
283 uint32_t GetPortableOatCodeOffset();
284 void SetQuickOatCodeOffset(uint32_t code_offset);
285 void SetPortableOatCodeOffset(uint32_t code_offset);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800286
Ian Rogers1809a722013-08-09 22:05:32 -0700287 // Callers should wrap the uint8_t* in a MappingTable instance for convenient access.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800288 const uint8_t* GetMappingTable() {
289 return GetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_mapping_table_),
290 false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800291 }
292
Mathieu Chartier4e305412014-02-19 10:54:44 -0800293 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers1809a722013-08-09 22:05:32 -0700294 void SetMappingTable(const uint8_t* mapping_table) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800295 SetFieldPtr<false, true, kVerifyFlags>(
296 OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_mapping_table_), mapping_table, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800297 }
298
Ian Rogersef7d42f2014-01-06 12:55:46 -0800299 uint32_t GetOatMappingTableOffset();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800300
301 void SetOatMappingTableOffset(uint32_t mapping_table_offset);
302
Ian Rogers1809a722013-08-09 22:05:32 -0700303 // Callers should wrap the uint8_t* in a VmapTable instance for convenient access.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800304 const uint8_t* GetVmapTable() {
305 return GetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_vmap_table_),
306 false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800307 }
308
Mathieu Chartier4e305412014-02-19 10:54:44 -0800309 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers1809a722013-08-09 22:05:32 -0700310 void SetVmapTable(const uint8_t* vmap_table) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800311 SetFieldPtr<false, true, kVerifyFlags>(
312 OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_vmap_table_), vmap_table, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800313 }
314
Ian Rogersef7d42f2014-01-06 12:55:46 -0800315 uint32_t GetOatVmapTableOffset();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800316
317 void SetOatVmapTableOffset(uint32_t vmap_table_offset);
318
Ian Rogersef7d42f2014-01-06 12:55:46 -0800319 const uint8_t* GetNativeGcMap() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700320 return GetFieldPtr<uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, gc_map_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800321 }
Mathieu Chartier4e305412014-02-19 10:54:44 -0800322 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800323 void SetNativeGcMap(const uint8_t* data) {
Mathieu Chartier4e305412014-02-19 10:54:44 -0800324 SetFieldPtr<false, true, kVerifyFlags>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, gc_map_), data,
325 false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800326 }
327
328 // When building the oat need a convenient place to stuff the offset of the native GC map.
329 void SetOatNativeGcMapOffset(uint32_t gc_map_offset);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800330 uint32_t GetOatNativeGcMapOffset();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800331
Andreas Gampe90546832014-03-12 18:07:19 -0700332 template <bool kCheckFrameSize = true>
Ian Rogers936b37f2014-02-14 00:52:24 -0800333 uint32_t GetFrameSizeInBytes() {
334 uint32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_frame_size_in_bytes_),
335 false);
Andreas Gampe90546832014-03-12 18:07:19 -0700336 if (kCheckFrameSize) {
337 DCHECK_LE(static_cast<size_t>(kStackAlignment), result);
338 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800339 return result;
340 }
341
342 void SetFrameSizeInBytes(size_t new_frame_size_in_bytes) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100343 // Not called within a transaction.
344 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_frame_size_in_bytes_),
345 new_frame_size_in_bytes, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800346 }
347
Ian Rogersef7d42f2014-01-06 12:55:46 -0800348 size_t GetReturnPcOffsetInBytes() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800349 return GetFrameSizeInBytes() - kPointerSize;
350 }
351
Ian Rogersef7d42f2014-01-06 12:55:46 -0800352 size_t GetSirtOffsetInBytes() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800353 return kPointerSize;
354 }
355
Ian Rogersef7d42f2014-01-06 12:55:46 -0800356 bool IsRegistered();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800357
Ian Rogers1eb512d2013-10-18 15:42:20 -0700358 void RegisterNative(Thread* self, const void* native_method, bool is_fast)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800359 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
360
361 void UnregisterNative(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
362
363 static MemberOffset NativeMethodOffset() {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800364 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_jni_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800365 }
366
Ian Rogersef7d42f2014-01-06 12:55:46 -0800367 const void* GetNativeMethod() {
Andreas Gampebf6b92a2014-03-05 16:11:04 -0800368 return GetFieldPtr<const void*>(NativeMethodOffset(), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800369 }
370
Mathieu Chartier4e305412014-02-19 10:54:44 -0800371 template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800372 void SetNativeMethod(const void*);
373
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800374 static MemberOffset GetMethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700375 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800376 }
377
Ian Rogersef7d42f2014-01-06 12:55:46 -0800378 uint32_t GetCoreSpillMask() {
379 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_core_spill_mask_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800380 }
381
382 void SetCoreSpillMask(uint32_t core_spill_mask) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100383 // Computed during compilation.
384 // Not called within a transaction.
385 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_core_spill_mask_), core_spill_mask, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800386 }
387
Ian Rogersef7d42f2014-01-06 12:55:46 -0800388 uint32_t GetFpSpillMask() {
389 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_fp_spill_mask_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800390 }
391
392 void SetFpSpillMask(uint32_t fp_spill_mask) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100393 // Computed during compilation.
394 // Not called within a transaction.
395 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, quick_fp_spill_mask_), fp_spill_mask, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800396 }
397
398 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
399 // conventions for a method of managed code. Returns false for Proxy methods.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800400 bool IsRuntimeMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800401
402 // Is this a hand crafted method used for something like describing callee saves?
Ian Rogersef7d42f2014-01-06 12:55:46 -0800403 bool IsCalleeSaveMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800404
Ian Rogersef7d42f2014-01-06 12:55:46 -0800405 bool IsResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800406
Ian Rogersef7d42f2014-01-06 12:55:46 -0800407 bool IsImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jeff Hao88474b42013-10-23 16:24:40 -0700408
Ian Rogersef7d42f2014-01-06 12:55:46 -0800409 uintptr_t NativePcOffset(const uintptr_t pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800410
411 // Converts a native PC to a dex PC.
Dave Allisonb373e092014-02-20 16:06:36 -0800412 uint32_t ToDexPc(const uintptr_t pc, bool abort_on_failure = true)
413 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800414
415 // Converts a dex PC to a native PC.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800416 uintptr_t ToNativePc(const uint32_t dex_pc) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800417
Ian Rogersc449aa82013-07-29 14:35:46 -0700418 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
419 // indicates whether the found catch block is responsible for clearing the exception or whether
420 // a move-exception instruction is present.
Jeff Haoaa961912014-04-22 13:54:32 -0700421 uint32_t FindCatchBlock(SirtRef<Class>& exception_type, uint32_t dex_pc,
422 bool* has_no_move_exception)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800423 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
424
Brian Carlstromea46f952013-07-30 01:26:50 -0700425 static void SetClass(Class* java_lang_reflect_ArtMethod);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800426
Brian Carlstromea46f952013-07-30 01:26:50 -0700427 static Class* GetJavaLangReflectArtMethod() {
428 return java_lang_reflect_ArtMethod_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800429 }
430
Brian Carlstromea46f952013-07-30 01:26:50 -0700431 static void ResetClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800432
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800433 static void VisitRoots(RootCallback* callback, void* arg)
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800434 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
435
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800436 protected:
437 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800438 // The class we are a part of.
439 HeapReference<Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800440
Ian Rogersef7d42f2014-01-06 12:55:46 -0800441 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
442 HeapReference<ObjectArray<ArtMethod> > dex_cache_resolved_methods_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800443
Ian Rogersef7d42f2014-01-06 12:55:46 -0800444 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
445 HeapReference<ObjectArray<Class> > dex_cache_resolved_types_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800446
Ian Rogersef7d42f2014-01-06 12:55:46 -0800447 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
448 HeapReference<ObjectArray<String> > dex_cache_strings_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800449
Ian Rogersef7d42f2014-01-06 12:55:46 -0800450 // Method dispatch from the interpreter invokes this pointer which may cause a bridge into
451 // compiled code.
452 uint64_t entry_point_from_interpreter_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800453
Ian Rogersef7d42f2014-01-06 12:55:46 -0800454 // Pointer to JNI function registered to this method, or a function to resolve the JNI function.
455 uint64_t entry_point_from_jni_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800456
Ian Rogersef7d42f2014-01-06 12:55:46 -0800457 // Method dispatch from portable compiled code invokes this pointer which may cause bridging into
458 // quick compiled code or the interpreter.
459 uint64_t entry_point_from_portable_compiled_code_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800460
Ian Rogersef7d42f2014-01-06 12:55:46 -0800461 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
462 // portable compiled code or the interpreter.
463 uint64_t entry_point_from_quick_compiled_code_;
Jeff Haoaa4a7932013-05-13 11:28:27 -0700464
Ian Rogersef7d42f2014-01-06 12:55:46 -0800465 // Pointer to a data structure created by the compiler and used by the garbage collector to
466 // determine which registers hold live references to objects within the heap. Keyed by native PC
467 // offsets for the quick compiler and dex PCs for the portable.
468 uint64_t gc_map_;
Jeff Hao16743632013-05-08 10:59:04 -0700469
Ian Rogersef7d42f2014-01-06 12:55:46 -0800470 // --- Quick compiler meta-data. ---
471 // TODO: merge and place in native heap, such as done with the code size.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800472
Ian Rogersef7d42f2014-01-06 12:55:46 -0800473 // Pointer to a data structure created by the quick compiler to map between dex PCs and native
474 // PCs, and vice-versa.
475 uint64_t quick_mapping_table_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800476
477 // When a register is promoted into a register, the spill mask holds which registers hold dex
478 // registers. The first promoted register's corresponding dex register is vmap_table_[1], the Nth
479 // is vmap_table_[N]. vmap_table_[0] holds the length of the table.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800480 uint64_t quick_vmap_table_;
481
482 // --- End of quick compiler meta-data. ---
483
484 // Access flags; low 16 bits are defined by spec.
485 uint32_t access_flags_;
486
487 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
488
489 // Offset to the CodeItem.
490 uint32_t dex_code_item_offset_;
491
492 // Index into method_ids of the dex file associated with this method.
493 uint32_t dex_method_index_;
494
495 /* End of dex file fields. */
496
497 // Entry within a dispatch table for this method. For static/direct methods the index is into
498 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
499 // ifTable.
500 uint32_t method_index_;
501
502 // --- Quick compiler meta-data. ---
503 // TODO: merge and place in native heap, such as done with the code size.
504
505 // Bit map of spilled machine registers.
506 uint32_t quick_core_spill_mask_;
507
508 // Bit map of spilled floating point machine registers.
509 uint32_t quick_fp_spill_mask_;
510
511 // Fixed frame size for this method when executed.
512 uint32_t quick_frame_size_in_bytes_;
513
514 // --- End of quick compiler meta-data. ---
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800515
Brian Carlstromea46f952013-07-30 01:26:50 -0700516 static Class* java_lang_reflect_ArtMethod_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800517
Mathieu Chartier02e25112013-08-14 16:14:24 -0700518 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700519 friend struct art::ArtMethodOffsets; // for verifying offset information
520 DISALLOW_IMPLICIT_CONSTRUCTORS(ArtMethod);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800521};
522
Brian Carlstromea46f952013-07-30 01:26:50 -0700523class MANAGED ArtMethodClass : public Class {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800524 private:
Brian Carlstromea46f952013-07-30 01:26:50 -0700525 DISALLOW_IMPLICIT_CONSTRUCTORS(ArtMethodClass);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800526};
527
528} // namespace mirror
529} // namespace art
530
Brian Carlstromea46f952013-07-30 01:26:50 -0700531#endif // ART_RUNTIME_MIRROR_ART_METHOD_H_