blob: 6446d02ba3c2210335abcf2837f0b435f04fdfe3 [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
17#include "class.h"
18
Brian Carlstromea46f952013-07-30 01:26:50 -070019#include "art_field-inl.h"
20#include "art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "class-inl.h"
22#include "class_linker.h"
23#include "class_loader.h"
24#include "dex_cache.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025#include "dex_file-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070026#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "object-inl.h"
28#include "object_array-inl.h"
29#include "object_utils.h"
30#include "runtime.h"
31#include "sirt_ref.h"
32#include "thread.h"
33#include "throwable.h"
34#include "utils.h"
35#include "well_known_classes.h"
36
37namespace art {
38namespace mirror {
39
40Class* Class::java_lang_Class_ = NULL;
41
42void Class::SetClassClass(Class* java_lang_Class) {
43 CHECK(java_lang_Class_ == NULL) << java_lang_Class_ << " " << java_lang_Class;
44 CHECK(java_lang_Class != NULL);
45 java_lang_Class_ = java_lang_Class;
46}
47
48void Class::ResetClass() {
49 CHECK(java_lang_Class_ != NULL);
50 java_lang_Class_ = NULL;
51}
52
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080053void Class::VisitRoots(RootCallback* callback, void* arg) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -080054 if (java_lang_Class_ != nullptr) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080055 java_lang_Class_ = down_cast<Class*>(
56 callback(java_lang_Class_, arg, 0, kRootStickyClass));
Mathieu Chartierc528dba2013-11-26 12:00:11 -080057 }
58}
59
Ian Rogers7dfb28c2013-08-22 08:18:36 -070060void Class::SetStatus(Status new_status, Thread* self) {
61 Status old_status = GetStatus();
Mathieu Chartier590fee92013-09-13 13:46:47 -070062 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
63 bool class_linker_initialized = class_linker != nullptr && class_linker->IsInitialized();
Ian Rogers7dfb28c2013-08-22 08:18:36 -070064 if (LIKELY(class_linker_initialized)) {
65 if (UNLIKELY(new_status <= old_status && new_status != kStatusError)) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -070066 LOG(FATAL) << "Unexpected change back of class status for " << PrettyClass(this) << " "
Ian Rogers7dfb28c2013-08-22 08:18:36 -070067 << old_status << " -> " << new_status;
Ian Rogers8f3c9ae2013-08-20 17:26:41 -070068 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -070069 if (new_status >= kStatusResolved || old_status >= kStatusResolved) {
70 // When classes are being resolved the resolution code should hold the lock.
Ian Rogersd9c4fc92013-10-01 19:45:43 -070071 CHECK_EQ(GetLockOwnerThreadId(), self->GetThreadId())
Ian Rogers7dfb28c2013-08-22 08:18:36 -070072 << "Attempt to change status of class while not holding its lock: "
73 << PrettyClass(this) << " " << old_status << " -> " << new_status;
74 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080075 }
76 if (new_status == kStatusError) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -070077 CHECK_NE(GetStatus(), kStatusError)
78 << "Attempt to set as erroneous an already erroneous class " << PrettyClass(this);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080079
Ian Rogers62d6c772013-02-27 08:32:07 -080080 // Stash current exception.
Ian Rogers62d6c772013-02-27 08:32:07 -080081 SirtRef<mirror::Object> old_throw_this_object(self, NULL);
Brian Carlstromea46f952013-07-30 01:26:50 -070082 SirtRef<mirror::ArtMethod> old_throw_method(self, NULL);
Ian Rogers62d6c772013-02-27 08:32:07 -080083 SirtRef<mirror::Throwable> old_exception(self, NULL);
84 uint32_t old_throw_dex_pc;
85 {
86 ThrowLocation old_throw_location;
87 mirror::Throwable* old_exception_obj = self->GetException(&old_throw_location);
88 old_throw_this_object.reset(old_throw_location.GetThis());
89 old_throw_method.reset(old_throw_location.GetMethod());
90 old_exception.reset(old_exception_obj);
91 old_throw_dex_pc = old_throw_location.GetDexPc();
92 self->ClearException();
93 }
94 CHECK(old_exception.get() != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080095
96 // clear exception to call FindSystemClass
97 self->ClearException();
98 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
99 Class* eiie_class = class_linker->FindSystemClass("Ljava/lang/ExceptionInInitializerError;");
100 CHECK(!self->IsExceptionPending());
101
Ian Rogers62d6c772013-02-27 08:32:07 -0800102 // Only verification errors, not initialization problems, should set a verify error.
103 // This is to ensure that ThrowEarlierClassFailure will throw NoClassDefFoundError in that case.
104 Class* exception_class = old_exception->GetClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800105 if (!eiie_class->IsAssignableFrom(exception_class)) {
106 SetVerifyErrorClass(exception_class);
107 }
108
Ian Rogers62d6c772013-02-27 08:32:07 -0800109 // Restore exception.
110 ThrowLocation gc_safe_throw_location(old_throw_this_object.get(), old_throw_method.get(),
111 old_throw_dex_pc);
112
113 self->SetException(gc_safe_throw_location, old_exception.get());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800114 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -0700115 CHECK(sizeof(Status) == sizeof(uint32_t)) << PrettyClass(this);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100116 if (Runtime::Current()->IsActiveTransaction()) {
117 SetField32<true>(OFFSET_OF_OBJECT_MEMBER(Class, status_), new_status, false);
118 } else {
119 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, status_), new_status, false);
120 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700121 // Classes that are being resolved or initialized need to notify waiters that the class status
122 // changed. See ClassLinker::EnsureResolved and ClassLinker::WaitForInitializeClass.
123 if ((old_status >= kStatusResolved || new_status >= kStatusResolved) &&
124 class_linker_initialized) {
125 NotifyAll(self);
126 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800127}
128
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800129void Class::SetDexCache(DexCache* new_dex_cache) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100130 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, dex_cache_), new_dex_cache, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800131}
132
Ian Rogersef7d42f2014-01-06 12:55:46 -0800133void Class::SetClassSize(uint32_t new_class_size) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700134 if (kIsDebugBuild && (new_class_size < GetClassSize())) {
135 DumpClass(LOG(ERROR), kDumpClassFullDetail);
136 CHECK_GE(new_class_size, GetClassSize()) << " class=" << PrettyTypeOf(this);
137 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100138 // Not called within a transaction.
139 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, class_size_), new_class_size, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800140}
141
142// Return the class' name. The exact format is bizarre, but it's the specified behavior for
143// Class.getName: keywords for primitive types, regular "[I" form for primitive arrays (so "int"
144// but "[I"), and arrays of reference types written between "L" and ";" but with dots rather than
145// slashes (so "java.lang.String" but "[Ljava.lang.String;"). Madness.
146String* Class::ComputeName() {
147 String* name = GetName();
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800148 if (name != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800149 return name;
150 }
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800151 Thread* self = Thread::Current();
152 SirtRef<mirror::Class> sirt_c(self, this);
Ian Rogersdfb325e2013-10-30 01:00:44 -0700153 std::string descriptor(ClassHelper(this).GetDescriptor());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800154 if ((descriptor[0] != 'L') && (descriptor[0] != '[')) {
155 // The descriptor indicates that this is the class for
156 // a primitive type; special-case the return value.
157 const char* c_name = NULL;
158 switch (descriptor[0]) {
159 case 'Z': c_name = "boolean"; break;
160 case 'B': c_name = "byte"; break;
161 case 'C': c_name = "char"; break;
162 case 'S': c_name = "short"; break;
163 case 'I': c_name = "int"; break;
164 case 'J': c_name = "long"; break;
165 case 'F': c_name = "float"; break;
166 case 'D': c_name = "double"; break;
167 case 'V': c_name = "void"; break;
168 default:
169 LOG(FATAL) << "Unknown primitive type: " << PrintableChar(descriptor[0]);
170 }
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800171 name = String::AllocFromModifiedUtf8(self, c_name);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800172 } else {
173 // Convert the UTF-8 name to a java.lang.String. The name must use '.' to separate package
174 // components.
175 if (descriptor.size() > 2 && descriptor[0] == 'L' && descriptor[descriptor.size() - 1] == ';') {
176 descriptor.erase(0, 1);
177 descriptor.erase(descriptor.size() - 1);
178 }
179 std::replace(descriptor.begin(), descriptor.end(), '/', '.');
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800180 name = String::AllocFromModifiedUtf8(self, descriptor.c_str());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800181 }
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800182 sirt_c->SetName(name);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800183 return name;
184}
185
Ian Rogersef7d42f2014-01-06 12:55:46 -0800186void Class::DumpClass(std::ostream& os, int flags) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800187 if ((flags & kDumpClassFullDetail) == 0) {
188 os << PrettyClass(this);
189 if ((flags & kDumpClassClassLoader) != 0) {
190 os << ' ' << GetClassLoader();
191 }
192 if ((flags & kDumpClassInitialized) != 0) {
193 os << ' ' << GetStatus();
194 }
195 os << "\n";
196 return;
197 }
198
199 Class* super = GetSuperClass();
200 ClassHelper kh(this);
201 os << "----- " << (IsInterface() ? "interface" : "class") << " "
202 << "'" << kh.GetDescriptor() << "' cl=" << GetClassLoader() << " -----\n",
203 os << " objectSize=" << SizeOf() << " "
204 << "(" << (super != NULL ? super->SizeOf() : -1) << " from super)\n",
205 os << StringPrintf(" access=0x%04x.%04x\n",
206 GetAccessFlags() >> 16, GetAccessFlags() & kAccJavaFlagsMask);
207 if (super != NULL) {
208 os << " super='" << PrettyClass(super) << "' (cl=" << super->GetClassLoader() << ")\n";
209 }
210 if (IsArrayClass()) {
211 os << " componentType=" << PrettyClass(GetComponentType()) << "\n";
212 }
213 if (kh.NumDirectInterfaces() > 0) {
214 os << " interfaces (" << kh.NumDirectInterfaces() << "):\n";
215 for (size_t i = 0; i < kh.NumDirectInterfaces(); ++i) {
216 Class* interface = kh.GetDirectInterface(i);
217 const ClassLoader* cl = interface->GetClassLoader();
218 os << StringPrintf(" %2zd: %s (cl=%p)\n", i, PrettyClass(interface).c_str(), cl);
219 }
220 }
221 os << " vtable (" << NumVirtualMethods() << " entries, "
222 << (super != NULL ? super->NumVirtualMethods() : 0) << " in super):\n";
223 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
224 os << StringPrintf(" %2zd: %s\n", i, PrettyMethod(GetVirtualMethodDuringLinking(i)).c_str());
225 }
226 os << " direct methods (" << NumDirectMethods() << " entries):\n";
227 for (size_t i = 0; i < NumDirectMethods(); ++i) {
228 os << StringPrintf(" %2zd: %s\n", i, PrettyMethod(GetDirectMethod(i)).c_str());
229 }
230 if (NumStaticFields() > 0) {
231 os << " static fields (" << NumStaticFields() << " entries):\n";
232 if (IsResolved() || IsErroneous()) {
233 for (size_t i = 0; i < NumStaticFields(); ++i) {
234 os << StringPrintf(" %2zd: %s\n", i, PrettyField(GetStaticField(i)).c_str());
235 }
236 } else {
237 os << " <not yet available>";
238 }
239 }
240 if (NumInstanceFields() > 0) {
241 os << " instance fields (" << NumInstanceFields() << " entries):\n";
242 if (IsResolved() || IsErroneous()) {
243 for (size_t i = 0; i < NumInstanceFields(); ++i) {
244 os << StringPrintf(" %2zd: %s\n", i, PrettyField(GetInstanceField(i)).c_str());
245 }
246 } else {
247 os << " <not yet available>";
248 }
249 }
250}
251
252void Class::SetReferenceInstanceOffsets(uint32_t new_reference_offsets) {
253 if (new_reference_offsets != CLASS_WALK_SUPER) {
254 // Sanity check that the number of bits set in the reference offset bitmap
255 // agrees with the number of references
256 size_t count = 0;
257 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
258 count += c->NumReferenceInstanceFieldsDuringLinking();
259 }
260 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets), count);
261 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100262 // Not called within a transaction.
263 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, reference_instance_offsets_),
264 new_reference_offsets, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800265}
266
267void Class::SetReferenceStaticOffsets(uint32_t new_reference_offsets) {
268 if (new_reference_offsets != CLASS_WALK_SUPER) {
269 // Sanity check that the number of bits set in the reference offset bitmap
270 // agrees with the number of references
271 CHECK_EQ((size_t)__builtin_popcount(new_reference_offsets),
272 NumReferenceStaticFieldsDuringLinking());
273 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100274 // Not called within a transaction.
275 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, reference_static_offsets_),
276 new_reference_offsets, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800277}
278
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800279bool Class::IsInSamePackage(const StringPiece& descriptor1, const StringPiece& descriptor2) {
280 size_t i = 0;
281 while (descriptor1[i] != '\0' && descriptor1[i] == descriptor2[i]) {
282 ++i;
283 }
284 if (descriptor1.find('/', i) != StringPiece::npos ||
285 descriptor2.find('/', i) != StringPiece::npos) {
286 return false;
287 } else {
288 return true;
289 }
290}
291
Ian Rogersef7d42f2014-01-06 12:55:46 -0800292bool Class::IsInSamePackage(Class* that) {
293 Class* klass1 = this;
294 Class* klass2 = that;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800295 if (klass1 == klass2) {
296 return true;
297 }
298 // Class loaders must match.
299 if (klass1->GetClassLoader() != klass2->GetClassLoader()) {
300 return false;
301 }
302 // Arrays are in the same package when their element classes are.
303 while (klass1->IsArrayClass()) {
304 klass1 = klass1->GetComponentType();
305 }
306 while (klass2->IsArrayClass()) {
307 klass2 = klass2->GetComponentType();
308 }
Anwar Ghuloum9fa3f202013-03-26 14:32:54 -0700309 // trivial check again for array types
310 if (klass1 == klass2) {
311 return true;
312 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800313 // Compare the package part of the descriptor string.
Ian Rogersdfb325e2013-10-30 01:00:44 -0700314 return IsInSamePackage(ClassHelper(klass1).GetDescriptor(),
315 ClassHelper(klass2).GetDescriptor());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800316}
317
Ian Rogersef7d42f2014-01-06 12:55:46 -0800318bool Class::IsClassClass() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800319 Class* java_lang_Class = GetClass()->GetClass();
320 return this == java_lang_Class;
321}
322
323bool Class::IsStringClass() const {
324 return this == String::GetJavaLangString();
325}
326
Ian Rogersef7d42f2014-01-06 12:55:46 -0800327bool Class::IsThrowableClass() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 return WellKnownClasses::ToClass(WellKnownClasses::java_lang_Throwable)->IsAssignableFrom(this);
329}
330
Ian Rogersef7d42f2014-01-06 12:55:46 -0800331bool Class::IsArtFieldClass() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800332 Class* java_lang_Class = GetClass();
Brian Carlstromea46f952013-07-30 01:26:50 -0700333 Class* java_lang_reflect_ArtField = java_lang_Class->GetInstanceField(0)->GetClass();
334 return this == java_lang_reflect_ArtField;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800335}
336
Ian Rogersef7d42f2014-01-06 12:55:46 -0800337bool Class::IsArtMethodClass() {
Brian Carlstromea46f952013-07-30 01:26:50 -0700338 return this == ArtMethod::GetJavaLangReflectArtMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800339}
340
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800341void Class::SetClassLoader(ClassLoader* new_class_loader) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100342 if (Runtime::Current()->IsActiveTransaction()) {
343 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Class, class_loader_), new_class_loader, false);
344 } else {
345 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, class_loader_), new_class_loader, false);
346 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800347}
348
Ian Rogersef7d42f2014-01-06 12:55:46 -0800349ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const Signature& signature) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800350 // Check the current class before checking the interfaces.
Brian Carlstromea46f952013-07-30 01:26:50 -0700351 ArtMethod* method = FindDeclaredVirtualMethod(name, signature);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800352 if (method != NULL) {
353 return method;
354 }
355
356 int32_t iftable_count = GetIfTableCount();
357 IfTable* iftable = GetIfTable();
358 for (int32_t i = 0; i < iftable_count; i++) {
359 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature);
360 if (method != NULL) {
361 return method;
362 }
363 }
364 return NULL;
365}
366
Ian Rogersef7d42f2014-01-06 12:55:46 -0800367ArtMethod* Class::FindInterfaceMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800368 // Check the current class before checking the interfaces.
Brian Carlstromea46f952013-07-30 01:26:50 -0700369 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800370 if (method != NULL) {
371 return method;
372 }
373
374 int32_t iftable_count = GetIfTableCount();
375 IfTable* iftable = GetIfTable();
376 for (int32_t i = 0; i < iftable_count; i++) {
377 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(dex_cache, dex_method_idx);
378 if (method != NULL) {
379 return method;
380 }
381 }
382 return NULL;
383}
384
Ian Rogersef7d42f2014-01-06 12:55:46 -0800385ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const StringPiece& signature) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800386 MethodHelper mh;
387 for (size_t i = 0; i < NumDirectMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700388 ArtMethod* method = GetDirectMethod(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800389 mh.ChangeMethod(method);
Ian Rogersdfb325e2013-10-30 01:00:44 -0700390 if (name == mh.GetName() && mh.GetSignature() == signature) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700391 return method;
392 }
393 }
394 return NULL;
395}
396
Ian Rogersef7d42f2014-01-06 12:55:46 -0800397ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const Signature& signature) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700398 MethodHelper mh;
399 for (size_t i = 0; i < NumDirectMethods(); ++i) {
400 ArtMethod* method = GetDirectMethod(i);
401 mh.ChangeMethod(method);
Ian Rogersdfb325e2013-10-30 01:00:44 -0700402 if (name == mh.GetName() && signature == mh.GetSignature()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800403 return method;
404 }
405 }
406 return NULL;
407}
408
Ian Rogersef7d42f2014-01-06 12:55:46 -0800409ArtMethod* Class::FindDeclaredDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800410 if (GetDexCache() == dex_cache) {
411 for (size_t i = 0; i < NumDirectMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700412 ArtMethod* method = GetDirectMethod(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800413 if (method->GetDexMethodIndex() == dex_method_idx) {
414 return method;
415 }
416 }
417 }
418 return NULL;
419}
420
Ian Rogersef7d42f2014-01-06 12:55:46 -0800421ArtMethod* Class::FindDirectMethod(const StringPiece& name, const StringPiece& signature) {
422 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700423 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800424 if (method != NULL) {
425 return method;
426 }
427 }
428 return NULL;
429}
430
Ian Rogersef7d42f2014-01-06 12:55:46 -0800431ArtMethod* Class::FindDirectMethod(const StringPiece& name, const Signature& signature) {
432 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700433 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature);
434 if (method != NULL) {
435 return method;
436 }
437 }
438 return NULL;
439}
440
Ian Rogersef7d42f2014-01-06 12:55:46 -0800441ArtMethod* Class::FindDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
442 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700443 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800444 if (method != NULL) {
445 return method;
446 }
447 }
448 return NULL;
449}
450
Ian Rogersef7d42f2014-01-06 12:55:46 -0800451ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name, const StringPiece& signature) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700452 MethodHelper mh;
453 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
454 ArtMethod* method = GetVirtualMethod(i);
455 mh.ChangeMethod(method);
Ian Rogersdfb325e2013-10-30 01:00:44 -0700456 if (name == mh.GetName() && mh.GetSignature() == signature) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700457 return method;
458 }
459 }
460 return NULL;
461}
462
Brian Carlstromea46f952013-07-30 01:26:50 -0700463ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800464 const Signature& signature) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800465 MethodHelper mh;
466 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700467 ArtMethod* method = GetVirtualMethod(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800468 mh.ChangeMethod(method);
Ian Rogersdfb325e2013-10-30 01:00:44 -0700469 if (name == mh.GetName() && signature == mh.GetSignature()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800470 return method;
471 }
472 }
473 return NULL;
474}
475
Ian Rogersef7d42f2014-01-06 12:55:46 -0800476ArtMethod* Class::FindDeclaredVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800477 if (GetDexCache() == dex_cache) {
478 for (size_t i = 0; i < NumVirtualMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700479 ArtMethod* method = GetVirtualMethod(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800480 if (method->GetDexMethodIndex() == dex_method_idx) {
481 return method;
482 }
483 }
484 }
485 return NULL;
486}
487
Ian Rogersef7d42f2014-01-06 12:55:46 -0800488ArtMethod* Class::FindVirtualMethod(const StringPiece& name, const StringPiece& signature) {
489 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700490 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800491 if (method != NULL) {
492 return method;
493 }
494 }
495 return NULL;
496}
497
Ian Rogersef7d42f2014-01-06 12:55:46 -0800498ArtMethod* Class::FindVirtualMethod(const StringPiece& name, const Signature& signature) {
499 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700500 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature);
501 if (method != NULL) {
502 return method;
503 }
504 }
505 return NULL;
506}
507
Ian Rogersef7d42f2014-01-06 12:55:46 -0800508ArtMethod* Class::FindVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
509 for (Class* klass = this; klass != NULL; klass = klass->GetSuperClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700510 ArtMethod* method = klass->FindDeclaredVirtualMethod(dex_cache, dex_method_idx);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800511 if (method != NULL) {
512 return method;
513 }
514 }
515 return NULL;
516}
517
Ian Rogersef7d42f2014-01-06 12:55:46 -0800518ArtMethod* Class::FindClassInitializer() {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700519 for (size_t i = 0; i < NumDirectMethods(); ++i) {
520 ArtMethod* method = GetDirectMethod(i);
521 if (method->IsConstructor() && method->IsStatic()) {
522 if (kIsDebugBuild) {
523 MethodHelper mh(method);
Ian Rogers241b5de2013-10-09 17:58:57 -0700524 CHECK(mh.IsClassInitializer());
Ian Rogersd91d6d62013-09-25 20:26:14 -0700525 CHECK_STREQ(mh.GetName(), "<clinit>");
526 CHECK_STREQ(mh.GetSignature().ToString().c_str(), "()V");
527 }
528 return method;
529 }
530 }
531 return NULL;
532}
533
Brian Carlstromea46f952013-07-30 01:26:50 -0700534ArtField* Class::FindDeclaredInstanceField(const StringPiece& name, const StringPiece& type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800535 // Is the field in this class?
536 // Interfaces are not relevant because they can't contain instance fields.
537 FieldHelper fh;
538 for (size_t i = 0; i < NumInstanceFields(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700539 ArtField* f = GetInstanceField(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800540 fh.ChangeField(f);
Ian Rogersdfb325e2013-10-30 01:00:44 -0700541 if (name == fh.GetName() && type == fh.GetTypeDescriptor()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800542 return f;
543 }
544 }
545 return NULL;
546}
547
Brian Carlstromea46f952013-07-30 01:26:50 -0700548ArtField* Class::FindDeclaredInstanceField(const DexCache* dex_cache, uint32_t dex_field_idx) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800549 if (GetDexCache() == dex_cache) {
550 for (size_t i = 0; i < NumInstanceFields(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700551 ArtField* f = GetInstanceField(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800552 if (f->GetDexFieldIndex() == dex_field_idx) {
553 return f;
554 }
555 }
556 }
557 return NULL;
558}
559
Brian Carlstromea46f952013-07-30 01:26:50 -0700560ArtField* Class::FindInstanceField(const StringPiece& name, const StringPiece& type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800561 // Is the field in this class, or any of its superclasses?
562 // Interfaces are not relevant because they can't contain instance fields.
563 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700564 ArtField* f = c->FindDeclaredInstanceField(name, type);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800565 if (f != NULL) {
566 return f;
567 }
568 }
569 return NULL;
570}
571
Brian Carlstromea46f952013-07-30 01:26:50 -0700572ArtField* Class::FindInstanceField(const DexCache* dex_cache, uint32_t dex_field_idx) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800573 // Is the field in this class, or any of its superclasses?
574 // Interfaces are not relevant because they can't contain instance fields.
575 for (Class* c = this; c != NULL; c = c->GetSuperClass()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700576 ArtField* f = c->FindDeclaredInstanceField(dex_cache, dex_field_idx);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800577 if (f != NULL) {
578 return f;
579 }
580 }
581 return NULL;
582}
583
Brian Carlstromea46f952013-07-30 01:26:50 -0700584ArtField* Class::FindDeclaredStaticField(const StringPiece& name, const StringPiece& type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800585 DCHECK(type != NULL);
586 FieldHelper fh;
587 for (size_t i = 0; i < NumStaticFields(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700588 ArtField* f = GetStaticField(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800589 fh.ChangeField(f);
Ian Rogersdfb325e2013-10-30 01:00:44 -0700590 if (name == fh.GetName() && type == fh.GetTypeDescriptor()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800591 return f;
592 }
593 }
594 return NULL;
595}
596
Brian Carlstromea46f952013-07-30 01:26:50 -0700597ArtField* Class::FindDeclaredStaticField(const DexCache* dex_cache, uint32_t dex_field_idx) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800598 if (dex_cache == GetDexCache()) {
599 for (size_t i = 0; i < NumStaticFields(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700600 ArtField* f = GetStaticField(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800601 if (f->GetDexFieldIndex() == dex_field_idx) {
602 return f;
603 }
604 }
605 }
606 return NULL;
607}
608
Brian Carlstromea46f952013-07-30 01:26:50 -0700609ArtField* Class::FindStaticField(const StringPiece& name, const StringPiece& type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800610 // Is the field in this class (or its interfaces), or any of its
611 // superclasses (or their interfaces)?
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800612 for (Class* k = this; k != NULL; k = k->GetSuperClass()) {
613 // Is the field in this class?
Brian Carlstromea46f952013-07-30 01:26:50 -0700614 ArtField* f = k->FindDeclaredStaticField(name, type);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800615 if (f != NULL) {
616 return f;
617 }
618 // Is this field in any of this class' interfaces?
Mathieu Chartier590fee92013-09-13 13:46:47 -0700619 ClassHelper kh(k);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800620 for (uint32_t i = 0; i < kh.NumDirectInterfaces(); ++i) {
621 Class* interface = kh.GetDirectInterface(i);
622 f = interface->FindStaticField(name, type);
623 if (f != NULL) {
624 return f;
625 }
626 }
627 }
628 return NULL;
629}
630
Brian Carlstromea46f952013-07-30 01:26:50 -0700631ArtField* Class::FindStaticField(const DexCache* dex_cache, uint32_t dex_field_idx) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800632 for (Class* k = this; k != NULL; k = k->GetSuperClass()) {
633 // Is the field in this class?
Brian Carlstromea46f952013-07-30 01:26:50 -0700634 ArtField* f = k->FindDeclaredStaticField(dex_cache, dex_field_idx);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800635 if (f != NULL) {
636 return f;
637 }
638 // Is this field in any of this class' interfaces?
Mathieu Chartier590fee92013-09-13 13:46:47 -0700639 ClassHelper kh(k);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800640 for (uint32_t i = 0; i < kh.NumDirectInterfaces(); ++i) {
641 Class* interface = kh.GetDirectInterface(i);
642 f = interface->FindStaticField(dex_cache, dex_field_idx);
643 if (f != NULL) {
644 return f;
645 }
646 }
647 }
648 return NULL;
649}
650
Brian Carlstromea46f952013-07-30 01:26:50 -0700651ArtField* Class::FindField(const StringPiece& name, const StringPiece& type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800652 // Find a field using the JLS field resolution order
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800653 for (Class* k = this; k != NULL; k = k->GetSuperClass()) {
654 // Is the field in this class?
Brian Carlstromea46f952013-07-30 01:26:50 -0700655 ArtField* f = k->FindDeclaredInstanceField(name, type);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800656 if (f != NULL) {
657 return f;
658 }
659 f = k->FindDeclaredStaticField(name, type);
660 if (f != NULL) {
661 return f;
662 }
663 // Is this field in any of this class' interfaces?
Mathieu Chartier590fee92013-09-13 13:46:47 -0700664 ClassHelper kh(k);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800665 for (uint32_t i = 0; i < kh.NumDirectInterfaces(); ++i) {
666 Class* interface = kh.GetDirectInterface(i);
667 f = interface->FindStaticField(name, type);
668 if (f != NULL) {
669 return f;
670 }
671 }
672 }
673 return NULL;
674}
675
Brian Carlstromea46f952013-07-30 01:26:50 -0700676static void SetPreverifiedFlagOnMethods(mirror::ObjectArray<mirror::ArtMethod>* methods)
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200677 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
678 if (methods != NULL) {
679 for (int32_t index = 0, end = methods->GetLength(); index < end; ++index) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700680 mirror::ArtMethod* method = methods->GetWithoutChecks(index);
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200681 DCHECK(method != NULL);
Ian Rogers1eb512d2013-10-18 15:42:20 -0700682 if (!method->IsNative() && !method->IsAbstract()) {
683 method->SetPreverified();
684 }
Sebastien Hertz233ea8e2013-06-06 11:57:09 +0200685 }
686 }
687}
688
689void Class::SetPreverifiedFlagOnAllMethods() {
690 DCHECK(IsVerified());
691 SetPreverifiedFlagOnMethods(GetDirectMethods());
692 SetPreverifiedFlagOnMethods(GetVirtualMethods());
693}
694
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800695} // namespace mirror
696} // namespace art