blob: 81adaeb00a5db8ae9eca91d337db127d442d5810 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_CLASS_LINKER_INL_H_
18#define ART_RUNTIME_CLASS_LINKER_INL_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
Mathieu Chartierc7853442015-03-27 14:35:38 -070020#include "art_field.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "class_linker.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070022#include "gc_root-inl.h"
Mathieu Chartier52e4b432014-06-10 11:22:31 -070023#include "gc/heap-inl.h"
Mathieu Chartier28357fa2016-10-18 16:27:40 -070024#include "obj_ptr-inl.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070025#include "mirror/class_loader.h"
Mathieu Chartierbc56fc32014-06-03 15:37:03 -070026#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "mirror/iftable.h"
28#include "mirror/object_array.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070029#include "handle_scope-inl.h"
Mathieu Chartierc4f39252016-10-05 18:32:08 -070030#include "scoped_thread_state_change-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070032#include <atomic>
33
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034namespace art {
35
Ian Rogers98379392014-02-24 16:53:16 -080036inline mirror::Class* ClassLinker::FindSystemClass(Thread* self, const char* descriptor) {
Mathieu Chartier9865bde2015-12-21 09:58:16 -080037 return FindClass(self, descriptor, ScopedNullHandle<mirror::ClassLoader>());
Ian Rogers98379392014-02-24 16:53:16 -080038}
39
Mathieu Chartierbc5a7952016-10-17 15:46:31 -070040inline mirror::Class* ClassLinker::FindArrayClass(Thread* self,
41 ObjPtr<mirror::Class>* element_class) {
Ian Rogers98379392014-02-24 16:53:16 -080042 for (size_t i = 0; i < kFindArrayCacheSize; ++i) {
Ian Rogersa55cf412014-02-27 00:31:26 -080043 // Read the cached array class once to avoid races with other threads setting it.
Mathieu Chartier28357fa2016-10-18 16:27:40 -070044 ObjPtr<mirror::Class> array_class = find_array_class_cache_[i].Read();
Mathieu Chartierb74cd292014-05-29 14:31:33 -070045 if (array_class != nullptr && array_class->GetComponentType() == *element_class) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -070046 return array_class.Ptr();
Ian Rogers98379392014-02-24 16:53:16 -080047 }
48 }
Ian Rogers1ff3c982014-08-12 02:30:58 -070049 std::string descriptor = "[";
50 std::string temp;
51 descriptor += (*element_class)->GetDescriptor(&temp);
Mathieu Chartierb74cd292014-05-29 14:31:33 -070052 StackHandleScope<2> hs(Thread::Current());
53 Handle<mirror::ClassLoader> class_loader(hs.NewHandle((*element_class)->GetClassLoader()));
Mathieu Chartierbc5a7952016-10-17 15:46:31 -070054 HandleWrapperObjPtr<mirror::Class> h_element_class(hs.NewHandleWrapper(element_class));
Mathieu Chartier28357fa2016-10-18 16:27:40 -070055 ObjPtr<mirror::Class> array_class = FindClass(self, descriptor.c_str(), class_loader);
Nicolas Geoffray9638b642015-06-23 18:16:46 +010056 if (array_class != nullptr) {
57 // Benign races in storing array class and incrementing index.
58 size_t victim_index = find_array_class_cache_next_victim_;
59 find_array_class_cache_[victim_index] = GcRoot<mirror::Class>(array_class);
60 find_array_class_cache_next_victim_ = (victim_index + 1) % kFindArrayCacheSize;
61 } else {
62 // We should have a NoClassDefFoundError.
63 self->AssertPendingException();
64 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -070065 return array_class.Ptr();
Ian Rogers98379392014-02-24 16:53:16 -080066}
67
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -070068inline mirror::String* ClassLinker::ResolveString(uint32_t string_idx, ArtMethod* referrer) {
Mathieu Chartier3398c782016-09-30 10:27:43 -070069 Thread::PoisonObjectPointersIfDebug();
Mathieu Chartier28357fa2016-10-18 16:27:40 -070070 ObjPtr<mirror::Class> declaring_class = referrer->GetDeclaringClass();
Vladimir Marko05792b92015-08-03 11:56:49 +010071 // MethodVerifier refuses methods with string_idx out of bounds.
Mathieu Chartier6beced42016-11-15 15:51:31 -080072 DCHECK_LT(string_idx, declaring_class->GetDexFile().NumStringIds());
Mathieu Chartier28357fa2016-10-18 16:27:40 -070073 ObjPtr<mirror::String> string =
Narayan Kamathc38a6f82016-09-29 17:07:20 +010074 mirror::StringDexCachePair::Lookup(declaring_class->GetDexCacheStrings(),
75 string_idx,
76 mirror::DexCache::kDexCacheStringCacheSize).Read();
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070077 if (UNLIKELY(string == nullptr)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070078 StackHandleScope<1> hs(Thread::Current());
79 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080080 const DexFile& dex_file = *dex_cache->GetDexFile();
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070081 string = ResolveString(dex_file, string_idx, dex_cache);
82 if (string != nullptr) {
83 DCHECK_EQ(dex_cache->GetResolvedString(string_idx), string);
Ian Rogerseebe03a2014-05-02 11:09:57 -070084 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080085 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -070086 return string.Ptr();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080087}
88
Andreas Gampea5b09a62016-11-17 15:21:22 -080089inline mirror::Class* ClassLinker::ResolveType(dex::TypeIndex type_idx, ArtMethod* referrer) {
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070090 Thread::PoisonObjectPointersIfDebug();
Mathieu Chartier28357fa2016-10-18 16:27:40 -070091 ObjPtr<mirror::Class> resolved_type =
92 referrer->GetDexCacheResolvedType(type_idx, image_pointer_size_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070093 if (UNLIKELY(resolved_type == nullptr)) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -070094 ObjPtr<mirror::Class> declaring_class = referrer->GetDeclaringClass();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070095 StackHandleScope<2> hs(Thread::Current());
96 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
97 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080098 const DexFile& dex_file = *dex_cache->GetDexFile();
99 resolved_type = ResolveType(dex_file, type_idx, dex_cache, class_loader);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700100 // Note: We cannot check here to see whether we added the type to the cache. The type
101 // might be an erroneous class, which results in it being hidden from us.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800102 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700103 return resolved_type.Ptr();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800104}
105
Andreas Gampea5b09a62016-11-17 15:21:22 -0800106inline mirror::Class* ClassLinker::ResolveType(dex::TypeIndex type_idx, ArtField* referrer) {
Mathieu Chartier3398c782016-09-30 10:27:43 -0700107 Thread::PoisonObjectPointersIfDebug();
108 ObjPtr<mirror::Class> declaring_class = referrer->GetDeclaringClass();
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700109 ObjPtr<mirror::DexCache> dex_cache_ptr = declaring_class->GetDexCache();
110 ObjPtr<mirror::Class> resolved_type = dex_cache_ptr->GetResolvedType(type_idx);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700111 if (UNLIKELY(resolved_type == nullptr)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700112 StackHandleScope<2> hs(Thread::Current());
113 Handle<mirror::DexCache> dex_cache(hs.NewHandle(dex_cache_ptr));
114 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800115 const DexFile& dex_file = *dex_cache->GetDexFile();
116 resolved_type = ResolveType(dex_file, type_idx, dex_cache, class_loader);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700117 // Note: We cannot check here to see whether we added the type to the cache. The type
118 // might be an erroneous class, which results in it being hidden from us.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800119 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700120 return resolved_type.Ptr();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800121}
122
Mathieu Chartiere401d142015-04-22 13:56:20 -0700123inline ArtMethod* ClassLinker::GetResolvedMethod(uint32_t method_idx, ArtMethod* referrer) {
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -0700124 ArtMethod* resolved_method = referrer->GetDexCacheResolvedMethod(method_idx, image_pointer_size_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700125 if (resolved_method == nullptr || resolved_method->IsRuntimeMethod()) {
126 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800127 }
128 return resolved_method;
129}
130
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100131inline mirror::Class* ClassLinker::ResolveReferencedClassOfMethod(
132 uint32_t method_idx,
133 Handle<mirror::DexCache> dex_cache,
134 Handle<mirror::ClassLoader> class_loader) {
Alex Lightfedd91d2016-01-07 14:49:16 -0800135 // NB: We cannot simply use `GetResolvedMethod(method_idx, ...)->GetDeclaringClass()`. This is
136 // because if we did so than an invoke-super could be incorrectly dispatched in cases where
137 // GetMethodId(method_idx).class_idx_ refers to a non-interface, non-direct-superclass
138 // (super*-class?) of the referrer and the direct superclass of the referrer contains a concrete
139 // implementation of the method. If this class's implementation of the method is copied from an
140 // interface (either miranda, default or conflict) we would incorrectly assume that is what we
141 // want to invoke on, instead of the 'concrete' implementation that the direct superclass
142 // contains.
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100143 const DexFile* dex_file = dex_cache->GetDexFile();
Alex Lightfedd91d2016-01-07 14:49:16 -0800144 const DexFile::MethodId& method = dex_file->GetMethodId(method_idx);
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700145 ObjPtr<mirror::Class> resolved_type = dex_cache->GetResolvedType(method.class_idx_);
Alex Lightfedd91d2016-01-07 14:49:16 -0800146 if (UNLIKELY(resolved_type == nullptr)) {
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100147 resolved_type = ResolveType(*dex_file, method.class_idx_, dex_cache, class_loader);
Alex Lightfedd91d2016-01-07 14:49:16 -0800148 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700149 return resolved_type.Ptr();
Alex Lightfedd91d2016-01-07 14:49:16 -0800150}
151
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800152template <ClassLinker::ResolveMode kResolveMode>
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -0700153inline ArtMethod* ClassLinker::ResolveMethod(Thread* self,
154 uint32_t method_idx,
155 ArtMethod* referrer,
156 InvokeType type) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700157 ArtMethod* resolved_method = GetResolvedMethod(method_idx, referrer);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700158 Thread::PoisonObjectPointersIfDebug();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700159 if (UNLIKELY(resolved_method == nullptr)) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700160 ObjPtr<mirror::Class> declaring_class = referrer->GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700161 StackHandleScope<2> hs(self);
162 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
163 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
164 const DexFile* dex_file = h_dex_cache->GetDexFile();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800165 resolved_method = ResolveMethod<kResolveMode>(*dex_file,
166 method_idx,
167 h_dex_cache,
168 h_class_loader,
169 referrer,
170 type);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700171 }
Andreas Gampe58a5af82014-07-31 16:23:49 -0700172 // Note: We cannot check here to see whether we added the method to the cache. It
173 // might be an erroneous class, which results in it being hidden from us.
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700174 return resolved_method;
175}
176
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700177inline ArtField* ClassLinker::GetResolvedField(uint32_t field_idx,
178 ObjPtr<mirror::DexCache> dex_cache) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700179 return dex_cache->GetResolvedField(field_idx, image_pointer_size_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700180}
181
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700182inline ArtField* ClassLinker::GetResolvedField(uint32_t field_idx,
183 ObjPtr<mirror::Class> field_declaring_class) {
184 return GetResolvedField(field_idx, MakeObjPtr(field_declaring_class->GetDexCache()));
Mathieu Chartierc7853442015-03-27 14:35:38 -0700185}
186
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700187inline ArtField* ClassLinker::ResolveField(uint32_t field_idx,
188 ArtMethod* referrer,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700189 bool is_static) {
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700190 Thread::PoisonObjectPointersIfDebug();
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700191 ObjPtr<mirror::Class> declaring_class = referrer->GetDeclaringClass();
192 ArtField* resolved_field = GetResolvedField(field_idx, declaring_class);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700193 if (UNLIKELY(resolved_field == nullptr)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700194 StackHandleScope<2> hs(Thread::Current());
195 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
196 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 const DexFile& dex_file = *dex_cache->GetDexFile();
198 resolved_field = ResolveField(dex_file, field_idx, dex_cache, class_loader, is_static);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700199 // Note: We cannot check here to see whether we added the field to the cache. The type
200 // might be an erroneous class, which results in it being hidden from us.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800201 }
202 return resolved_field;
203}
204
Ian Rogersc0542af2014-09-03 16:16:56 -0700205inline mirror::Object* ClassLinker::AllocObject(Thread* self) {
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -0700206 return GetClassRoot(kJavaLangObject)->Alloc<true, false>(
207 self,
Mathieu Chartier28bd2e42016-10-04 13:54:57 -0700208 Runtime::Current()->GetHeap()->GetCurrentAllocator()).Ptr();
Ian Rogersc0542af2014-09-03 16:16:56 -0700209}
210
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800211template <class T>
212inline mirror::ObjectArray<T>* ClassLinker::AllocObjectArray(Thread* self, size_t length) {
213 return mirror::ObjectArray<T>::Alloc(self, GetClassRoot(kObjectArrayClass), length);
214}
215
216inline mirror::ObjectArray<mirror::Class>* ClassLinker::AllocClassArray(Thread* self,
217 size_t length) {
218 return mirror::ObjectArray<mirror::Class>::Alloc(self, GetClassRoot(kClassArrayClass), length);
219}
220
221inline mirror::ObjectArray<mirror::String>* ClassLinker::AllocStringArray(Thread* self,
222 size_t length) {
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -0700223 return mirror::ObjectArray<mirror::String>::Alloc(self,
224 GetClassRoot(kJavaLangStringArrayClass),
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800225 length);
226}
227
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800228inline mirror::IfTable* ClassLinker::AllocIfTable(Thread* self, size_t ifcount) {
229 return down_cast<mirror::IfTable*>(
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -0700230 mirror::IfTable::Alloc(self,
231 GetClassRoot(kObjectArrayClass),
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700232 ifcount * mirror::IfTable::kMax));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800233}
234
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700235inline mirror::Class* ClassLinker::GetClassRoot(ClassRoot class_root) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700236 DCHECK(!class_roots_.IsNull());
237 mirror::ObjectArray<mirror::Class>* class_roots = class_roots_.Read();
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700238 ObjPtr<mirror::Class> klass = class_roots->Get(class_root);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700239 DCHECK(klass != nullptr);
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700240 return klass.Ptr();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800241}
242
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700243template<ReadBarrierOption kReadBarrierOption>
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700244ArtMethod* ClassLinker::FindMethodForProxy(ObjPtr<mirror::Class> proxy_class,
245 ArtMethod* proxy_method) {
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700246 DCHECK(proxy_class->IsProxyClass());
247 DCHECK(proxy_method->IsProxyMethod<kReadBarrierOption>());
248 {
249 Thread* const self = Thread::Current();
250 ReaderMutexLock mu(self, dex_lock_);
251 // Locate the dex cache of the original interface/Object
252 for (const DexCacheData& data : dex_caches_) {
253 if (!self->IsJWeakCleared(data.weak_root) &&
254 proxy_method->HasSameDexCacheResolvedTypes(data.resolved_types,
255 image_pointer_size_)) {
Mathieu Chartierc4f39252016-10-05 18:32:08 -0700256 ObjPtr<mirror::DexCache> dex_cache =
257 ObjPtr<mirror::DexCache>::DownCast(self->DecodeJObject(data.weak_root));
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700258 if (dex_cache != nullptr) {
259 ArtMethod* resolved_method = dex_cache->GetResolvedMethod(
260 proxy_method->GetDexMethodIndex(), image_pointer_size_);
261 CHECK(resolved_method != nullptr);
262 return resolved_method;
263 }
264 }
265 }
266 }
David Sehr709b0702016-10-13 09:12:37 -0700267 LOG(FATAL) << "Didn't find dex cache for " << proxy_class->PrettyClass() << " "
268 << proxy_method->PrettyMethod();
Hiroshi Yamauchi7a62e672016-06-10 17:22:48 -0700269 UNREACHABLE();
270}
271
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800272} // namespace art
273
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700274#endif // ART_RUNTIME_CLASS_LINKER_INL_H_