Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1 | /* |
| 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 Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_ART_METHOD_INL_H_ |
| 18 | #define ART_RUNTIME_ART_METHOD_INL_H_ |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 19 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 20 | #include "art_method.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 21 | |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 22 | #include "art_field.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 23 | #include "dex_file.h" |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 24 | #include "dex_file-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 25 | #include "gc_root-inl.h" |
| 26 | #include "mirror/class-inl.h" |
| 27 | #include "mirror/dex_cache.h" |
| 28 | #include "mirror/object-inl.h" |
| 29 | #include "mirror/object_array.h" |
Vladimir Marko | 96c6ab9 | 2014-04-08 14:00:50 +0100 | [diff] [blame] | 30 | #include "oat.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 31 | #include "quick/quick_method_frame_info.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 32 | #include "read_barrier-inl.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 33 | #include "runtime-inl.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 34 | #include "utils.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 35 | |
| 36 | namespace art { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 37 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 38 | inline mirror::Class* ArtMethod::GetDeclaringClassUnchecked() { |
Hiroshi Yamauchi | 3f64f25 | 2015-06-12 18:35:06 -0700 | [diff] [blame] | 39 | GcRootSource gc_root_source(this); |
| 40 | return declaring_class_.Read(&gc_root_source); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 43 | inline mirror::Class* ArtMethod::GetDeclaringClassNoBarrier() { |
| 44 | return declaring_class_.Read<kWithoutReadBarrier>(); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 47 | inline mirror::Class* ArtMethod::GetDeclaringClass() { |
| 48 | mirror::Class* result = GetDeclaringClassUnchecked(); |
| 49 | if (kIsDebugBuild) { |
| 50 | if (!IsRuntimeMethod()) { |
| 51 | CHECK(result != nullptr) << this; |
| 52 | CHECK(result->IsIdxLoaded() || result->IsErroneous()) |
| 53 | << result->GetStatus() << " " << PrettyClass(result); |
| 54 | } else { |
| 55 | CHECK(result == nullptr) << this; |
| 56 | } |
| 57 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 58 | return result; |
| 59 | } |
| 60 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 61 | inline void ArtMethod::SetDeclaringClass(mirror::Class* new_declaring_class) { |
| 62 | declaring_class_ = GcRoot<mirror::Class>(new_declaring_class); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 63 | } |
| 64 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 65 | inline uint32_t ArtMethod::GetAccessFlags() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 66 | DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() || |
| 67 | GetDeclaringClass()->IsErroneous()); |
| 68 | return access_flags_; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 69 | } |
| 70 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 71 | inline uint16_t ArtMethod::GetMethodIndex() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 72 | DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsResolved() || |
| 73 | GetDeclaringClass()->IsErroneous()); |
| 74 | return method_index_; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 75 | } |
| 76 | |
Mathieu Chartier | 9f3629d | 2014-10-28 18:23:02 -0700 | [diff] [blame] | 77 | inline uint16_t ArtMethod::GetMethodIndexDuringLinking() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 78 | return method_index_; |
Mathieu Chartier | 9f3629d | 2014-10-28 18:23:02 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 81 | inline uint32_t ArtMethod::GetDexMethodIndex() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 82 | DCHECK(IsRuntimeMethod() || GetDeclaringClass()->IsIdxLoaded() || |
| 83 | GetDeclaringClass()->IsErroneous()); |
| 84 | return dex_method_index_; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 85 | } |
| 86 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 87 | inline mirror::PointerArray* ArtMethod::GetDexCacheResolvedMethods() { |
Hiroshi Yamauchi | 3f64f25 | 2015-06-12 18:35:06 -0700 | [diff] [blame] | 88 | GcRootSource gc_root_source(this); |
| 89 | return dex_cache_resolved_methods_.Read(&gc_root_source); |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 92 | inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size) { |
| 93 | auto* method = GetDexCacheResolvedMethods()->GetElementPtrSize<ArtMethod*>( |
| 94 | method_index, ptr_size); |
| 95 | if (LIKELY(method != nullptr)) { |
| 96 | auto* declaring_class = method->GetDeclaringClass(); |
| 97 | if (LIKELY(declaring_class == nullptr || !declaring_class->IsErroneous())) { |
| 98 | return method; |
| 99 | } |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 100 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 101 | return nullptr; |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 102 | } |
| 103 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 104 | inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_idx, ArtMethod* new_method, |
| 105 | size_t ptr_size) { |
| 106 | DCHECK(new_method == nullptr || new_method->GetDeclaringClass() != nullptr); |
| 107 | GetDexCacheResolvedMethods()->SetElementPtrSize(method_idx, new_method, ptr_size); |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | inline bool ArtMethod::HasDexCacheResolvedMethods() { |
| 111 | return GetDexCacheResolvedMethods() != nullptr; |
| 112 | } |
| 113 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 114 | inline bool ArtMethod::HasSameDexCacheResolvedMethods(mirror::PointerArray* other_cache) { |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 115 | return GetDexCacheResolvedMethods() == other_cache; |
| 116 | } |
| 117 | |
| 118 | inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other) { |
| 119 | return GetDexCacheResolvedMethods() == other->GetDexCacheResolvedMethods(); |
| 120 | } |
| 121 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 122 | inline mirror::ObjectArray<mirror::Class>* ArtMethod::GetDexCacheResolvedTypes() { |
Hiroshi Yamauchi | 3f64f25 | 2015-06-12 18:35:06 -0700 | [diff] [blame] | 123 | GcRootSource gc_root_source(this); |
| 124 | return dex_cache_resolved_types_.Read(&gc_root_source); |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 127 | template <bool kWithCheck> |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 128 | inline mirror::Class* ArtMethod::GetDexCacheResolvedType(uint32_t type_index) { |
| 129 | mirror::Class* klass = kWithCheck ? |
| 130 | GetDexCacheResolvedTypes()->Get(type_index) : |
| 131 | GetDexCacheResolvedTypes()->GetWithoutChecks(type_index); |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 132 | return (klass != nullptr && !klass->IsErroneous()) ? klass : nullptr; |
| 133 | } |
| 134 | |
| 135 | inline bool ArtMethod::HasDexCacheResolvedTypes() { |
| 136 | return GetDexCacheResolvedTypes() != nullptr; |
| 137 | } |
| 138 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 139 | inline bool ArtMethod::HasSameDexCacheResolvedTypes( |
| 140 | mirror::ObjectArray<mirror::Class>* other_cache) { |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 141 | return GetDexCacheResolvedTypes() == other_cache; |
| 142 | } |
| 143 | |
| 144 | inline bool ArtMethod::HasSameDexCacheResolvedTypes(ArtMethod* other) { |
| 145 | return GetDexCacheResolvedTypes() == other->GetDexCacheResolvedTypes(); |
| 146 | } |
| 147 | |
Ian Rogers | a048560 | 2014-12-02 15:48:04 -0800 | [diff] [blame] | 148 | inline mirror::Class* ArtMethod::GetClassFromTypeIndex(uint16_t type_idx, bool resolve) { |
| 149 | mirror::Class* type = GetDexCacheResolvedType(type_idx); |
| 150 | if (type == nullptr && resolve) { |
| 151 | type = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, this); |
| 152 | CHECK(type != nullptr || Thread::Current()->IsExceptionPending()); |
| 153 | } |
| 154 | return type; |
| 155 | } |
| 156 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 157 | inline uint32_t ArtMethod::GetCodeSize() { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 158 | DCHECK(!IsRuntimeMethod() && !IsProxyMethod()) << PrettyMethod(this); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 159 | return GetCodeSize(EntryPointToCodePointer(GetEntryPointFromQuickCompiledCode())); |
| 160 | } |
| 161 | |
| 162 | inline uint32_t ArtMethod::GetCodeSize(const void* code) { |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 163 | if (code == nullptr) { |
| 164 | return 0u; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 165 | } |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 166 | return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].code_size_; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 167 | } |
| 168 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 169 | inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 170 | switch (type) { |
| 171 | case kStatic: |
| 172 | return !IsStatic(); |
| 173 | case kDirect: |
| 174 | return !IsDirect() || IsStatic(); |
| 175 | case kVirtual: { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 176 | mirror::Class* methods_class = GetDeclaringClass(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 177 | return IsDirect() || (methods_class->IsInterface() && !IsMiranda()); |
| 178 | } |
| 179 | case kSuper: |
Andreas Gampe | 8f252e6 | 2014-08-25 20:46:31 -0700 | [diff] [blame] | 180 | // Constructors and static methods are called with invoke-direct. |
| 181 | // Interface methods cannot be invoked with invoke-super. |
| 182 | return IsConstructor() || IsStatic() || GetDeclaringClass()->IsInterface(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 183 | case kInterface: { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 184 | mirror::Class* methods_class = GetDeclaringClass(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 185 | return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass()); |
| 186 | } |
| 187 | default: |
| 188 | LOG(FATAL) << "Unreachable - invocation type: " << type; |
Ian Rogers | 2c4257b | 2014-10-24 14:20:06 -0700 | [diff] [blame] | 189 | UNREACHABLE(); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 193 | inline uint32_t ArtMethod::GetQuickOatCodeOffset() { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 194 | DCHECK(!Runtime::Current()->IsStarted()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 195 | return PointerToLowMemUInt32(GetEntryPointFromQuickCompiledCode()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 196 | } |
| 197 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 198 | inline void ArtMethod::SetQuickOatCodeOffset(uint32_t code_offset) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 199 | DCHECK(!Runtime::Current()->IsStarted()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 200 | SetEntryPointFromQuickCompiledCode(reinterpret_cast<void*>(code_offset)); |
| 201 | } |
| 202 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 203 | inline const uint8_t* ArtMethod::GetMappingTable(size_t pointer_size) { |
| 204 | const void* code_pointer = GetQuickOatCodePointer(pointer_size); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 205 | if (code_pointer == nullptr) { |
| 206 | return nullptr; |
| 207 | } |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 208 | return GetMappingTable(code_pointer, pointer_size); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 209 | } |
| 210 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 211 | inline const uint8_t* ArtMethod::GetMappingTable(const void* code_pointer, size_t pointer_size) { |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 212 | DCHECK(code_pointer != nullptr); |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 213 | DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size)); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 214 | uint32_t offset = |
| 215 | reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].mapping_table_offset_; |
| 216 | if (UNLIKELY(offset == 0u)) { |
| 217 | return nullptr; |
| 218 | } |
| 219 | return reinterpret_cast<const uint8_t*>(code_pointer) - offset; |
| 220 | } |
| 221 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 222 | inline const uint8_t* ArtMethod::GetVmapTable(size_t pointer_size) { |
| 223 | const void* code_pointer = GetQuickOatCodePointer(pointer_size); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 224 | if (code_pointer == nullptr) { |
| 225 | return nullptr; |
| 226 | } |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 227 | return GetVmapTable(code_pointer, pointer_size); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 228 | } |
| 229 | |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 230 | inline const uint8_t* ArtMethod::GetVmapTable(const void* code_pointer, size_t pointer_size) { |
| 231 | CHECK(!IsOptimized(pointer_size)) << "Unimplemented vmap table for optimized compiler"; |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 232 | DCHECK(code_pointer != nullptr); |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 233 | DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size)); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 234 | uint32_t offset = |
| 235 | reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].vmap_table_offset_; |
| 236 | if (UNLIKELY(offset == 0u)) { |
| 237 | return nullptr; |
| 238 | } |
| 239 | return reinterpret_cast<const uint8_t*>(code_pointer) - offset; |
| 240 | } |
| 241 | |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 242 | inline CodeInfo ArtMethod::GetOptimizedCodeInfo() { |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 243 | DCHECK(IsOptimized(sizeof(void*))); |
| 244 | const void* code_pointer = GetQuickOatCodePointer(sizeof(void*)); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 245 | DCHECK(code_pointer != nullptr); |
| 246 | uint32_t offset = |
| 247 | reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].vmap_table_offset_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 248 | const void* data = |
| 249 | reinterpret_cast<const void*>(reinterpret_cast<const uint8_t*>(code_pointer) - offset); |
Nicolas Geoffray | e982f0b | 2014-08-13 02:11:24 +0100 | [diff] [blame] | 250 | return CodeInfo(data); |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 251 | } |
| 252 | |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 253 | inline const uint8_t* ArtMethod::GetNativeGcMap(size_t pointer_size) { |
| 254 | const void* code_pointer = GetQuickOatCodePointer(pointer_size); |
| 255 | if (code_pointer == nullptr) { |
| 256 | return nullptr; |
| 257 | } |
| 258 | return GetNativeGcMap(code_pointer, pointer_size); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 259 | } |
| 260 | |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 261 | inline const uint8_t* ArtMethod::GetNativeGcMap(const void* code_pointer, size_t pointer_size) { |
| 262 | DCHECK(code_pointer != nullptr); |
| 263 | DCHECK_EQ(code_pointer, GetQuickOatCodePointer(pointer_size)); |
| 264 | uint32_t offset = |
| 265 | reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].gc_map_offset_; |
| 266 | if (UNLIKELY(offset == 0u)) { |
| 267 | return nullptr; |
| 268 | } |
| 269 | return reinterpret_cast<const uint8_t*>(code_pointer) - offset; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 270 | } |
| 271 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 272 | inline bool ArtMethod::IsRuntimeMethod() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 273 | return dex_method_index_ == DexFile::kDexNoIndex; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 274 | } |
| 275 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 276 | inline bool ArtMethod::IsCalleeSaveMethod() { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 277 | if (!IsRuntimeMethod()) { |
| 278 | return false; |
| 279 | } |
| 280 | Runtime* runtime = Runtime::Current(); |
| 281 | bool result = false; |
| 282 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 283 | if (this == runtime->GetCalleeSaveMethod(Runtime::CalleeSaveType(i))) { |
| 284 | result = true; |
| 285 | break; |
| 286 | } |
| 287 | } |
| 288 | return result; |
| 289 | } |
| 290 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 291 | inline bool ArtMethod::IsResolutionMethod() { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 292 | bool result = this == Runtime::Current()->GetResolutionMethod(); |
| 293 | // Check that if we do think it is phony it looks like the resolution method. |
| 294 | DCHECK(!result || IsRuntimeMethod()); |
| 295 | return result; |
| 296 | } |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 297 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 298 | inline bool ArtMethod::IsImtConflictMethod() { |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 299 | bool result = this == Runtime::Current()->GetImtConflictMethod(); |
| 300 | // Check that if we do think it is phony it looks like the imt conflict method. |
| 301 | DCHECK(!result || IsRuntimeMethod()); |
| 302 | return result; |
| 303 | } |
Mathieu Chartier | 4e30541 | 2014-02-19 10:54:44 -0800 | [diff] [blame] | 304 | |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 305 | inline bool ArtMethod::IsImtUnimplementedMethod() { |
| 306 | bool result = this == Runtime::Current()->GetImtUnimplementedMethod(); |
| 307 | // Check that if we do think it is phony it looks like the imt unimplemented method. |
| 308 | DCHECK(!result || IsRuntimeMethod()); |
| 309 | return result; |
| 310 | } |
| 311 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 312 | inline uintptr_t ArtMethod::NativeQuickPcOffset(const uintptr_t pc) { |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 313 | const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor( |
| 314 | this, sizeof(void*)); |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 315 | return pc - reinterpret_cast<uintptr_t>(code); |
| 316 | } |
| 317 | |
Vladimir Marko | 4c1c510 | 2014-05-14 16:51:16 +0100 | [diff] [blame] | 318 | inline QuickMethodFrameInfo ArtMethod::GetQuickFrameInfo(const void* code_pointer) { |
| 319 | DCHECK(code_pointer != nullptr); |
Mathieu Chartier | a7dd038 | 2014-11-20 17:08:58 -0800 | [diff] [blame] | 320 | DCHECK_EQ(code_pointer, GetQuickOatCodePointer(sizeof(void*))); |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 321 | return reinterpret_cast<const OatQuickMethodHeader*>(code_pointer)[-1].frame_info_; |
| 322 | } |
| 323 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 324 | inline const DexFile* ArtMethod::GetDexFile() { |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 325 | return GetDexCache()->GetDexFile(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | inline const char* ArtMethod::GetDeclaringClassDescriptor() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 329 | uint32_t dex_method_idx = GetDexMethodIndex(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 330 | if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) { |
| 331 | return "<runtime method>"; |
| 332 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 333 | DCHECK(!IsProxyMethod()); |
| 334 | const DexFile* dex_file = GetDexFile(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 335 | return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx)); |
| 336 | } |
| 337 | |
| 338 | inline const char* ArtMethod::GetShorty(uint32_t* out_length) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 339 | DCHECK(!IsProxyMethod()); |
| 340 | const DexFile* dex_file = GetDexFile(); |
| 341 | return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | inline const Signature ArtMethod::GetSignature() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 345 | uint32_t dex_method_idx = GetDexMethodIndex(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 346 | if (dex_method_idx != DexFile::kDexNoIndex) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 347 | DCHECK(!IsProxyMethod()); |
| 348 | const DexFile* dex_file = GetDexFile(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 349 | return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx)); |
| 350 | } |
| 351 | return Signature::NoSignature(); |
| 352 | } |
| 353 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 354 | inline const char* ArtMethod::GetName() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 355 | uint32_t dex_method_idx = GetDexMethodIndex(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 356 | if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 357 | DCHECK(!IsProxyMethod()); |
| 358 | const DexFile* dex_file = GetDexFile(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 359 | return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); |
| 360 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 361 | Runtime* const runtime = Runtime::Current(); |
| 362 | if (this == runtime->GetResolutionMethod()) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 363 | return "<runtime internal resolution method>"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 364 | } else if (this == runtime->GetImtConflictMethod()) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 365 | return "<runtime internal imt conflict method>"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 366 | } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 367 | return "<runtime internal callee-save all registers method>"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 368 | } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 369 | return "<runtime internal callee-save reference registers method>"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 370 | } else if (this == runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs)) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 371 | return "<runtime internal callee-save reference and argument registers method>"; |
| 372 | } else { |
| 373 | return "<unknown runtime internal method>"; |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | inline const DexFile::CodeItem* ArtMethod::GetCodeItem() { |
Mathieu Chartier | 12b3dd7 | 2014-12-11 13:25:33 -0800 | [diff] [blame] | 378 | return GetDeclaringClass()->GetDexFile().GetCodeItem(GetCodeItemOffset()); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | inline bool ArtMethod::IsResolvedTypeIdx(uint16_t type_idx) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 382 | DCHECK(!IsProxyMethod()); |
| 383 | return GetDexCacheResolvedType(type_idx) != nullptr; |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | inline int32_t ArtMethod::GetLineNumFromDexPC(uint32_t dex_pc) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 387 | DCHECK(!IsProxyMethod()); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 388 | if (dex_pc == DexFile::kDexNoIndex) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 389 | return IsNative() ? -2 : -1; |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 390 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 391 | return GetDexFile()->GetLineNumFromPC(this, dex_pc); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | inline const DexFile::ProtoId& ArtMethod::GetPrototype() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 395 | DCHECK(!IsProxyMethod()); |
| 396 | const DexFile* dex_file = GetDexFile(); |
| 397 | return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex())); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 401 | DCHECK(!IsProxyMethod()); |
| 402 | const DexFile* dex_file = GetDexFile(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 403 | const DexFile::ProtoId& proto = dex_file->GetMethodPrototype( |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 404 | dex_file->GetMethodId(GetDexMethodIndex())); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 405 | return dex_file->GetProtoParameters(proto); |
| 406 | } |
| 407 | |
| 408 | inline const char* ArtMethod::GetDeclaringClassSourceFile() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 409 | DCHECK(!IsProxyMethod()); |
| 410 | return GetDeclaringClass()->GetSourceFile(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | inline uint16_t ArtMethod::GetClassDefIndex() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 414 | DCHECK(!IsProxyMethod()); |
| 415 | return GetDeclaringClass()->GetDexClassDefIndex(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | inline const DexFile::ClassDef& ArtMethod::GetClassDef() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 419 | DCHECK(!IsProxyMethod()); |
| 420 | return GetDexFile()->GetClassDef(GetClassDefIndex()); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | inline const char* ArtMethod::GetReturnTypeDescriptor() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 424 | DCHECK(!IsProxyMethod()); |
| 425 | const DexFile* dex_file = GetDexFile(); |
| 426 | const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 427 | const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); |
| 428 | uint16_t return_type_idx = proto_id.return_type_idx_; |
| 429 | return dex_file->GetTypeDescriptor(dex_file->GetTypeId(return_type_idx)); |
| 430 | } |
| 431 | |
| 432 | inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(uint16_t type_idx) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 433 | DCHECK(!IsProxyMethod()); |
| 434 | const DexFile* dex_file = GetDexFile(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 435 | return dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_idx)); |
| 436 | } |
| 437 | |
| 438 | inline mirror::ClassLoader* ArtMethod::GetClassLoader() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 439 | DCHECK(!IsProxyMethod()); |
| 440 | return GetDeclaringClass()->GetClassLoader(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | inline mirror::DexCache* ArtMethod::GetDexCache() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 444 | DCHECK(!IsProxyMethod()); |
| 445 | return GetDeclaringClass()->GetDexCache(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 446 | } |
| 447 | |
Ian Rogers | 03b6eaf | 2014-10-28 09:34:57 -0700 | [diff] [blame] | 448 | inline bool ArtMethod::IsProxyMethod() { |
| 449 | return GetDeclaringClass()->IsProxyClass(); |
| 450 | } |
| 451 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 452 | inline ArtMethod* ArtMethod::GetInterfaceMethodIfProxy(size_t pointer_size) { |
Ian Rogers | 03b6eaf | 2014-10-28 09:34:57 -0700 | [diff] [blame] | 453 | if (LIKELY(!IsProxyMethod())) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 454 | return this; |
| 455 | } |
Ian Rogers | 03b6eaf | 2014-10-28 09:34:57 -0700 | [diff] [blame] | 456 | mirror::Class* klass = GetDeclaringClass(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 457 | auto interface_method = GetDexCacheResolvedMethods()->GetElementPtrSize<ArtMethod*>( |
| 458 | GetDexMethodIndex(), pointer_size); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 459 | DCHECK(interface_method != nullptr); |
| 460 | DCHECK_EQ(interface_method, |
| 461 | Runtime::Current()->GetClassLinker()->FindMethodForProxy(klass, this)); |
| 462 | return interface_method; |
| 463 | } |
| 464 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 465 | inline void ArtMethod::SetDexCacheResolvedMethods(mirror::PointerArray* new_dex_cache_methods) { |
| 466 | dex_cache_resolved_methods_ = GcRoot<mirror::PointerArray>(new_dex_cache_methods); |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 469 | inline void ArtMethod::SetDexCacheResolvedTypes( |
| 470 | mirror::ObjectArray<mirror::Class>* new_dex_cache_types) { |
| 471 | dex_cache_resolved_types_ = GcRoot<mirror::ObjectArray<mirror::Class>>(new_dex_cache_types); |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Ian Rogers | ded66a0 | 2014-10-28 18:12:55 -0700 | [diff] [blame] | 474 | inline mirror::Class* ArtMethod::GetReturnType(bool resolve) { |
| 475 | DCHECK(!IsProxyMethod()); |
| 476 | const DexFile* dex_file = GetDexFile(); |
| 477 | const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); |
| 478 | const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); |
| 479 | uint16_t return_type_idx = proto_id.return_type_idx_; |
| 480 | mirror::Class* type = GetDexCacheResolvedType(return_type_idx); |
| 481 | if (type == nullptr && resolve) { |
| 482 | type = Runtime::Current()->GetClassLinker()->ResolveType(return_type_idx, this); |
| 483 | CHECK(type != nullptr || Thread::Current()->IsExceptionPending()); |
| 484 | } |
| 485 | return type; |
| 486 | } |
| 487 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 488 | template<typename RootVisitorType> |
| 489 | void ArtMethod::VisitRoots(RootVisitorType& visitor) { |
Mathieu Chartier | e3b034a | 2015-05-31 14:29:23 -0700 | [diff] [blame] | 490 | visitor.VisitRootIfNonNull(declaring_class_.AddressWithoutBarrier()); |
| 491 | visitor.VisitRootIfNonNull(dex_cache_resolved_methods_.AddressWithoutBarrier()); |
| 492 | visitor.VisitRootIfNonNull(dex_cache_resolved_types_.AddressWithoutBarrier()); |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 493 | } |
| 494 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 495 | inline void ArtMethod::CopyFrom(const ArtMethod* src, size_t image_pointer_size) { |
| 496 | memcpy(reinterpret_cast<void*>(this), reinterpret_cast<const void*>(src), |
| 497 | ObjectSize(image_pointer_size)); |
| 498 | declaring_class_ = GcRoot<mirror::Class>(const_cast<ArtMethod*>(src)->GetDeclaringClass()); |
| 499 | dex_cache_resolved_methods_ = GcRoot<mirror::PointerArray>( |
| 500 | const_cast<ArtMethod*>(src)->GetDexCacheResolvedMethods()); |
| 501 | dex_cache_resolved_types_ = GcRoot<mirror::ObjectArray<mirror::Class>>( |
| 502 | const_cast<ArtMethod*>(src)->GetDexCacheResolvedTypes()); |
| 503 | } |
| 504 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 505 | } // namespace art |
| 506 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 507 | #endif // ART_RUNTIME_ART_METHOD_INL_H_ |