blob: ec00a7b900bb7c26cfde5fc9c678920cab27f918 [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 Geoffray524e7ea2015-10-16 17:13:34 +010035class OatQuickMethodHeader;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010036class ProfilingInfo;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070037class ScopedObjectAccessAlreadyRunnable;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038class StringPiece;
Jeff Hao16743632013-05-08 10:59:04 -070039class ShadowFrame;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040
41namespace mirror {
Mathieu Chartiere401d142015-04-22 13:56:20 -070042class Array;
43class Class;
44class PointerArray;
45} // namespace mirror
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080046
Mathieu Chartiere401d142015-04-22 13:56:20 -070047class ArtMethod FINAL {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -070049 ArtMethod() : access_flags_(0), dex_code_item_offset_(0), dex_method_index_(0),
50 method_index_(0) { }
51
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +000052 ArtMethod(ArtMethod* src, size_t image_pointer_size) {
53 CopyFrom(src, image_pointer_size);
Mathieu Chartiere401d142015-04-22 13:56:20 -070054 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -070055
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070056 static ArtMethod* FromReflectedMethod(const ScopedObjectAccessAlreadyRunnable& soa,
57 jobject jlr_method)
Mathieu Chartier90443472015-07-16 20:32:27 -070058 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers62f05122014-03-21 11:21:29 -070059
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080060 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartier90443472015-07-16 20:32:27 -070061 ALWAYS_INLINE mirror::Class* GetDeclaringClass() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080062
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080063 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Mathieu Chartiere401d142015-04-22 13:56:20 -070064 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.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -080079 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +000080 ALWAYS_INLINE uint32_t GetAccessFlags();
Jeff Hao5d917302013-02-27 17:57:33 -080081
Mathieu Chartiere401d142015-04-22 13:56:20 -070082 void SetAccessFlags(uint32_t new_access_flags) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010083 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -070084 access_flags_ = new_access_flags;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080085 }
86
87 // Approximate what kind of method call would be used for this method.
Mathieu Chartier90443472015-07-16 20:32:27 -070088 InvokeType GetInvokeType() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080089
90 // Returns true if the method is declared public.
Andreas Gampecbc96b82015-09-30 20:05:24 +000091 bool IsPublic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080092 return (GetAccessFlags() & kAccPublic) != 0;
93 }
94
95 // Returns true if the method is declared private.
Andreas Gampecbc96b82015-09-30 20:05:24 +000096 bool IsPrivate() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080097 return (GetAccessFlags() & kAccPrivate) != 0;
98 }
99
100 // Returns true if the method is declared static.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000101 bool IsStatic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800102 return (GetAccessFlags() & kAccStatic) != 0;
103 }
104
105 // Returns true if the method is a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000106 bool IsConstructor() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800107 return (GetAccessFlags() & kAccConstructor) != 0;
108 }
109
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700110 // Returns true if the method is a class initializer.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000111 bool IsClassInitializer() {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700112 return IsConstructor() && IsStatic();
113 }
114
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800115 // Returns true if the method is static, private, or a constructor.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000116 bool IsDirect() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800117 return IsDirect(GetAccessFlags());
118 }
119
120 static bool IsDirect(uint32_t access_flags) {
Andreas Gampecbc96b82015-09-30 20:05:24 +0000121 constexpr uint32_t direct = kAccStatic | kAccPrivate | kAccConstructor;
122 return (access_flags & direct) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800123 }
124
125 // Returns true if the method is declared synchronized.
Andreas Gampecbc96b82015-09-30 20:05:24 +0000126 bool IsSynchronized() {
127 constexpr uint32_t synchonized = kAccSynchronized | kAccDeclaredSynchronized;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800128 return (GetAccessFlags() & synchonized) != 0;
129 }
130
Andreas Gampecbc96b82015-09-30 20:05:24 +0000131 bool IsFinal() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800132 return (GetAccessFlags() & kAccFinal) != 0;
133 }
134
Alex Light36121492016-02-22 13:43:29 -0800135 bool IsCopied() {
136 const bool copied = (GetAccessFlags() & kAccCopied) != 0;
137 // (IsMiranda() || IsDefaultConflicting()) implies copied
138 DCHECK(!(IsMiranda() || IsDefaultConflicting()) || copied)
139 << "Miranda or default-conflict methods must always be copied.";
140 return copied;
Alex Lightfcea56f2016-02-17 11:59:05 -0800141 }
142
Andreas Gampecbc96b82015-09-30 20:05:24 +0000143 bool IsMiranda() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800144 return (GetAccessFlags() & kAccMiranda) != 0;
145 }
146
Alex Light9139e002015-10-09 15:59:48 -0700147 // Returns true if invoking this method will not throw an AbstractMethodError or
148 // IncompatibleClassChangeError.
149 bool IsInvokable() {
150 return !IsAbstract() && !IsDefaultConflicting();
151 }
152
153 // A default conflict method is a special sentinel method that stands for a conflict between
154 // multiple default methods. It cannot be invoked, throwing an IncompatibleClassChangeError if one
155 // attempts to do so.
156 bool IsDefaultConflicting() {
157 return (GetAccessFlags() & kAccDefaultConflict) != 0u;
158 }
159
Alex Lighteb7c1442015-08-31 13:17:42 -0700160 // This is set by the class linker.
161 bool IsDefault() {
162 return (GetAccessFlags() & kAccDefault) != 0;
163 }
164
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800165 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Andreas Gampecbc96b82015-09-30 20:05:24 +0000166 bool IsNative() {
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800167 return (GetAccessFlags<kReadBarrierOption>() & kAccNative) != 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800168 }
169
Andreas Gampecbc96b82015-09-30 20:05:24 +0000170 bool IsFastNative() {
171 constexpr uint32_t mask = kAccFastNative | kAccNative;
Ian Rogers16ce0922014-01-10 14:59:36 -0800172 return (GetAccessFlags() & mask) == mask;
Ian Rogers1eb512d2013-10-18 15:42:20 -0700173 }
174
Andreas Gampecbc96b82015-09-30 20:05:24 +0000175 bool IsAbstract() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800176 return (GetAccessFlags() & kAccAbstract) != 0;
177 }
178
Andreas Gampecbc96b82015-09-30 20:05:24 +0000179 bool IsSynthetic() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800180 return (GetAccessFlags() & kAccSynthetic) != 0;
181 }
182
Mathieu Chartier90443472015-07-16 20:32:27 -0700183 bool IsProxyMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800184
Igor Murashkindf707e42016-02-02 16:56:50 -0800185 bool SkipAccessChecks() {
186 return (GetAccessFlags() & kAccSkipAccessChecks) != 0;
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200187 }
188
Igor Murashkindf707e42016-02-02 16:56:50 -0800189 void SetSkipAccessChecks() {
190 DCHECK(!SkipAccessChecks());
191 SetAccessFlags(GetAccessFlags() | kAccSkipAccessChecks);
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200192 }
193
Alex Lighteb7c1442015-08-31 13:17:42 -0700194 // Returns true if this method could be overridden by a default method.
Alex Light9139e002015-10-09 15:59:48 -0700195 bool IsOverridableByDefaultMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Alex Lighteb7c1442015-08-31 13:17:42 -0700196
Mathieu Chartier90443472015-07-16 20:32:27 -0700197 bool CheckIncompatibleClassChange(InvokeType type) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800198
Alex Light9139e002015-10-09 15:59:48 -0700199 // Throws the error that would result from trying to invoke this method (i.e.
200 // IncompatibleClassChangeError or AbstractMethodError). Only call if !IsInvokable();
201 void ThrowInvocationTimeError() SHARED_REQUIRES(Locks::mutator_lock_);
202
Mathieu Chartier90443472015-07-16 20:32:27 -0700203 uint16_t GetMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800204
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700205 // Doesn't do erroneous / unresolved class checks.
Mathieu Chartier90443472015-07-16 20:32:27 -0700206 uint16_t GetMethodIndexDuringLinking() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -0700207
Mathieu Chartier90443472015-07-16 20:32:27 -0700208 size_t GetVtableIndex() SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800209 return GetMethodIndex();
210 }
211
Mathieu Chartier90443472015-07-16 20:32:27 -0700212 void SetMethodIndex(uint16_t new_method_index) SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100213 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700214 method_index_ = new_method_index;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800215 }
216
Vladimir Markoc1363122015-04-09 14:13:13 +0100217 static MemberOffset DexMethodIndexOffset() {
218 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_method_index_);
219 }
220
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800221 static MemberOffset MethodIndexOffset() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700222 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800223 }
224
Mathieu Chartiere401d142015-04-22 13:56:20 -0700225 uint32_t GetCodeItemOffset() {
226 return dex_code_item_offset_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800227 }
228
Mathieu Chartiere401d142015-04-22 13:56:20 -0700229 void SetCodeItemOffset(uint32_t new_code_off) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100230 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700231 dex_code_item_offset_ = new_code_off;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800232 }
233
234 // Number of 32bit registers that would be required to hold all the arguments
235 static size_t NumArgRegisters(const StringPiece& shorty);
236
Mathieu Chartier90443472015-07-16 20:32:27 -0700237 ALWAYS_INLINE uint32_t GetDexMethodIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800238
Mathieu Chartiere401d142015-04-22 13:56:20 -0700239 void SetDexMethodIndex(uint32_t new_idx) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100240 // Not called within a transaction.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700241 dex_method_index_ = new_idx;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800242 }
243
Vladimir Marko05792b92015-08-03 11:56:49 +0100244 ALWAYS_INLINE ArtMethod** GetDexCacheResolvedMethods(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700245 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100246 ALWAYS_INLINE ArtMethod* GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700247 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100248 ALWAYS_INLINE void SetDexCacheResolvedMethod(uint16_t method_index,
249 ArtMethod* new_method,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700250 size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700251 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100252 ALWAYS_INLINE void SetDexCacheResolvedMethods(ArtMethod** new_dex_cache_methods, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700253 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100254 bool HasDexCacheResolvedMethods(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
255 bool HasSameDexCacheResolvedMethods(ArtMethod* other, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700256 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100257 bool HasSameDexCacheResolvedMethods(ArtMethod** other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700258 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800259
Andreas Gampe58a5af82014-07-31 16:23:49 -0700260 template <bool kWithCheck = true>
Vladimir Marko05792b92015-08-03 11:56:49 +0100261 mirror::Class* GetDexCacheResolvedType(uint32_t type_idx, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700262 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100263 void SetDexCacheResolvedTypes(GcRoot<mirror::Class>* new_dex_cache_types, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700264 SHARED_REQUIRES(Locks::mutator_lock_);
Vladimir Marko05792b92015-08-03 11:56:49 +0100265 bool HasDexCacheResolvedTypes(size_t pointer_size) SHARED_REQUIRES(Locks::mutator_lock_);
266 bool HasSameDexCacheResolvedTypes(ArtMethod* other, size_t pointer_size)
267 SHARED_REQUIRES(Locks::mutator_lock_);
268 bool HasSameDexCacheResolvedTypes(GcRoot<mirror::Class>* other_cache, size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700269 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800270
Ian Rogersa0485602014-12-02 15:48:04 -0800271 // Get the Class* from the type index into this method's dex cache.
Vladimir Marko05792b92015-08-03 11:56:49 +0100272 mirror::Class* GetClassFromTypeIndex(uint16_t type_idx, bool resolve, size_t ptr_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700273 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersa0485602014-12-02 15:48:04 -0800274
Alex Light6c8467f2015-11-20 15:03:26 -0800275 // Returns true if this method has the same name and signature of the other method.
276 bool HasSameNameAndSignature(ArtMethod* other) SHARED_REQUIRES(Locks::mutator_lock_);
277
Ian Rogerse0a02da2014-12-02 14:10:53 -0800278 // Find the method that this method overrides.
Alex Light705ad492015-09-21 11:36:30 -0700279 ArtMethod* FindOverriddenMethod(size_t pointer_size)
280 REQUIRES(Roles::uninterruptible_)
281 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800282
Ian Rogerse0a02da2014-12-02 14:10:53 -0800283 // Find the method index for this method within other_dexfile. If this method isn't present then
284 // return DexFile::kDexNoIndex. The name_and_signature_idx MUST refer to a MethodId with the same
285 // name and signature in the other_dexfile, such as the method index used to resolve this method
286 // in the other_dexfile.
287 uint32_t FindDexMethodIndexInOtherDexFile(const DexFile& other_dexfile,
288 uint32_t name_and_signature_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700289 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogerse0a02da2014-12-02 14:10:53 -0800290
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700291 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, const char* shorty)
Mathieu Chartier90443472015-07-16 20:32:27 -0700292 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800293
Mathieu Chartiere401d142015-04-22 13:56:20 -0700294 const void* GetEntryPointFromQuickCompiledCode() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800295 return GetEntryPointFromQuickCompiledCodePtrSize(sizeof(void*));
296 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700297 ALWAYS_INLINE const void* GetEntryPointFromQuickCompiledCodePtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100298 return GetNativePointer<const void*>(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800299 EntryPointFromQuickCompiledCodeOffset(pointer_size), pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800300 }
301
Mathieu Chartiere401d142015-04-22 13:56:20 -0700302 void SetEntryPointFromQuickCompiledCode(const void* entry_point_from_quick_compiled_code) {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800303 SetEntryPointFromQuickCompiledCodePtrSize(entry_point_from_quick_compiled_code,
304 sizeof(void*));
305 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800306 ALWAYS_INLINE void SetEntryPointFromQuickCompiledCodePtrSize(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700307 const void* entry_point_from_quick_compiled_code, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100308 SetNativePointer(EntryPointFromQuickCompiledCodeOffset(pointer_size),
309 entry_point_from_quick_compiled_code, pointer_size);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800310 }
311
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700312 void RegisterNative(const void* native_method, bool is_fast)
Mathieu Chartier90443472015-07-16 20:32:27 -0700313 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800314
Mathieu Chartier90443472015-07-16 20:32:27 -0700315 void UnregisterNative() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800316
Vladimir Marko05792b92015-08-03 11:56:49 +0100317 static MemberOffset DexCacheResolvedMethodsOffset(size_t pointer_size) {
318 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
319 PtrSizedFields, dex_cache_resolved_methods_) / sizeof(void*) * pointer_size);
320 }
321
322 static MemberOffset DexCacheResolvedTypesOffset(size_t pointer_size) {
323 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
324 PtrSizedFields, dex_cache_resolved_types_) / sizeof(void*) * pointer_size);
325 }
326
Mathieu Chartier2d721012014-11-10 11:08:06 -0800327 static MemberOffset EntryPointFromJniOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800328 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800329 PtrSizedFields, entry_point_from_jni_) / sizeof(void*) * pointer_size);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800330 }
331
Mathieu Chartier2d721012014-11-10 11:08:06 -0800332 static MemberOffset EntryPointFromQuickCompiledCodeOffset(size_t pointer_size) {
Mathieu Chartiereace4582014-11-24 18:29:54 -0800333 return MemberOffset(PtrSizedFieldsOffset(pointer_size) + OFFSETOF_MEMBER(
Mathieu Chartier2d721012014-11-10 11:08:06 -0800334 PtrSizedFields, entry_point_from_quick_compiled_code_) / sizeof(void*) * pointer_size);
335 }
336
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700337 ProfilingInfo* GetProfilingInfo(size_t pointer_size) {
338 return reinterpret_cast<ProfilingInfo*>(GetEntryPointFromJniPtrSize(pointer_size));
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100339 }
340
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000341 ALWAYS_INLINE void SetProfilingInfo(ProfilingInfo* info) {
342 SetEntryPointFromJniPtrSize(info, sizeof(void*));
343 }
344
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000345 ALWAYS_INLINE void SetProfilingInfoPtrSize(ProfilingInfo* info, size_t pointer_size) {
346 SetEntryPointFromJniPtrSize(info, pointer_size);
347 }
348
Nicolas Geoffray26705e22015-10-28 12:50:11 +0000349 static MemberOffset ProfilingInfoOffset() {
350 return EntryPointFromJniOffset(sizeof(void*));
351 }
352
Mathieu Chartiere401d142015-04-22 13:56:20 -0700353 void* GetEntryPointFromJni() {
Mathieu Chartier2d721012014-11-10 11:08:06 -0800354 return GetEntryPointFromJniPtrSize(sizeof(void*));
355 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100356
Mathieu Chartiere401d142015-04-22 13:56:20 -0700357 ALWAYS_INLINE void* GetEntryPointFromJniPtrSize(size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100358 return GetNativePointer<void*>(EntryPointFromJniOffset(pointer_size), pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800359 }
360
Andreas Gampecbc96b82015-09-30 20:05:24 +0000361 void SetEntryPointFromJni(const void* entrypoint) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100362 DCHECK(IsNative());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700363 SetEntryPointFromJniPtrSize(entrypoint, sizeof(void*));
Mathieu Chartier2d721012014-11-10 11:08:06 -0800364 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100365
Mathieu Chartiere401d142015-04-22 13:56:20 -0700366 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, size_t pointer_size) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100367 SetNativePointer(EntryPointFromJniOffset(pointer_size), entrypoint, pointer_size);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800368 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800369
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800370 // Is this a CalleSaveMethod or ResolutionMethod and therefore doesn't adhere to normal
371 // conventions for a method of managed code. Returns false for Proxy methods.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700372 ALWAYS_INLINE bool IsRuntimeMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800373
374 // Is this a hand crafted method used for something like describing callee saves?
Mathieu Chartier90443472015-07-16 20:32:27 -0700375 bool IsCalleeSaveMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800376
Mathieu Chartier90443472015-07-16 20:32:27 -0700377 bool IsResolutionMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800378
Mathieu Chartier90443472015-07-16 20:32:27 -0700379 bool IsImtConflictMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Jeff Hao88474b42013-10-23 16:24:40 -0700380
Mathieu Chartier90443472015-07-16 20:32:27 -0700381 bool IsImtUnimplementedMethod() SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700382
Mathieu Chartier90443472015-07-16 20:32:27 -0700383 MethodReference ToMethodReference() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier36b58f52014-12-10 12:06:45 -0800384 return MethodReference(GetDexFile(), GetDexMethodIndex());
385 }
386
Ian Rogersc449aa82013-07-29 14:35:46 -0700387 // Find the catch block for the given exception type and dex_pc. When a catch block is found,
388 // indicates whether the found catch block is responsible for clearing the exception or whether
389 // a move-exception instruction is present.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700390 uint32_t FindCatchBlock(Handle<mirror::Class> exception_type, uint32_t dex_pc,
391 bool* has_no_move_exception)
Mathieu Chartier90443472015-07-16 20:32:27 -0700392 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800393
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700394 // NO_THREAD_SAFETY_ANALYSIS since we don't know what the callback requires.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700395 template<typename RootVisitorType>
Mathieu Chartier1147b9b2015-09-14 18:50:08 -0700396 void VisitRoots(RootVisitorType& visitor, size_t pointer_size) NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800397
Mathieu Chartier90443472015-07-16 20:32:27 -0700398 const DexFile* GetDexFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700399
Mathieu Chartier90443472015-07-16 20:32:27 -0700400 const char* GetDeclaringClassDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700401
Mathieu Chartier90443472015-07-16 20:32:27 -0700402 const char* GetShorty() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700403 uint32_t unused_length;
404 return GetShorty(&unused_length);
405 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700406
Mathieu Chartier90443472015-07-16 20:32:27 -0700407 const char* GetShorty(uint32_t* out_length) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700408
Mathieu Chartier90443472015-07-16 20:32:27 -0700409 const Signature GetSignature() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700410
Mathieu Chartier90443472015-07-16 20:32:27 -0700411 ALWAYS_INLINE const char* GetName() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700412
Mathieu Chartier90443472015-07-16 20:32:27 -0700413 mirror::String* GetNameAsString(Thread* self) SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogers6b14d552014-10-28 21:50:58 -0700414
Mathieu Chartier90443472015-07-16 20:32:27 -0700415 const DexFile::CodeItem* GetCodeItem() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700416
Vladimir Marko05792b92015-08-03 11:56:49 +0100417 bool IsResolvedTypeIdx(uint16_t type_idx, size_t ptr_size) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700418
Mathieu Chartier90443472015-07-16 20:32:27 -0700419 int32_t GetLineNumFromDexPC(uint32_t dex_pc) SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700420
Mathieu Chartier90443472015-07-16 20:32:27 -0700421 const DexFile::ProtoId& GetPrototype() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700422
Mathieu Chartier90443472015-07-16 20:32:27 -0700423 const DexFile::TypeList* GetParameterTypeList() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700424
Mathieu Chartier90443472015-07-16 20:32:27 -0700425 const char* GetDeclaringClassSourceFile() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700426
Mathieu Chartier90443472015-07-16 20:32:27 -0700427 uint16_t GetClassDefIndex() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700428
Mathieu Chartier90443472015-07-16 20:32:27 -0700429 const DexFile::ClassDef& GetClassDef() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700430
Mathieu Chartier90443472015-07-16 20:32:27 -0700431 const char* GetReturnTypeDescriptor() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700432
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700433 const char* GetTypeDescriptorFromTypeIdx(uint16_t type_idx)
Mathieu Chartier90443472015-07-16 20:32:27 -0700434 SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700435
Ian Rogersded66a02014-10-28 18:12:55 -0700436 // May cause thread suspension due to GetClassFromTypeIdx calling ResolveType this caused a large
437 // number of bugs at call sites.
Vladimir Marko05792b92015-08-03 11:56:49 +0100438 mirror::Class* GetReturnType(bool resolve, size_t ptr_size)
439 SHARED_REQUIRES(Locks::mutator_lock_);
Ian Rogersded66a02014-10-28 18:12:55 -0700440
Mathieu Chartier90443472015-07-16 20:32:27 -0700441 mirror::ClassLoader* GetClassLoader() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700442
Mathieu Chartier90443472015-07-16 20:32:27 -0700443 mirror::DexCache* GetDexCache() SHARED_REQUIRES(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700444
Mathieu Chartiere401d142015-04-22 13:56:20 -0700445 ALWAYS_INLINE ArtMethod* GetInterfaceMethodIfProxy(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700446 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700447
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700448 // May cause thread suspension due to class resolution.
449 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
Mathieu Chartier90443472015-07-16 20:32:27 -0700450 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700451
Vladimir Marko14632852015-08-17 12:07:23 +0100452 // Size of an instance of this native class.
453 static size_t Size(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700454 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size) +
Mathieu Chartiereace4582014-11-24 18:29:54 -0800455 (sizeof(PtrSizedFields) / sizeof(void*)) * pointer_size;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800456 }
457
Vladimir Marko14632852015-08-17 12:07:23 +0100458 // Alignment of an instance of this native class.
459 static size_t Alignment(size_t pointer_size) {
Vladimir Markocf36d492015-08-12 19:27:26 +0100460 // The ArtMethod alignment is the same as image pointer size. This differs from
Vladimir Marko14632852015-08-17 12:07:23 +0100461 // alignof(ArtMethod) if cross-compiling with pointer_size != sizeof(void*).
Vladimir Markocf36d492015-08-12 19:27:26 +0100462 return pointer_size;
463 }
464
Nicolas Geoffray22cf3d32015-11-02 11:57:11 +0000465 void CopyFrom(ArtMethod* src, size_t image_pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700466 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700467
Vladimir Marko05792b92015-08-03 11:56:49 +0100468 ALWAYS_INLINE GcRoot<mirror::Class>* GetDexCacheResolvedTypes(size_t pointer_size)
Mathieu Chartier90443472015-07-16 20:32:27 -0700469 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700470
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100471 uint16_t IncrementCounter() {
472 return ++hotness_count_;
473 }
474
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +0100475 void ClearCounter() {
476 hotness_count_ = 0;
477 }
478
Nicolas Geoffray6bc43742015-10-12 18:11:10 +0100479 const uint8_t* GetQuickenedInfo() SHARED_REQUIRES(Locks::mutator_lock_);
480
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100481 // Returns the method header for the compiled code containing 'pc'. Note that runtime
482 // methods will return null for this method, as they are not oat based.
483 const OatQuickMethodHeader* GetOatQuickMethodHeader(uintptr_t pc)
484 SHARED_REQUIRES(Locks::mutator_lock_);
485
Nicolas Geoffraya5891e82015-11-06 14:18:27 +0000486 // Returns whether the method has any compiled code, JIT or AOT.
487 bool HasAnyCompiledCode() SHARED_REQUIRES(Locks::mutator_lock_);
488
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800489
490 // Update heap objects and non-entrypoint pointers by the passed in visitor for image relocation.
491 // Does not use read barrier.
492 template <typename Visitor>
493 ALWAYS_INLINE void UpdateObjectsForImageRelocation(const Visitor& visitor)
494 SHARED_REQUIRES(Locks::mutator_lock_);
495
496 // Update entry points by passing them through the visitor.
Mathieu Chartiere7f75f32016-02-01 16:08:15 -0800497 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier, typename Visitor>
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800498 ALWAYS_INLINE void UpdateEntrypoints(const Visitor& visitor);
499
Mathieu Chartier2d721012014-11-10 11:08:06 -0800500 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800501 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Ian Rogersef7d42f2014-01-06 12:55:46 -0800502 // The class we are a part of.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700503 GcRoot<mirror::Class> declaring_class_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800504
Ian Rogersef7d42f2014-01-06 12:55:46 -0800505 // Access flags; low 16 bits are defined by spec.
506 uint32_t access_flags_;
507
508 /* Dex file fields. The defining dex file is available via declaring_class_->dex_cache_ */
509
510 // Offset to the CodeItem.
511 uint32_t dex_code_item_offset_;
512
513 // Index into method_ids of the dex file associated with this method.
514 uint32_t dex_method_index_;
515
516 /* End of dex file fields. */
517
518 // Entry within a dispatch table for this method. For static/direct methods the index is into
519 // the declaringClass.directMethods, for virtual methods the vtable and for interface methods the
520 // ifTable.
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100521 uint16_t method_index_;
522
523 // The hotness we measure for this method. Incremented by the interpreter. Not atomic, as we allow
524 // missing increments: if the method is hot, we will see it eventually.
525 uint16_t hotness_count_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800526
Mathieu Chartiereace4582014-11-24 18:29:54 -0800527 // Fake padding field gets inserted here.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800528
529 // Must be the last fields in the method.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700530 // PACKED(4) is necessary for the correctness of
531 // RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size).
Mathieu Chartier2d721012014-11-10 11:08:06 -0800532 struct PACKED(4) PtrSizedFields {
Vladimir Marko05792b92015-08-03 11:56:49 +0100533 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
534 ArtMethod** dex_cache_resolved_methods_;
535
536 // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access.
537 GcRoot<mirror::Class>* dex_cache_resolved_types_;
538
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100539 // Pointer to JNI function registered to this method, or a function to resolve the JNI function,
540 // or the profiling data for non-native methods.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800541 void* entry_point_from_jni_;
542
543 // Method dispatch from quick compiled code invokes this pointer which may cause bridging into
Elliott Hughes956af0f2014-12-11 14:34:28 -0800544 // the interpreter.
Mathieu Chartier2d721012014-11-10 11:08:06 -0800545 void* entry_point_from_quick_compiled_code_;
Mathieu Chartier2d721012014-11-10 11:08:06 -0800546 } ptr_sized_fields_;
547
Mathieu Chartier02e25112013-08-14 16:14:24 -0700548 private:
Mathieu Chartiereace4582014-11-24 18:29:54 -0800549 static size_t PtrSizedFieldsOffset(size_t pointer_size) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700550 // Round up to pointer size for padding field.
551 return RoundUp(OFFSETOF_MEMBER(ArtMethod, ptr_sized_fields_), pointer_size);
552 }
553
554 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100555 ALWAYS_INLINE T GetNativePointer(MemberOffset offset, size_t pointer_size) const {
556 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700557 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
558 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
559 if (pointer_size == sizeof(uint32_t)) {
560 return reinterpret_cast<T>(*reinterpret_cast<const uint32_t*>(addr));
561 } else {
562 auto v = *reinterpret_cast<const uint64_t*>(addr);
Vladimir Marko05792b92015-08-03 11:56:49 +0100563 return reinterpret_cast<T>(dchecked_integral_cast<uintptr_t>(v));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700564 }
565 }
566
567 template<typename T>
Vladimir Marko05792b92015-08-03 11:56:49 +0100568 ALWAYS_INLINE void SetNativePointer(MemberOffset offset, T new_value, size_t pointer_size) {
569 static_assert(std::is_pointer<T>::value, "T must be a pointer type");
Mathieu Chartiere401d142015-04-22 13:56:20 -0700570 DCHECK(ValidPointerSize(pointer_size)) << pointer_size;
571 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value();
572 if (pointer_size == sizeof(uint32_t)) {
573 uintptr_t ptr = reinterpret_cast<uintptr_t>(new_value);
Vladimir Marko05792b92015-08-03 11:56:49 +0100574 *reinterpret_cast<uint32_t*>(addr) = dchecked_integral_cast<uint32_t>(ptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700575 } else {
576 *reinterpret_cast<uint64_t*>(addr) = reinterpret_cast<uintptr_t>(new_value);
577 }
Mathieu Chartier2d721012014-11-10 11:08:06 -0800578 }
579
Mathieu Chartiere401d142015-04-22 13:56:20 -0700580 DISALLOW_COPY_AND_ASSIGN(ArtMethod); // Need to use CopyFrom to deal with 32 vs 64 bits.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800581};
582
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800583} // namespace art
584
Mathieu Chartiere401d142015-04-22 13:56:20 -0700585#endif // ART_RUNTIME_ART_METHOD_H_