blob: 3c58644e88ce8f913b43c7f87ad8896c766e736d [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_H_
18#define ART_RUNTIME_ART_METHOD_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010020#include "base/bit_utils.h"
Vladimir Marko05792b92015-08-03 11:56:49 +010021#include "base/casts.h"
Jeff Hao790ad902013-05-22 15:02:08 -070022#include "dex_file.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070023#include "gc_root.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "invoke_type.h"
Mathieu Chartier36b58f52014-12-10 12:06:45 -080025#include "method_reference.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "modifiers.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070027#include "mirror/object.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070028#include "read_barrier_option.h"
Sebastien Hertze4b7c892014-12-17 20:02:50 +010029#include "stack.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031
32namespace art {
33
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034union JValue;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010035class ProfilingInfo;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070036class ScopedObjectAccessAlreadyRunnable;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037class StringPiece;
Jeff Hao16743632013-05-08 10:59:04 -070038class ShadowFrame;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039
40namespace mirror {
Mathieu Chartiere401d142015-04-22 13:56:20 -070041class Array;
42class Class;
43class PointerArray;
44} // namespace mirror
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080045
Mathieu Chartiere401d142015-04-22 13:56:20 -070046class ArtMethod FINAL {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -070048 ArtMethod() : access_flags_(0), dex_code_item_offset_(0), dex_method_index_(0),
49 method_index_(0) { }
50
51 ArtMethod(const ArtMethod& src, size_t image_pointer_size) {
52 CopyFrom(&src, image_pointer_size);
53 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -070054
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070055 static ArtMethod* FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
56 jobject jlr_method)
Mathieu Chartier90443472015-07-16 20:32:27 -070057 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62f05122014-03-21 11:21:29 -070058
Mathieu Chartier90443472015-07-16 20:32:27 -070059 ALWAYS_INLINE mirror::Class* GetDeclaringClass() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080060
Mathieu Chartiere401d142015-04-22 13:56:20 -070061 ALWAYS_INLINE mirror::Class* GetDeclaringClassNoBarrier()
Mathieu Chartier90443472015-07-16 20:32:27 -070062 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -070063
64 ALWAYS_INLINE mirror::Class* GetDeclaringClassUnchecked()
Mathieu Chartier90443472015-07-16 20:32:27 -070065 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -070066
67 void SetDeclaringClass(mirror::Class *new_declaring_class)
Mathieu Chartier90443472015-07-16 20:32:27 -070068 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069
Mathieu Chartier10e5ea92015-08-13 12:56:31 -070070 bool CASDeclaringClass(mirror::Class* expected_class, mirror::Class* desired_class)
71 SHARED_REQUIRES(Locks::mutator_lock_);
72
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080073 static MemberOffset DeclaringClassOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -070074 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, declaring_class_));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080075 }
76
Andreas Gampecbc96b82015-09-30 20:05:24 +000077 // Note: GetAccessFlags acquires the mutator lock in debug mode to check that it is not called for
78 // a proxy method.
79 ALWAYS_INLINE uint32_t GetAccessFlags();
Jeff Hao5d917302013-02-27 17:57:33 -080080
Mathieu Chartiere401d142015-04-22 13:56:20 -070081 void SetAccessFlags(uint32_t new_access_flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010082 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -070083 access_flags_ = new_access_flags;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080084 }
85
86 // Approximate what kind of method call would be used for this method.
Mathieu Chartier90443472015-07-16 20:32:27 -070087 InvokeType GetInvokeType() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080088
89 // Returns true if the method is declared public.
Andreas Gampecbc96b82015-09-30 20:05:24 +000090 bool IsPublic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091 return (GetAccessFlags() & kAccPublic) != 0;
92 }
93
94 // Returns true if the method is declared private.
Andreas Gampecbc96b82015-09-30 20:05:24 +000095 bool IsPrivate() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080096 return (GetAccessFlags() & kAccPrivate) != 0;
97 }
98
99 // Returns true if the method is declared static.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000100 bool IsStatic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800101 return (GetAccessFlags() & kAccStatic) != 0;
102 }
103
104 // Returns true if the method is a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000105 bool IsConstructor() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800106 return (GetAccessFlags() & kAccConstructor) != 0;
107 }
108
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700109 // Returns true if the method is a class initializer.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000110 bool IsClassInitializer() {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700111 return IsConstructor() && IsStatic();
112 }
113
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800114 // Returns true if the method is static, private, or a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000115 bool IsDirect() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800116 return IsDirect(GetAccessFlags());
117 }
118
119 static bool IsDirect(uint32_t access_flags) {
Andreas Gampecbc96b82015-09-30 20:05:24 +0000120 constexpr uint32_t direct = kAccStatic | kAccPrivate | kAccConstructor;
121 return (access_flags & direct) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800122 }
123
124 // Returns true if the method is declared synchronized.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000125 bool IsSynchronized() {
126 constexpr uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800127 return (GetAccessFlags() & synchonized) != 0;
128 }
129
Andreas Gampecbc96b82015-09-30 20:05:24 +0000130 bool IsFinal() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800131 return (GetAccessFlags() & kAccFinal) != 0;
132 }
133
Andreas Gampecbc96b82015-09-30 20:05:24 +0000134 bool IsMiranda() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800135 return (GetAccessFlags() & kAccMiranda) != 0;
136 }
137
Andreas Gampecbc96b82015-09-30 20:05:24 +0000138 bool IsNative() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800139 return (GetAccessFlags() & kAccNative) != 0;
140 }
141
Andreas Gampecbc96b82015-09-30 20:05:24 +0000142 bool IsFastNative() {
143 constexpr uint32_t mask = kAccFastNative | kAccNative;
Ian Rogers16ce0922014-01-10 14:59:36 -0800144 return (GetAccessFlags() & mask) == mask;
Ian Rogers1eb512d2013-10-18 15:42:20 -0700145 }
146
Andreas Gampecbc96b82015-09-30 20:05:24 +0000147 bool IsAbstract() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800148 return (GetAccessFlags() & kAccAbstract) != 0;
149 }
150
Andreas Gampecbc96b82015-09-30 20:05:24 +0000151 bool IsSynthetic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800152 return (GetAccessFlags() & kAccSynthetic) != 0;
153 }
154
Mathieu Chartier90443472015-07-16 20:32:27 -0700155 bool IsProxyMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800156
Andreas Gampecbc96b82015-09-30 20:05:24 +0000157 bool IsPreverified() {
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200158 return (GetAccessFlags() & kAccPreverified) != 0;
159 }
160
Andreas Gampecbc96b82015-09-30 20:05:24 +0000161 void SetPreverified() {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800162 DCHECK(!IsPreverified());
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200163 SetAccessFlags(GetAccessFlags() | kAccPreverified);
164 }
165
Mathieu Chartier90443472015-07-16 20:32:27 -0700166 bool CheckIncompatibleClassChange(InvokeType type) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800167
Mathieu Chartier90443472015-07-16 20:32:27 -0700168 uint16_t GetMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800169
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700170 // Doesn't do erroneous / unresolved class checks.
Mathieu Chartier90443472015-07-16 20:32:27 -0700171 uint16_t GetMethodIndexDuringLinking() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700172
Mathieu Chartier90443472015-07-16 20:32:27 -0700173 size_t GetVtableIndex() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800174 return GetMethodIndex();
175 }
176
Mathieu Chartier90443472015-07-16 20:32:27 -0700177 void SetMethodIndex(uint16_t new_method_index) SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100178 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700179 method_index_ = new_method_index;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800180 }
181
Vladimir Markoc1363122015-04-09 14:13:13 +0100182 static MemberOffset DexMethodIndexOffset() {
183 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_);
184 }
185
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800186 static MemberOffset MethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700187 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800188 }
189
Mathieu Chartiere401d142015-04-22 13:56:20 -0700190 uint32_t GetCodeItemOffset() {
191 return dex_code_item_offset_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800192 }
193
Mathieu Chartiere401d142015-04-22 13:56:20 -0700194 void SetCodeItemOffset(uint32_t new_code_off) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100195 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700196 dex_code_item_offset_ = new_code_off;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 }
198
199 // Number of 32bit registers that would be required to hold all the arguments
200 static size_t NumArgRegisters(const StringPiece& shorty);
201
Mathieu Chartier90443472015-07-16 20:32:27 -0700202 ALWAYS_INLINE uint32_t GetDexMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800203
Mathieu Chartiere401d142015-04-22 13:56:20 -0700204 void SetDexMethodIndex(uint32_t new_idx) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100205 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700206 dex_method_index_ = new_idx;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800207 }
208
Vladimir Marko05792b92015-08-03 11:56:49 +0100209 ALWAYS_INLINE ArtMethod** GetDexCacheResolvedMethods(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700210 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100211 ALWAYS_INLINE ArtMethod* GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700212 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100213 ALWAYS_INLINE void SetDexCacheResolvedMethod(uint16_t method_index,
214 ArtMethod* new_method,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700215 size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700216 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100217 ALWAYS_INLINE void SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700218 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100219 bool HasDexCacheResolvedMethods(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
220 bool HasSameDexCacheResolvedMethods(ArtMethod* other, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700221 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100222 bool HasSameDexCacheResolvedMethods(ArtMethod** other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700223 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800224
Andreas Gampe58a5af82014-07-31 16:23:49 -0700225 template <bool kWithCheck = true>
Vladimir Marko05792b92015-08-03 11:56:49 +0100226 mirror::Class* GetDexCacheResolvedType(uint32_t type_idx, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700227 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100228 void SetDexCacheResolvedTypes(GcRoot<mirror::Class>* new_dex_cache_types, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700229 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100230 bool HasDexCacheResolvedTypes(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
231 bool HasSameDexCacheResolvedTypes(ArtMethod* other, size_t pointer_size)
232 SHARED_REQUIRES(Locks::mutator_lock_);
233 bool HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700234 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800235
Ian Rogersa0485602014-12-02 15:48:04 -0800236 // Get the Class* from the type index into this method's dex cache.
Vladimir Marko05792b92015-08-03 11:56:49 +0100237 mirror::Class* GetClassFromTypeIndex(uint16_t type_idx, bool resolve, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700238 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersa0485602014-12-02 15:48:04 -0800239
Ian Rogerse0a02da2014-12-02 14:10:53 -0800240 // Find the method that this method overrides.
Mathieu Chartier90443472015-07-16 20:32:27 -0700241 ArtMethod* FindOverriddenMethod(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800242
Ian Rogerse0a02da2014-12-02 14:10:53 -0800243 // Find the method index for this method within other_dexfile. If this method isn't present then
244 // return DexFile::kDexNoIndex. The name_and_signature_idx MUST refer to a MethodId with the same
245 // name and signature in the other_dexfile, such as the method index used to resolve this method
246 // in the other_dexfile.
247 uint32_t FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
248 uint32_t name_and_signature_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700249 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800250
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700251 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, const char* shorty)
Mathieu Chartier90443472015-07-16 20:32:27 -0700252 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800253
Mathieu Chartiere401d142015-04-22 13:56:20 -0700254 const void* GetEntryPointFromQuickCompiledCode() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800255 return GetEntryPointFromQuickCompiledCodePtrSize(sizeof(void*));
256 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700257 ALWAYS_INLINE const void* GetEntryPointFromQuickCompiledCodePtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100258 return GetNativePointer<const void*>(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800259 EntryPointFromQuickCompiledCodeOffset(pointer_size), pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800260 }
261
Mathieu Chartiere401d142015-04-22 13:56:20 -0700262 void SetEntryPointFromQuickCompiledCode(const void* entry_point_from_quick_compiled_code) {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800263 SetEntryPointFromQuickCompiledCodePtrSize(entry_point_from_quick_compiled_code,
264 sizeof(void*));
265 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800266 ALWAYS_INLINE void SetEntryPointFromQuickCompiledCodePtrSize(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700267 const void* entry_point_from_quick_compiled_code, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100268 SetNativePointer(EntryPointFromQuickCompiledCodeOffset(pointer_size),
269 entry_point_from_quick_compiled_code, pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800270 }
271
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700272 void RegisterNative(const void* native_method, bool is_fast)
Mathieu Chartier90443472015-07-16 20:32:27 -0700273 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800274
Mathieu Chartier90443472015-07-16 20:32:27 -0700275 void UnregisterNative() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800276
Vladimir Marko05792b92015-08-03 11:56:49 +0100277 static MemberOffset DexCacheResolvedMethodsOffset(size_t pointer_size) {
278 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
279 PtrSizedFields, dex_cache_resolved_methods_) / sizeof(void*) * pointer_size);
280 }
281
282 static MemberOffset DexCacheResolvedTypesOffset(size_t pointer_size) {
283 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
284 PtrSizedFields, dex_cache_resolved_types_) / sizeof(void*) * pointer_size);
285 }
286
Mathieu Chartier2d721012014-11-10 11:08:06 -0800287 static MemberOffset EntryPointFromJniOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800288 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800289 PtrSizedFields, entry_point_from_jni_) / sizeof(void*) * pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800290 }
291
Mathieu Chartier2d721012014-11-10 11:08:06 -0800292 static MemberOffset EntryPointFromQuickCompiledCodeOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800293 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800294 PtrSizedFields, entry_point_from_quick_compiled_code_) / sizeof(void*) * pointer_size);
295 }
296
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100297 ProfilingInfo* CreateProfilingInfo() SHARED_REQUIRES(Locks::mutator_lock_);
298
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700299 ProfilingInfo* GetProfilingInfo(size_t pointer_size) {
300 return reinterpret_cast<ProfilingInfo*>(GetEntryPointFromJniPtrSize(pointer_size));
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100301 }
302
Mathieu Chartiere401d142015-04-22 13:56:20 -0700303 void* GetEntryPointFromJni() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800304 return GetEntryPointFromJniPtrSize(sizeof(void*));
305 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100306
Mathieu Chartiere401d142015-04-22 13:56:20 -0700307 ALWAYS_INLINE void* GetEntryPointFromJniPtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100308 return GetNativePointer<void*>(EntryPointFromJniOffset(pointer_size), pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800309 }
310
Andreas Gampecbc96b82015-09-30 20:05:24 +0000311 void SetEntryPointFromJni(const void* entrypoint) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100312 DCHECK(IsNative());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700313 SetEntryPointFromJniPtrSize(entrypoint, sizeof(void*));
Mathieu Chartier2d721012014-11-10 11:08:06 -0800314 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100315
Mathieu Chartiere401d142015-04-22 13:56:20 -0700316 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100317 SetNativePointer(EntryPointFromJniOffset(pointer_size), entrypoint, pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800318 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800319
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800320 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
321 // conventions for a method of managed code. Returns false for Proxy methods.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700322 ALWAYS_INLINE bool IsRuntimeMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800323
324 // Is this a hand crafted method used for something like describing callee saves?
Mathieu Chartier90443472015-07-16 20:32:27 -0700325 bool IsCalleeSaveMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800326
Mathieu Chartier90443472015-07-16 20:32:27 -0700327 bool IsResolutionMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328
Mathieu Chartier90443472015-07-16 20:32:27 -0700329 bool IsImtConflictMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Jeff Hao88474b42013-10-23 16:24:40 -0700330
Mathieu Chartier90443472015-07-16 20:32:27 -0700331 bool IsImtUnimplementedMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700332
Mathieu Chartier90443472015-07-16 20:32:27 -0700333 MethodReference ToMethodReference() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier36b58f52014-12-10 12:06:45 -0800334 return MethodReference(GetDexFile(), GetDexMethodIndex());
335 }
336
Ian Rogersc449aa82013-07-29 14:35:46 -0700337 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
338 // indicates whether the found catch block is responsible for clearing the exception or whether
339 // a move-exception instruction is present.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700340 uint32_t FindCatchBlock(Handle<mirror::Class> exception_type, uint32_t dex_pc,
341 bool* has_no_move_exception)
Mathieu Chartier90443472015-07-16 20:32:27 -0700342 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800343
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700344 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700345 template<typename RootVisitorType>
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700346 void VisitRoots(RootVisitorType& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800347
Mathieu Chartier90443472015-07-16 20:32:27 -0700348 const DexFile* GetDexFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700349
Mathieu Chartier90443472015-07-16 20:32:27 -0700350 const char* GetDeclaringClassDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700351
Mathieu Chartier90443472015-07-16 20:32:27 -0700352 const char* GetShorty() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700353 uint32_t unused_length;
354 return GetShorty(&unused_length);
355 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700356
Mathieu Chartier90443472015-07-16 20:32:27 -0700357 const char* GetShorty(uint32_t* out_length) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700358
Mathieu Chartier90443472015-07-16 20:32:27 -0700359 const Signature GetSignature() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700360
Mathieu Chartier90443472015-07-16 20:32:27 -0700361 ALWAYS_INLINE const char* GetName() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700362
Mathieu Chartier90443472015-07-16 20:32:27 -0700363 mirror::String* GetNameAsString(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers6b14d552014-10-28 21:50:58 -0700364
Mathieu Chartier90443472015-07-16 20:32:27 -0700365 const DexFile::CodeItem* GetCodeItem() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700366
Vladimir Marko05792b92015-08-03 11:56:49 +0100367 bool IsResolvedTypeIdx(uint16_t type_idx, size_t ptr_size) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700368
Mathieu Chartier90443472015-07-16 20:32:27 -0700369 int32_t GetLineNumFromDexPC(uint32_t dex_pc) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700370
Mathieu Chartier90443472015-07-16 20:32:27 -0700371 const DexFile::ProtoId& GetPrototype() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700372
Mathieu Chartier90443472015-07-16 20:32:27 -0700373 const DexFile::TypeList* GetParameterTypeList() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700374
Mathieu Chartier90443472015-07-16 20:32:27 -0700375 const char* GetDeclaringClassSourceFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700376
Mathieu Chartier90443472015-07-16 20:32:27 -0700377 uint16_t GetClassDefIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700378
Mathieu Chartier90443472015-07-16 20:32:27 -0700379 const DexFile::ClassDef& GetClassDef() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700380
Mathieu Chartier90443472015-07-16 20:32:27 -0700381 const char* GetReturnTypeDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700382
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700383 const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700384 SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700385
Ian Rogersded66a02014-10-28 18:12:55 -0700386 // May cause thread suspension due to GetClassFromTypeIdx calling ResolveType this caused a large
387 // number of bugs at call sites.
Vladimir Marko05792b92015-08-03 11:56:49 +0100388 mirror::Class* GetReturnType(bool resolve, size_t ptr_size)
389 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersded66a02014-10-28 18:12:55 -0700390
Mathieu Chartier90443472015-07-16 20:32:27 -0700391 mirror::ClassLoader* GetClassLoader() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700392
Mathieu Chartier90443472015-07-16 20:32:27 -0700393 mirror::DexCache* GetDexCache() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700394
Mathieu Chartiere401d142015-04-22 13:56:20 -0700395 ALWAYS_INLINE ArtMethod* GetInterfaceMethodIfProxy(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700396 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700397
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700398 // May cause thread suspension due to class resolution.
399 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
Mathieu Chartier90443472015-07-16 20:32:27 -0700400 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700401
Vladimir Marko14632852015-08-17 12:07:23 +0100402 // Size of an instance of this native class.
403 static size_t Size(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700404 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size) +
Mathieu Chartiereace4582014-11-24 18:29:54 -0800405 (sizeof(PtrSizedFields) / sizeof(void*)) * pointer_size;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800406 }
407
Vladimir Marko14632852015-08-17 12:07:23 +0100408 // Alignment of an instance of this native class.
409 static size_t Alignment(size_t pointer_size) {
Vladimir Markocf36d492015-08-12 19:27:26 +0100410 // The ArtMethod alignment is the same as image pointer size. This differs from
Vladimir Marko14632852015-08-17 12:07:23 +0100411 // alignof(ArtMethod) if cross-compiling with pointer_size != sizeof(void*).
Vladimir Markocf36d492015-08-12 19:27:26 +0100412 return pointer_size;
413 }
414
Mathieu Chartiere401d142015-04-22 13:56:20 -0700415 void CopyFrom(const ArtMethod* src, size_t image_pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700416 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700417
Vladimir Marko05792b92015-08-03 11:56:49 +0100418 ALWAYS_INLINE GcRoot<mirror::Class>* GetDexCacheResolvedTypes(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700419 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700420
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100421 uint16_t IncrementCounter() {
422 return ++hotness_count_;
423 }
424
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100425 const uint8_t* GetQuickenedInfo() SHARED_REQUIRES(Locks::mutator_lock_);
426
Mathieu Chartier2d721012014-11-10 11:08:06 -0800427 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800428 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800429 // The class we are a part of.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700430 GcRoot<mirror::Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800431
Ian Rogersef7d42f2014-01-06 12:55:46 -0800432 // Access flags; low 16 bits are defined by spec.
433 uint32_t access_flags_;
434
435 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
436
437 // Offset to the CodeItem.
438 uint32_t dex_code_item_offset_;
439
440 // Index into method_ids of the dex file associated with this method.
441 uint32_t dex_method_index_;
442
443 /* End of dex file fields. */
444
445 // Entry within a dispatch table for this method. For static/direct methods the index is into
446 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
447 // ifTable.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100448 uint16_t method_index_;
449
450 // The hotness we measure for this method. Incremented by the interpreter. Not atomic, as we allow
451 // missing increments: if the method is hot, we will see it eventually.
452 uint16_t hotness_count_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800453
Mathieu Chartiereace4582014-11-24 18:29:54 -0800454 // Fake padding field gets inserted here.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800455
456 // Must be the last fields in the method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700457 // PACKED(4) is necessary for the correctness of
458 // RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size).
Mathieu Chartier2d721012014-11-10 11:08:06 -0800459 struct PACKED(4) PtrSizedFields {
Vladimir Marko05792b92015-08-03 11:56:49 +0100460 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
461 ArtMethod** dex_cache_resolved_methods_;
462
463 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
464 GcRoot<mirror::Class>* dex_cache_resolved_types_;
465
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100466 // Pointer to JNI function registered to this method, or a function to resolve the JNI function,
467 // or the profiling data for non-native methods.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800468 void* entry_point_from_jni_;
469
470 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
Elliott Hughes956af0f2014-12-11 14:34:28 -0800471 // the interpreter.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800472 void* entry_point_from_quick_compiled_code_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800473 } ptr_sized_fields_;
474
Mathieu Chartier02e25112013-08-14 16:14:24 -0700475 private:
Mathieu Chartiereace4582014-11-24 18:29:54 -0800476 static size_t PtrSizedFieldsOffset(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700477 // Round up to pointer size for padding field.
478 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size);
479 }
480
481 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100482 ALWAYS_INLINE T GetNativePointer(MemberOffset offset, size_t pointer_size) const {
483 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700484 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
485 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
486 if (pointer_size == sizeof(uint32_t)) {
487 return reinterpret_cast<T>(*reinterpret_cast<const uint32_t*>(addr));
488 } else {
489 auto v = *reinterpret_cast<const uint64_t*>(addr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100490 return reinterpret_cast<T>(dchecked_integral_cast<uintptr_t>(v));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700491 }
492 }
493
494 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100495 ALWAYS_INLINE void SetNativePointer(MemberOffset offset, T new_value, size_t pointer_size) {
496 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700497 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
498 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
499 if (pointer_size == sizeof(uint32_t)) {
500 uintptr_t ptr = reinterpret_cast<uintptr_t>(new_value);
Vladimir Marko05792b92015-08-03 11:56:49 +0100501 *reinterpret_cast<uint32_t*>(addr) = dchecked_integral_cast<uint32_t>(ptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700502 } else {
503 *reinterpret_cast<uint64_t*>(addr) = reinterpret_cast<uintptr_t>(new_value);
504 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800505 }
506
Mathieu Chartiere401d142015-04-22 13:56:20 -0700507 DISALLOW_COPY_AND_ASSIGN(ArtMethod); // Need to use CopyFrom to deal with 32 vs 64 bits.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800508};
509
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800510} // namespace art
511
Mathieu Chartiere401d142015-04-22 13:56:20 -0700512#endif // ART_RUNTIME_ART_METHOD_H_