blob: 94011b2375bd8e81c20331c982f52b4824d7a64d [file] [log] [blame]
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001// Copyright 2011 Google Inc. All Rights Reserved.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004
Brian Carlstromdbc05252011-09-09 01:59:59 -07005#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07006#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -07008#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07009
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070010#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070011#include "class_loader.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070012#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070013#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070014#include "dex_verifier.h"
15#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070016#include "intern_table.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "logging.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070018#include "monitor.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070019#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070020#include "object.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070021#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070022#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070023#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070024#include "space.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070025#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070026#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070027#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070028#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029
30namespace art {
31
Elliott Hughes4a2b4172011-09-20 17:08:25 -070032namespace {
33
Elliott Hughes362f9bc2011-10-17 18:56:41 -070034void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070035void ThrowNoClassDefFoundError(const char* fmt, ...) {
36 va_list args;
37 va_start(args, fmt);
38 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
39 va_end(args);
40}
41
Elliott Hughes362f9bc2011-10-17 18:56:41 -070042void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070043void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070044 va_list args;
45 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070046 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070047 va_end(args);
48}
49
Elliott Hughes362f9bc2011-10-17 18:56:41 -070050void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070051void ThrowLinkageError(const char* fmt, ...) {
52 va_list args;
53 va_start(args, fmt);
54 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
55 va_end(args);
56}
57
Elliott Hughescc5f9a92011-09-28 19:17:29 -070058void ThrowNoSuchMethodError(const char* kind,
59 Class* c, const StringPiece& name, const StringPiece& signature) {
60 DexCache* dex_cache = c->GetDexCache();
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070061 std::ostringstream msg;
Elliott Hughescc5f9a92011-09-28 19:17:29 -070062 msg << "no " << kind << " method " << name << "." << signature
63 << " in class " << c->GetDescriptor()->ToModifiedUtf8()
64 << " or its superclasses";
65 if (dex_cache) {
66 msg << " (defined in " << dex_cache->GetLocation()->ToModifiedUtf8() << ")";
67 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070068 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070069}
70
Elliott Hughes4a2b4172011-09-20 17:08:25 -070071void ThrowEarlierClassFailure(Class* c) {
72 /*
73 * The class failed to initialize on a previous attempt, so we want to throw
74 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
75 * failed in verification, in which case v2 5.4.1 says we need to re-throw
76 * the previous error.
77 */
78 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
79
80 if (c->GetVerifyErrorClass() != NULL) {
81 // TODO: change the verifier to store an _instance_, with a useful detail message?
82 std::string error_descriptor(c->GetVerifyErrorClass()->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070083 Thread::Current()->ThrowNewException(error_descriptor.c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -070084 PrettyDescriptor(c->GetDescriptor()).c_str());
85 } else {
86 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c->GetDescriptor()).c_str());
87 }
88}
89
Elliott Hughes4d0207c2011-10-03 19:14:34 -070090void WrapExceptionInInitializer() {
91 JNIEnv* env = Thread::Current()->GetJniEnv();
92
93 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
94 CHECK(cause.get() != NULL);
95
96 env->ExceptionClear();
97
98 // TODO: add java.lang.Error to JniConstants?
99 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
100 CHECK(error_class.get() != NULL);
101 if (env->IsInstanceOf(cause.get(), error_class.get())) {
102 // We only wrap non-Error exceptions; an Error can just be used as-is.
103 env->Throw(cause.get());
104 return;
105 }
106
107 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
108 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
109 CHECK(eiie_class.get() != NULL);
110
111 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
112 CHECK(mid != NULL);
113
114 ScopedLocalRef<jthrowable> eiie(env,
115 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
116 env->Throw(eiie.get());
117}
118
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700119} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700120
Elliott Hughes418d20f2011-09-22 14:00:39 -0700121const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700122 "Ljava/lang/Class;",
123 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700124 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700125 "[Ljava/lang/Object;",
126 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700127 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700128 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700129 "Ljava/lang/reflect/Field;",
130 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700131 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700132 "Ljava/lang/ClassLoader;",
133 "Ldalvik/system/BaseDexClassLoader;",
134 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700135 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700136 "Z",
137 "B",
138 "C",
139 "D",
140 "F",
141 "I",
142 "J",
143 "S",
144 "V",
145 "[Z",
146 "[B",
147 "[C",
148 "[D",
149 "[F",
150 "[I",
151 "[J",
152 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700153 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700154};
155
Elliott Hughes5f791332011-09-15 17:45:30 -0700156class ObjectLock {
157 public:
158 explicit ObjectLock(Object* object) : self_(Thread::Current()), obj_(object) {
159 CHECK(object != NULL);
160 obj_->MonitorEnter(self_);
161 }
162
163 ~ObjectLock() {
164 obj_->MonitorExit(self_);
165 }
166
167 void Wait() {
168 return Monitor::Wait(self_, obj_, 0, 0, false);
169 }
170
171 void Notify() {
172 obj_->Notify();
173 }
174
175 void NotifyAll() {
176 obj_->NotifyAll();
177 }
178
179 private:
180 Thread* self_;
181 Object* obj_;
182 DISALLOW_COPY_AND_ASSIGN(ObjectLock);
183};
184
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700185ClassLinker* ClassLinker::Create(const std::string& boot_class_path,
186 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700187 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700188 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700189 class_linker->Init(boot_class_path);
190 return class_linker.release();
191}
192
193ClassLinker* ClassLinker::Create(InternTable* intern_table) {
194 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
195 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700196 return class_linker.release();
197}
198
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700199ClassLinker::ClassLinker(InternTable* intern_table)
Brian Carlstrom16192862011-09-12 17:50:06 -0700200 : lock_("ClassLinker lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700201 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700202 array_interfaces_(NULL),
203 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700204 init_done_(false),
205 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700206 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700207}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700208
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700209void CreateClassPath(const std::string& class_path,
210 std::vector<const DexFile*>& class_path_vector) {
211 std::vector<std::string> parsed;
212 Split(class_path, ':', parsed);
213 for (size_t i = 0; i < parsed.size(); ++i) {
214 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
215 if (dex_file != NULL) {
216 class_path_vector.push_back(dex_file);
217 }
218 }
219}
220
221void ClassLinker::Init(const std::string& boot_class_path) {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700222 const Runtime* runtime = Runtime::Current();
223 if (runtime->IsVerboseStartup()) {
224 LOG(INFO) << "ClassLinker::InitFrom entering";
225 }
226
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700227 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700228
Elliott Hughes30646832011-10-13 16:59:46 -0700229 // java_lang_Class comes first, it's needed for AllocClass
230 Class* java_lang_Class = down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass)));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700231 CHECK(java_lang_Class != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700232 java_lang_Class->SetClass(java_lang_Class);
233 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700234 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700235
Elliott Hughes418d20f2011-09-22 14:00:39 -0700236 // Class[] is used for reflection support.
237 Class* class_array_class = AllocClass(java_lang_Class, sizeof(Class));
238 class_array_class->SetComponentType(java_lang_Class);
239
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700240 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom4873d462011-08-21 15:23:39 -0700241 Class* java_lang_Object = AllocClass(java_lang_Class, sizeof(Class));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700242 CHECK(java_lang_Object != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700243 // backfill Object as the super class of Class
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700244 java_lang_Class->SetSuperClass(java_lang_Object);
245 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700246
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700247 // Object[] next to hold class roots
Brian Carlstrom4873d462011-08-21 15:23:39 -0700248 Class* object_array_class = AllocClass(java_lang_Class, sizeof(Class));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700249 object_array_class->SetComponentType(java_lang_Object);
Brian Carlstroma0808032011-07-18 00:39:23 -0700250
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700251 // Setup the char class to be used for char[]
252 Class* char_class = AllocClass(java_lang_Class, sizeof(Class));
253
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700254 // Setup the char[] class to be used for String
Brian Carlstrom4873d462011-08-21 15:23:39 -0700255 Class* char_array_class = AllocClass(java_lang_Class, sizeof(Class));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700256 char_array_class->SetComponentType(char_class);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700257 CharArray::SetArrayClass(char_array_class);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700258
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700259 // Setup String
260 Class* java_lang_String = AllocClass(java_lang_Class, sizeof(StringClass));
261 String::SetClass(java_lang_String);
262 java_lang_String->SetObjectSize(sizeof(String));
263 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400264
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700265 // Backfill Class descriptors missing until this point
Brian Carlstromc74255f2011-09-11 22:47:39 -0700266 java_lang_Class->SetDescriptor(intern_table_->InternStrong("Ljava/lang/Class;"));
267 java_lang_Object->SetDescriptor(intern_table_->InternStrong("Ljava/lang/Object;"));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700268 class_array_class->SetDescriptor(intern_table_->InternStrong("[Ljava/lang/Class;"));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700269 object_array_class->SetDescriptor(intern_table_->InternStrong("[Ljava/lang/Object;"));
270 java_lang_String->SetDescriptor(intern_table_->InternStrong("Ljava/lang/String;"));
271 char_array_class->SetDescriptor(intern_table_->InternStrong("[C"));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700272
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 // Create storage for root classes, save away our work so far (requires
274 // descriptors)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700275 class_roots_ = ObjectArray<Class>::Alloc(object_array_class, kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700276 CHECK(class_roots_ != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700277 SetClassRoot(kJavaLangClass, java_lang_Class);
278 SetClassRoot(kJavaLangObject, java_lang_Object);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700279 SetClassRoot(kClassArrayClass, class_array_class);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700280 SetClassRoot(kObjectArrayClass, object_array_class);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700281 SetClassRoot(kCharArrayClass, char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700282 SetClassRoot(kJavaLangString, java_lang_String);
283
284 // Setup the primitive type classes.
285 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Class::kPrimBoolean));
286 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Class::kPrimByte));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700287 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Class::kPrimShort));
288 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Class::kPrimInt));
289 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Class::kPrimLong));
290 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Class::kPrimFloat));
291 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Class::kPrimDouble));
292 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Class::kPrimVoid));
293
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294 // Create array interface entries to populate once we can load system classes
Elliott Hughes418d20f2011-09-22 14:00:39 -0700295 array_interfaces_ = AllocClassArray(2);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700296 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700297
298 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
299 Class* int_array_class = AllocClass(java_lang_Class, sizeof(Class));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700300 int_array_class->SetDescriptor(intern_table_->InternStrong("[I"));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700301 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
302 IntArray::SetArrayClass(int_array_class);
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700303 SetClassRoot(kIntArrayClass, int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700304
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700305 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700306
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700307 // setup boot_class_path_ and register class_path now that we can
308 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700309 std::vector<const DexFile*> boot_class_path_vector;
310 CreateClassPath(boot_class_path, boot_class_path_vector);
311 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
312 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700313 CHECK(dex_file != NULL);
314 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700315 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700316
Elliott Hughes80609252011-09-23 17:24:51 -0700317 // Constructor, Field, and Method are necessary so that FindClass can link members
318 Class* java_lang_reflect_Constructor = AllocClass(java_lang_Class, sizeof(MethodClass));
319 java_lang_reflect_Constructor->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Constructor;"));
320 CHECK(java_lang_reflect_Constructor != NULL);
321 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
322 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor);
323 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
324
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700325 Class* java_lang_reflect_Field = AllocClass(java_lang_Class, sizeof(FieldClass));
326 CHECK(java_lang_reflect_Field != NULL);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700327 java_lang_reflect_Field->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Field;"));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700328 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
329 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field);
330 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
331 Field::SetClass(java_lang_reflect_Field);
332
333 Class* java_lang_reflect_Method = AllocClass(java_lang_Class, sizeof(MethodClass));
Elliott Hughes80609252011-09-23 17:24:51 -0700334 java_lang_reflect_Method->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Method;"));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700335 CHECK(java_lang_reflect_Method != NULL);
336 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
337 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method);
338 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Elliott Hughes80609252011-09-23 17:24:51 -0700339 Method::SetClasses(java_lang_reflect_Constructor, java_lang_reflect_Method);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700340
341 // now we can use FindSystemClass
342
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700343 // run char class through InitializePrimitiveClass to finish init
344 InitializePrimitiveClass(char_class, "C", Class::kPrimChar);
345 SetClassRoot(kPrimitiveChar, char_class); // needs descriptor
346
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700347 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348 java_lang_Object->SetStatus(Class::kStatusNotReady);
349 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
350 CHECK_EQ(java_lang_Object, Object_class);
351 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
352 java_lang_String->SetStatus(Class::kStatusNotReady);
353 Class* String_class = FindSystemClass("Ljava/lang/String;");
354 CHECK_EQ(java_lang_String, String_class);
355 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
356
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700357 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
359 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
360
361 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
362 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
363
364 Class* found_char_array_class = FindSystemClass("[C");
365 CHECK_EQ(char_array_class, found_char_array_class);
366
367 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
368 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
369
370 Class* found_int_array_class = FindSystemClass("[I");
371 CHECK_EQ(int_array_class, found_int_array_class);
372
373 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
374 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
375
376 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
377 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
378
379 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
380 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
381
Elliott Hughes418d20f2011-09-22 14:00:39 -0700382 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
383 CHECK_EQ(class_array_class, found_class_array_class);
384
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700385 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
386 CHECK_EQ(object_array_class, found_object_array_class);
387
388 // Setup the single, global copies of "interfaces" and "iftable"
389 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
390 CHECK(java_lang_Cloneable != NULL);
391 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
392 CHECK(java_io_Serializable != NULL);
393 CHECK(array_interfaces_ != NULL);
394 array_interfaces_->Set(0, java_lang_Cloneable);
395 array_interfaces_->Set(1, java_io_Serializable);
396 // We assume that Cloneable/Serializable don't have superinterfaces --
397 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700398 // supers as well.
399 array_iftable_->Set(0, AllocInterfaceEntry(array_interfaces_->Get(0)));
400 array_iftable_->Set(1, AllocInterfaceEntry(array_interfaces_->Get(1)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700401
Elliott Hughes418d20f2011-09-22 14:00:39 -0700402 // Sanity check Class[] and Object[]'s interfaces
403 CHECK_EQ(java_lang_Cloneable, class_array_class->GetInterface(0));
404 CHECK_EQ(java_io_Serializable, class_array_class->GetInterface(1));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700405 CHECK_EQ(java_lang_Cloneable, object_array_class->GetInterface(0));
406 CHECK_EQ(java_io_Serializable, object_array_class->GetInterface(1));
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700407
Elliott Hughes80609252011-09-23 17:24:51 -0700408 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700409 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700410 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700411 CHECK_EQ(java_lang_Class, Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700412
Elliott Hughes80609252011-09-23 17:24:51 -0700413 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
414 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
415 CHECK_EQ(java_lang_reflect_Constructor, Constructor_class);
416
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700417 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700418 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700419 CHECK_EQ(java_lang_reflect_Field, Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700420
421 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700422 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700423 CHECK_EQ(java_lang_reflect_Method, Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700424
Ian Rogers466bb252011-10-14 03:29:56 -0700425 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
426
427 // Create java.lang.reflect.Proxy root
428 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
429 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
430
Brian Carlstrom1f870082011-08-23 16:02:11 -0700431 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700432 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
433 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700434 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700435 java_lang_ref_FinalizerReference->SetAccessFlags(
436 java_lang_ref_FinalizerReference->GetAccessFlags() |
437 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700438 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700439 java_lang_ref_PhantomReference->SetAccessFlags(
440 java_lang_ref_PhantomReference->GetAccessFlags() |
441 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700442 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700443 java_lang_ref_SoftReference->SetAccessFlags(
444 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700445 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700446 java_lang_ref_WeakReference->SetAccessFlags(
447 java_lang_ref_WeakReference->GetAccessFlags() |
448 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700449
Brian Carlstromaded5f72011-10-07 17:15:04 -0700450 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700451 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700452 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700453 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
454
455 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
456 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
457 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
458
459 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
460 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
461 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
462 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
463
464 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700465 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
466 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700467 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700468
Brian Carlstroma663ea52011-08-19 23:33:41 -0700469 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700470
471 if (runtime->IsVerboseStartup()) {
472 LOG(INFO) << "ClassLinker::InitFrom exiting";
473 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700474}
475
476void ClassLinker::FinishInit() {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700477 const Runtime* runtime = Runtime::Current();
478 if (runtime->IsVerboseStartup()) {
479 LOG(INFO) << "ClassLinker::FinishInit entering";
480 }
Brian Carlstrom16192862011-09-12 17:50:06 -0700481
482 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700483 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700484 // as the types of the field can't be resolved prior to the runtime being
485 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700486 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700487 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700488 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
489
Elliott Hughesadb460d2011-10-05 17:02:34 -0700490 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
491
Brian Carlstrom16192862011-09-12 17:50:06 -0700492 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
493 CHECK(pendingNext->GetName()->Equals("pendingNext"));
494 CHECK_EQ(ResolveType(pendingNext->GetTypeIdx(), pendingNext), java_lang_ref_Reference);
495
496 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
497 CHECK(queue->GetName()->Equals("queue"));
Elliott Hughesadb460d2011-10-05 17:02:34 -0700498 CHECK_EQ(ResolveType(queue->GetTypeIdx(), queue), java_lang_ref_ReferenceQueue);
Brian Carlstrom16192862011-09-12 17:50:06 -0700499
500 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
501 CHECK(queueNext->GetName()->Equals("queueNext"));
502 CHECK_EQ(ResolveType(queueNext->GetTypeIdx(), queueNext), java_lang_ref_Reference);
503
504 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
505 CHECK(referent->GetName()->Equals("referent"));
506 CHECK_EQ(ResolveType(referent->GetTypeIdx(), referent), GetClassRoot(kJavaLangObject));
507
508 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
509 CHECK(zombie->GetName()->Equals("zombie"));
510 CHECK_EQ(ResolveType(zombie->GetTypeIdx(), zombie), GetClassRoot(kJavaLangObject));
511
512 Heap::SetReferenceOffsets(referent->GetOffset(),
513 queue->GetOffset(),
514 queueNext->GetOffset(),
515 pendingNext->GetOffset(),
516 zombie->GetOffset());
517
Brian Carlstroma663ea52011-08-19 23:33:41 -0700518 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700519 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700520 ClassRoot class_root = static_cast<ClassRoot>(i);
521 Class* klass = GetClassRoot(class_root);
522 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700523 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700524 // note SetClassRoot does additional validation.
525 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700526 }
527
Elliott Hughes92f14b22011-10-06 12:29:54 -0700528 CHECK(array_iftable_ != NULL);
529 CHECK(array_interfaces_ != NULL);
530
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700531 // disable the slow paths in FindClass and CreatePrimitiveClass now
532 // that Object, Class, and Object[] are setup
533 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700534
535 if (runtime->IsVerboseStartup()) {
536 LOG(INFO) << "ClassLinker::FinishInit exiting";
537 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700538}
539
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700540void ClassLinker::RunRootClinits() {
541 Thread* self = Thread::Current();
542 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
543 Class* c = GetClassRoot(ClassRoot(i));
544 if (!c->IsArrayClass() && !c->IsPrimitive()) {
545 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700546 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700547 }
548 }
549}
550
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700551OatFile* ClassLinker::OpenOat(const Space* space) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700552 MutexLock mu(lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700553 const Runtime* runtime = Runtime::Current();
554 if (runtime->IsVerboseStartup()) {
555 LOG(INFO) << "ClassLinker::OpenOat entering";
556 }
557 const ImageHeader& image_header = space->GetImageHeader();
558 String* oat_location = image_header.GetImageRoot(ImageHeader::kOatLocation)->AsString();
559 std::string oat_filename;
560 oat_filename += runtime->GetHostPrefix();
561 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma9f19782011-10-13 00:14:47 -0700562 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBaseAddr());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700563 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700564 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700565 return NULL;
566 }
567 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
568 uint32_t image_oat_checksum = image_header.GetOatChecksum();
569 if (oat_checksum != image_oat_checksum) {
570 LOG(ERROR) << "Failed to match oat filechecksum " << std::hex << oat_checksum
571 << " to expected oat checksum " << std::hex << oat_checksum
572 << " in image";
573 return NULL;
574 }
575 oat_files_.push_back(oat_file);
576 if (runtime->IsVerboseStartup()) {
577 LOG(INFO) << "ClassLinker::OpenOat exiting";
578 }
579 return oat_file;
580}
581
Brian Carlstromaded5f72011-10-07 17:15:04 -0700582const OatFile* ClassLinker::FindOatFile(const DexFile& dex_file) {
583 MutexLock mu(lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700584 // TODO: check if dex_file matches an OatDexFile location and checksum
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700585 return FindOatFile(OatFile::DexFileToOatFilename(dex_file));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700586}
587
Brian Carlstromfad71432011-10-16 20:25:10 -0700588const OatFile* ClassLinker::FindOpenedOatFile(const std::string& location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700589 for (size_t i = 0; i < oat_files_.size(); i++) {
590 const OatFile* oat_file = oat_files_[i];
591 DCHECK(oat_file != NULL);
592 if (oat_file->GetLocation() == location) {
593 return oat_file;
594 }
595 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700596 return NULL;
597}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700598
Brian Carlstromfad71432011-10-16 20:25:10 -0700599const OatFile* ClassLinker::FindOatFile(const std::string& location) {
600 const OatFile* oat_file = FindOpenedOatFile(location);
601 if (oat_file != NULL) {
602 return oat_file;
603 }
604
605 oat_file = OatFile::Open(location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700606 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700607 if (location.empty() || location[0] != '/') {
608 LOG(ERROR) << "Failed to open oat file from " << location;
609 return NULL;
610 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700611
Brian Carlstroma9f19782011-10-13 00:14:47 -0700612 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700613 std::string cache_location = GetArtCacheOatFilenameOrDie(location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700614 oat_file = FindOpenedOatFile(cache_location);
615 if (oat_file != NULL) {
616 return oat_file;
617 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700618 oat_file = OatFile::Open(cache_location, "", NULL);
619 if (oat_file == NULL) {
620 LOG(ERROR) << "Failed to open oat file from " << location << " or " << cache_location << ".";
621 return NULL;
622 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700623 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700624
625 CHECK(oat_file != NULL) << location;
626 oat_files_.push_back(oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700627 return oat_file;
628}
629
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700630void ClassLinker::InitFromImage() {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700631 const Runtime* runtime = Runtime::Current();
632 if (runtime->IsVerboseStartup()) {
633 LOG(INFO) << "ClassLinker::InitFromImage entering";
634 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700635 CHECK(!init_done_);
636
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700637 const std::vector<Space*>& spaces = Heap::GetSpaces();
638 for (size_t i = 0; i < spaces.size(); i++) {
639 Space* space = spaces[i] ;
640 if (space->IsImageSpace()) {
641 OatFile* oat_file = OpenOat(space);
642 CHECK(oat_file != NULL) << "Failed to open oat file for image";
643 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
644 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
645
646 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
647 static_cast<uint32_t>(dex_caches->GetLength()));
648 for (int i = 0; i < dex_caches->GetLength(); i++) {
649 DexCache* dex_cache = dex_caches->Get(i);
650 const std::string& dex_file_location = dex_cache->GetLocation()->ToModifiedUtf8();
651
652 std::string dex_filename;
653 dex_filename += runtime->GetHostPrefix();
654 dex_filename += dex_file_location;
655 const DexFile* dex_file = DexFile::Open(dex_filename, runtime->GetHostPrefix());
656 if (dex_file == NULL) {
657 LOG(FATAL) << "Failed to open dex file " << dex_filename
658 << " referenced from oat file as " << dex_file_location;
659 }
660
Brian Carlstromaded5f72011-10-07 17:15:04 -0700661 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
662 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700663
Brian Carlstromdf143242011-10-10 18:05:34 -0700664 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700665 }
666 }
667 }
668
Brian Carlstroma663ea52011-08-19 23:33:41 -0700669 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
670 DCHECK(heap_bitmap != NULL);
671
Brian Carlstroma663ea52011-08-19 23:33:41 -0700672 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700673 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700674
675 // reinit class_roots_
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700676 Object* class_roots_object = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
677 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700678
Elliott Hughes92f14b22011-10-06 12:29:54 -0700679 // reinit array_interfaces_ and array_iftable_ from any array class instance, they should all be ==
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700680 array_interfaces_ = GetClassRoot(kObjectArrayClass)->GetInterfaces();
681 DCHECK(array_interfaces_ == GetClassRoot(kBooleanArrayClass)->GetInterfaces());
Elliott Hughes92f14b22011-10-06 12:29:54 -0700682 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
683 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Brian Carlstroma663ea52011-08-19 23:33:41 -0700684
Brian Carlstroma663ea52011-08-19 23:33:41 -0700685 String::SetClass(GetClassRoot(kJavaLangString));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700686 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700687 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700688 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
689 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
690 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
691 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
692 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
693 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
694 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
695 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700696 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700697 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700698
699 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700700
701 if (runtime->IsVerboseStartup()) {
702 LOG(INFO) << "ClassLinker::InitFromImage exiting";
703 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700704}
705
Brian Carlstrom78128a62011-09-15 17:21:19 -0700706void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700707 DCHECK(obj != NULL);
708 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700709 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700710
Brian Carlstromc74255f2011-09-11 22:47:39 -0700711 if (obj->IsString()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700712 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700713 return;
714 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700715 if (obj->IsClass()) {
716 // restore class to ClassLinker::classes_ table
717 Class* klass = obj->AsClass();
718 std::string descriptor = klass->GetDescriptor()->ToModifiedUtf8();
719 class_linker->InsertClass(descriptor, klass);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700720 return;
721 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700722}
723
724// Keep in sync with InitCallback. Anything we visit, we need to
725// reinit references to when reinitializing a ClassLinker from a
726// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700727void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
728 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700729
730 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700731 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700732 }
733
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700734 {
Brian Carlstrom16192862011-09-12 17:50:06 -0700735 MutexLock mu(lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700736 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700737 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700738 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700739 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700740 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700741
Elliott Hughes410c0c82011-09-01 17:58:25 -0700742 visitor(array_interfaces_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700743}
744
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700745ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700746 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700747 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700748 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700749 BooleanArray::ResetArrayClass();
750 ByteArray::ResetArrayClass();
751 CharArray::ResetArrayClass();
752 DoubleArray::ResetArrayClass();
753 FloatArray::ResetArrayClass();
754 IntArray::ResetArrayClass();
755 LongArray::ResetArrayClass();
756 ShortArray::ResetArrayClass();
757 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700758 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700759 STLDeleteElements(&boot_class_path_);
760 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700761}
762
763DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Elliott Hughes30646832011-10-13 16:59:46 -0700764 String* location = intern_table_->InternStrong(dex_file.GetLocation().c_str());
765 if (location == NULL) {
766 return NULL;
767 }
Brian Carlstrom83db7722011-08-26 17:32:56 -0700768 DexCache* dex_cache = down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray()));
Elliott Hughes30646832011-10-13 16:59:46 -0700769 if (dex_cache == NULL) {
770 return NULL;
771 }
772 // TODO: lots of missing null checks hidden in this call...
773 dex_cache->Init(location,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700774 AllocObjectArray<String>(dex_file.NumStringIds()),
Elliott Hughes418d20f2011-09-22 14:00:39 -0700775 AllocClassArray(dex_file.NumTypeIds()),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700776 AllocObjectArray<Method>(dex_file.NumMethodIds()),
Brian Carlstrom83db7722011-08-26 17:32:56 -0700777 AllocObjectArray<Field>(dex_file.NumFieldIds()),
Brian Carlstrom1caa2c22011-08-28 13:02:33 -0700778 AllocCodeAndDirectMethods(dex_file.NumMethodIds()),
779 AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700780 return dex_cache;
Brian Carlstroma0808032011-07-18 00:39:23 -0700781}
782
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700783CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
784 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -0700785}
786
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700787InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
788 DCHECK(interface->IsInterface());
789 ObjectArray<Object>* array = AllocObjectArray<Object>(InterfaceEntry::LengthAsArray());
790 InterfaceEntry* interface_entry = down_cast<InterfaceEntry*>(array);
791 interface_entry->SetInterface(interface);
792 return interface_entry;
793}
794
Brian Carlstrom4873d462011-08-21 15:23:39 -0700795Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
796 DCHECK_GE(class_size, sizeof(Class));
797 Class* klass = Heap::AllocObject(java_lang_Class, class_size)->AsClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700798 klass->SetPrimitiveType(Class::kPrimNot); // default to not being primitive
799 klass->SetClassSize(class_size);
Brian Carlstrom4873d462011-08-21 15:23:39 -0700800 return klass;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700801}
802
Brian Carlstrom4873d462011-08-21 15:23:39 -0700803Class* ClassLinker::AllocClass(size_t class_size) {
804 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -0700805}
806
Jesse Wilson35baaab2011-08-10 16:18:03 -0400807Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700808 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -0700809}
810
811Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700812 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700813}
814
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700815ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
816 return ObjectArray<StackTraceElement>::Alloc(
817 GetClassRoot(kJavaLangStackTraceElementArrayClass),
818 length);
819}
820
Brian Carlstromaded5f72011-10-07 17:15:04 -0700821Class* EnsureResolved(Class* klass) {
822 DCHECK(klass != NULL);
823 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -0700824 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700825 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700826 ObjectLock lock(klass);
827 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700828 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700829 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700830 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700831 return NULL;
832 }
833 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700834 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700835 lock.Wait();
836 }
837 }
838 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700839 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700840 return NULL;
841 }
842 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -0700843 CHECK(klass->IsResolved()) << PrettyClass(klass);
844 CHECK(!self->IsExceptionPending())
845 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
846 return klass;
847}
848
849Class* ClassLinker::FindClass(const std::string& descriptor,
850 const ClassLoader* class_loader) {
851 CHECK_NE(descriptor.size(), 0U);
852 Thread* self = Thread::Current();
853 DCHECK(self != NULL);
854 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
855 // Find the class in the loaded classes table.
856 Class* klass = LookupClass(descriptor, class_loader);
857 if (klass != NULL) {
858 return EnsureResolved(klass);
859 }
860 if (descriptor.size() == 1) {
861 // only the descriptors of primitive types should be 1 character long
862 return FindPrimitiveClass(descriptor[0]);
863 }
864 // Class is not yet loaded.
865 if (descriptor[0] == '[') {
866 return CreateArrayClass(descriptor, class_loader);
867 }
868 if (class_loader == NULL) {
869 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
870 if (pair.second == NULL) {
871 std::string name(PrintableString(descriptor));
872 ThrowNoClassDefFoundError("Class %s not found in boot class loader", name.c_str());
873 return NULL;
874 }
875 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
876 }
877
878 if (ClassLoader::UseCompileTimeClassPath()) {
879 const std::vector<const DexFile*>& class_path
880 = ClassLoader::GetCompileTimeClassPath(class_loader);
881 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
882 if (pair.second == NULL) {
883 return FindSystemClass(descriptor);
884 }
885 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
886 }
887
888 std::string class_name_string = DescriptorToDot(descriptor);
889 ScopedThreadStateChange(self, Thread::kNative);
890 JNIEnv* env = self->GetJniEnv();
Brian Carlstromdf143242011-10-10 18:05:34 -0700891 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
892 CHECK(c.get() != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700893 // TODO: cache method?
Brian Carlstromdf143242011-10-10 18:05:34 -0700894 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700895 CHECK(mid != NULL);
Brian Carlstromdf143242011-10-10 18:05:34 -0700896 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
Elliott Hughes30646832011-10-13 16:59:46 -0700897 if (class_name_object.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700898 return NULL;
899 }
Brian Carlstromdf143242011-10-10 18:05:34 -0700900 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
901 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid, class_name_object.get()));
902 return Decode<Class*>(env, result.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700903}
904
905Class* ClassLinker::DefineClass(const std::string& descriptor,
906 const ClassLoader* class_loader,
907 const DexFile& dex_file,
908 const DexFile::ClassDef& dex_class_def) {
909 Class* klass;
910 // Load the class from the dex file.
911 if (!init_done_) {
912 // finish up init of hand crafted class_roots_
913 if (descriptor == "Ljava/lang/Object;") {
914 klass = GetClassRoot(kJavaLangObject);
915 } else if (descriptor == "Ljava/lang/Class;") {
916 klass = GetClassRoot(kJavaLangClass);
917 } else if (descriptor == "Ljava/lang/String;") {
918 klass = GetClassRoot(kJavaLangString);
919 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
920 klass = GetClassRoot(kJavaLangReflectConstructor);
921 } else if (descriptor == "Ljava/lang/reflect/Field;") {
922 klass = GetClassRoot(kJavaLangReflectField);
923 } else if (descriptor == "Ljava/lang/reflect/Method;") {
924 klass = GetClassRoot(kJavaLangReflectMethod);
925 } else {
926 klass = AllocClass(SizeOfClass(dex_file, dex_class_def));
927 }
928 } else {
929 klass = AllocClass(SizeOfClass(dex_file, dex_class_def));
930 }
931 klass->SetDexCache(FindDexCache(dex_file));
932 LoadClass(dex_file, dex_class_def, klass, class_loader);
933 // Check for a pending exception during load
934 Thread* self = Thread::Current();
935 if (self->IsExceptionPending()) {
936 return NULL;
937 }
938 ObjectLock lock(klass);
939 klass->SetClinitThreadId(self->GetTid());
940 // Add the newly loaded class to the loaded classes table.
941 bool success = InsertClass(descriptor, klass); // TODO: just return collision
942 if (!success) {
943 // We may fail to insert if we raced with another thread.
944 klass->SetClinitThreadId(0);
945 klass = LookupClass(descriptor, class_loader);
946 CHECK(klass != NULL);
947 return klass;
948 }
949 // Finish loading (if necessary) by finding parents
950 CHECK(!klass->IsLoaded());
951 if (!LoadSuperAndInterfaces(klass, dex_file)) {
952 // Loading failed.
953 CHECK(self->IsExceptionPending());
954 lock.NotifyAll();
955 return NULL;
956 }
957 CHECK(klass->IsLoaded());
958 // Link the class (if necessary)
959 CHECK(!klass->IsResolved());
960 if (!LinkClass(klass)) {
961 // Linking failed.
962 CHECK(self->IsExceptionPending());
963 lock.NotifyAll();
964 return NULL;
965 }
966 CHECK(klass->IsResolved());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700967 return klass;
968}
969
Brian Carlstrom4873d462011-08-21 15:23:39 -0700970// Precomputes size that will be needed for Class, matching LinkStaticFields
971size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
972 const DexFile::ClassDef& dex_class_def) {
973 const byte* class_data = dex_file.GetClassData(dex_class_def);
974 DexFile::ClassDataHeader header = dex_file.ReadClassDataHeader(&class_data);
975 size_t num_static_fields = header.static_fields_size_;
976 size_t num_ref = 0;
977 size_t num_32 = 0;
978 size_t num_64 = 0;
979 if (num_static_fields != 0) {
980 uint32_t last_idx = 0;
981 for (size_t i = 0; i < num_static_fields; ++i) {
982 DexFile::Field dex_field;
983 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
984 const DexFile::FieldId& field_id = dex_file.GetFieldId(dex_field.field_idx_);
985 const char* descriptor = dex_file.dexStringByTypeIdx(field_id.type_idx_);
986 char c = descriptor[0];
987 if (c == 'L' || c == '[') {
988 num_ref++;
989 } else if (c == 'J' || c == 'D') {
990 num_64++;
991 } else {
992 num_32++;
993 }
994 }
995 }
996
997 // start with generic class data
998 size_t size = sizeof(Class);
999 // follow with reference fields which must be contiguous at start
1000 size += (num_ref * sizeof(uint32_t));
1001 // if there are 64-bit fields to add, make sure they are aligned
1002 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1003 if (num_32 != 0) {
1004 // use an available 32-bit field for padding
1005 num_32--;
1006 }
1007 size += sizeof(uint32_t); // either way, we are adding a word
1008 DCHECK_EQ(size, RoundUp(size, 8));
1009 }
1010 // tack on any 64-bit fields now that alignment is assured
1011 size += (num_64 * sizeof(uint64_t));
1012 // tack on any remaining 32-bit fields
1013 size += (num_32 * sizeof(uint32_t));
1014 return size;
1015}
1016
Brian Carlstrom92827a52011-10-10 15:50:01 -07001017void LinkCode(Method* method, const OatFile::OatClass* oat_class, uint32_t method_index) {
1018 // Every kind of method should at least get an invoke stub from the oat_method.
1019 // non-abstract methods also get their code pointers.
1020 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
1021 oat_method.LinkMethod(method);
1022
1023 if (method->IsAbstract()) {
1024 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1025 return;
1026 }
1027 if (method->IsNative()) {
1028 // unregistering restores the dlsym lookup stub
1029 method->UnregisterNative();
1030 return;
1031 }
1032}
1033
Brian Carlstromf615a612011-07-23 12:50:34 -07001034void ClassLinker::LoadClass(const DexFile& dex_file,
1035 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001036 Class* klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001037 const ClassLoader* class_loader) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001038 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001039 CHECK(klass->GetDexCache() != NULL);
1040 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001041 const byte* class_data = dex_file.GetClassData(dex_class_def);
1042 DexFile::ClassDataHeader header = dex_file.ReadClassDataHeader(&class_data);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001043
Brian Carlstromf615a612011-07-23 12:50:34 -07001044 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001045 CHECK(descriptor != NULL);
1046
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001047 klass->SetClass(GetClassRoot(kJavaLangClass));
1048 if (klass->GetDescriptor() != NULL) {
1049 DCHECK(klass->GetDescriptor()->Equals(descriptor));
1050 } else {
Brian Carlstromc74255f2011-09-11 22:47:39 -07001051 klass->SetDescriptor(intern_table_->InternStrong(descriptor));
Elliott Hughes30646832011-10-13 16:59:46 -07001052 if (klass->GetDescriptor() == NULL) {
1053 return;
1054 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001055 }
1056 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001057 // Make sure that none of our runtime-only flags are set.
1058 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001059 klass->SetAccessFlags(access_flags);
1060 klass->SetClassLoader(class_loader);
1061 DCHECK(klass->GetPrimitiveType() == Class::kPrimNot);
1062 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001063
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001064 klass->SetSuperClassTypeIdx(dex_class_def.superclass_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001065
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001066 size_t num_static_fields = header.static_fields_size_;
1067 size_t num_instance_fields = header.instance_fields_size_;
1068 size_t num_direct_methods = header.direct_methods_size_;
1069 size_t num_virtual_methods = header.virtual_methods_size_;
Brian Carlstrom934486c2011-07-12 23:42:50 -07001070
Jesse Wilson6384f642011-10-07 18:08:35 -04001071 const char* source_file = dex_file.dexGetSourceFile(dex_class_def);
1072 if (source_file != NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001073 String* source_file_string = intern_table_->InternStrong(source_file);
1074 if (source_file_string == NULL) {
1075 return;
1076 }
1077 klass->SetSourceFile(source_file_string);
Jesse Wilson6384f642011-10-07 18:08:35 -04001078 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001079
1080 // Load class interfaces.
Brian Carlstromf615a612011-07-23 12:50:34 -07001081 LoadInterfaces(dex_file, dex_class_def, klass);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001082
1083 // Load static fields.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001084 if (num_static_fields != 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001085 klass->SetSFields(AllocObjectArray<Field>(num_static_fields));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001086 uint32_t last_idx = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001087 for (size_t i = 0; i < num_static_fields; ++i) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001088 DexFile::Field dex_field;
1089 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
Jesse Wilson35baaab2011-08-10 16:18:03 -04001090 Field* sfield = AllocField();
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001091 klass->SetStaticField(i, sfield);
Brian Carlstromf615a612011-07-23 12:50:34 -07001092 LoadField(dex_file, dex_field, klass, sfield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001093 }
1094 }
1095
1096 // Load instance fields.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001097 if (num_instance_fields != 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001098 klass->SetIFields(AllocObjectArray<Field>(num_instance_fields));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001099 uint32_t last_idx = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001100 for (size_t i = 0; i < num_instance_fields; ++i) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001101 DexFile::Field dex_field;
1102 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
Jesse Wilson35baaab2011-08-10 16:18:03 -04001103 Field* ifield = AllocField();
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001104 klass->SetInstanceField(i, ifield);
Brian Carlstromf615a612011-07-23 12:50:34 -07001105 LoadField(dex_file, dex_field, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001106 }
1107 }
1108
Brian Carlstromaded5f72011-10-07 17:15:04 -07001109 UniquePtr<const OatFile::OatClass> oat_class;
1110 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
1111 const OatFile* oat_file = FindOatFile(dex_file);
1112 if (oat_file != NULL) {
1113 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1114 if (oat_dex_file != NULL) {
1115 uint32_t class_def_index;
1116 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1117 CHECK(found) << descriptor;
1118 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001119 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001120 }
1121 }
1122 }
1123 size_t method_index = 0;
1124
Brian Carlstrom934486c2011-07-12 23:42:50 -07001125 // Load direct methods.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001126 if (num_direct_methods != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001127 // TODO: append direct methods to class object
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001128 klass->SetDirectMethods(AllocObjectArray<Method>(num_direct_methods));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001129 uint32_t last_idx = 0;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001130 for (size_t i = 0; i < num_direct_methods; ++i, ++method_index) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001131 DexFile::Method dex_method;
1132 dex_file.dexReadClassDataMethod(&class_data, &dex_method, &last_idx);
Brian Carlstrom92827a52011-10-10 15:50:01 -07001133 Method* method = AllocMethod();
1134 klass->SetDirectMethod(i, method);
1135 LoadMethod(dex_file, dex_method, klass, method);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001136 if (oat_class.get() != NULL) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001137 LinkCode(method, oat_class.get(), method_index);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001138 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001139 }
1140 }
1141
1142 // Load virtual methods.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001143 if (num_virtual_methods != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001144 // TODO: append virtual methods to class object
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001145 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001146 uint32_t last_idx = 0;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001147 for (size_t i = 0; i < num_virtual_methods; ++i, ++method_index) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001148 DexFile::Method dex_method;
1149 dex_file.dexReadClassDataMethod(&class_data, &dex_method, &last_idx);
Brian Carlstrom92827a52011-10-10 15:50:01 -07001150 Method* method = AllocMethod();
1151 klass->SetVirtualMethod(i, method);
1152 LoadMethod(dex_file, dex_method, klass, method);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001153 if (oat_class.get() != NULL) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001154 LinkCode(method, oat_class.get(), method_index);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001155 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001156 }
1157 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001158}
1159
Brian Carlstromf615a612011-07-23 12:50:34 -07001160void ClassLinker::LoadInterfaces(const DexFile& dex_file,
1161 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001162 Class* klass) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001163 const DexFile::TypeList* list = dex_file.GetInterfacesList(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001164 if (list != NULL) {
Elliott Hughes418d20f2011-09-22 14:00:39 -07001165 klass->SetInterfaces(AllocClassArray(list->Size()));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001166 IntArray* interfaces_idx = IntArray::Alloc(list->Size());
1167 klass->SetInterfacesTypeIdx(interfaces_idx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001168 for (size_t i = 0; i < list->Size(); ++i) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001169 const DexFile::TypeItem& type_item = list->GetTypeItem(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001170 interfaces_idx->Set(i, type_item.type_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001171 }
1172 }
1173}
1174
Brian Carlstromf615a612011-07-23 12:50:34 -07001175void ClassLinker::LoadField(const DexFile& dex_file,
1176 const DexFile::Field& src,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001177 Class* klass,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001178 Field* dst) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001179 const DexFile::FieldId& field_id = dex_file.GetFieldId(src.field_idx_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001180 dst->SetDeclaringClass(klass);
1181 dst->SetName(ResolveString(dex_file, field_id.name_idx_, klass->GetDexCache()));
1182 dst->SetTypeIdx(field_id.type_idx_);
1183 dst->SetAccessFlags(src.access_flags_);
1184
1185 // In order to access primitive types using GetTypeDuringLinking we need to
1186 // ensure they are resolved into the dex cache
1187 const char* descriptor = dex_file.dexStringByTypeIdx(field_id.type_idx_);
1188 if (descriptor[1] == '\0') {
1189 // only the descriptors of primitive types should be 1 character long
1190 Class* resolved = ResolveType(dex_file, field_id.type_idx_, klass);
1191 DCHECK(resolved->IsPrimitive());
1192 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001193}
1194
Brian Carlstromf615a612011-07-23 12:50:34 -07001195void ClassLinker::LoadMethod(const DexFile& dex_file,
1196 const DexFile::Method& src,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001197 Class* klass,
Brian Carlstrom1f870082011-08-23 16:02:11 -07001198 Method* dst) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001199 const DexFile::MethodId& method_id = dex_file.GetMethodId(src.method_idx_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001200 dst->SetDeclaringClass(klass);
Elliott Hughes20cde902011-10-04 17:37:27 -07001201
Elliott Hughes80609252011-09-23 17:24:51 -07001202 String* method_name = ResolveString(dex_file, method_id.name_idx_, klass->GetDexCache());
Elliott Hughes30646832011-10-13 16:59:46 -07001203 if (method_name == NULL) {
1204 return;
1205 }
Elliott Hughes80609252011-09-23 17:24:51 -07001206 dst->SetName(method_name);
1207 if (method_name->Equals("<init>")) {
1208 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1209 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001210
1211 int32_t utf16_length;
1212 std::string signature(dex_file.CreateMethodDescriptor(method_id.proto_idx_, &utf16_length));
Elliott Hughes30646832011-10-13 16:59:46 -07001213 String* signature_string = intern_table_->InternStrong(utf16_length, signature.c_str());
1214 if (signature_string == NULL) {
1215 return;
1216 }
1217 dst->SetSignature(signature_string);
Elliott Hughes20cde902011-10-04 17:37:27 -07001218
1219 if (method_name->Equals("finalize") && signature == "()V") {
1220 /*
1221 * The Enum class declares a "final" finalize() method to prevent subclasses from introducing
1222 * a finalizer. We don't want to set the finalizable flag for Enum or its subclasses, so we
1223 * exclude it here.
1224 *
1225 * We also want to avoid setting the flag on Object, where we know that finalize() is empty.
1226 */
1227 if (klass->GetClassLoader() != NULL ||
1228 (!klass->GetDescriptor()->Equals("Ljava/lang/Object;") &&
1229 !klass->GetDescriptor()->Equals("Ljava/lang/Enum;"))) {
1230 klass->SetFinalizable();
1231 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001232 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001233
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001234 dst->SetProtoIdx(method_id.proto_idx_);
1235 dst->SetCodeItemOffset(src.code_off_);
1236 const char* shorty = dex_file.GetShorty(method_id.proto_idx_);
Elliott Hughes30646832011-10-13 16:59:46 -07001237 String* shorty_string = intern_table_->InternStrong(shorty);
1238 dst->SetShorty(shorty_string);
1239 if (shorty_string == NULL) {
1240 return;
1241 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001242 dst->SetAccessFlags(src.access_flags_);
1243 dst->SetReturnTypeIdx(dex_file.GetProtoId(method_id.proto_idx_).return_type_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001244
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001245 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1246 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1247 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1248 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1249 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1250 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001251
Brian Carlstrom934486c2011-07-12 23:42:50 -07001252 // TODO: check for finalize method
1253
Brian Carlstromf615a612011-07-23 12:50:34 -07001254 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(src);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001255 if (code_item != NULL) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001256 dst->SetNumRegisters(code_item->registers_size_);
1257 dst->SetNumIns(code_item->ins_size_);
1258 dst->SetNumOuts(code_item->outs_size_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001259 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001260 uint16_t num_args = Method::NumArgRegisters(shorty);
1261 if ((src.access_flags_ & kAccStatic) != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001262 ++num_args;
1263 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001264 dst->SetNumRegisters(num_args);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001265 // TODO: native methods
1266 }
1267}
1268
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001269void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstroma663ea52011-08-19 23:33:41 -07001270 AppendToBootClassPath(dex_file, AllocDexCache(dex_file));
1271}
1272
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001273void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, DexCache* dex_cache) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001274 CHECK(dex_cache != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001275 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001276 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001277}
1278
Brian Carlstromaded5f72011-10-07 17:15:04 -07001279bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
1280 lock_.AssertHeld();
1281 for (size_t i = 0; i != dex_files_.size(); ++i) {
1282 if (dex_files_[i] == &dex_file) {
1283 return true;
1284 }
1285 }
1286 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001287}
1288
Brian Carlstromaded5f72011-10-07 17:15:04 -07001289bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom16192862011-09-12 17:50:06 -07001290 MutexLock mu(lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001291 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001292}
1293
1294void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, DexCache* dex_cache) {
1295 lock_.AssertHeld();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001296 CHECK(dex_cache != NULL) << dex_file.GetLocation();
1297 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001298 dex_files_.push_back(&dex_file);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001299 dex_caches_.push_back(dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001300}
1301
Brian Carlstromaded5f72011-10-07 17:15:04 -07001302void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
1303 MutexLock mu(lock_);
1304 if (IsDexFileRegisteredLocked(dex_file)) {
1305 return;
1306 }
1307 RegisterDexFileLocked(dex_file, AllocDexCache(dex_file));
1308}
1309
1310void ClassLinker::RegisterDexFile(const DexFile& dex_file, DexCache* dex_cache) {
1311 MutexLock mu(lock_);
1312 RegisterDexFileLocked(dex_file, dex_cache);
1313}
1314
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001315const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001316 CHECK(dex_cache != NULL);
Brian Carlstrom16192862011-09-12 17:50:06 -07001317 MutexLock mu(lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001318 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1319 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001320 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001321 }
1322 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001323 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001324 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001325}
1326
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001327DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom16192862011-09-12 17:50:06 -07001328 MutexLock mu(lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001329 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001330 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001331 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001332 }
1333 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001334 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001335 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001336}
1337
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001338Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1339 const char* descriptor,
1340 Class::PrimitiveType type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001341 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001342 CHECK(primitive_class != NULL);
1343 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
1344 primitive_class->SetDescriptor(intern_table_->InternStrong(descriptor));
Elliott Hughes30646832011-10-13 16:59:46 -07001345 CHECK(primitive_class->GetDescriptor() != NULL);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001346 primitive_class->SetPrimitiveType(type);
1347 primitive_class->SetStatus(Class::kStatusInitialized);
1348 bool success = InsertClass(descriptor, primitive_class);
1349 CHECK(success) << "InitPrimitiveClass(" << descriptor << ") failed";
1350 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001351}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001352
Brian Carlstrombe977852011-07-19 14:54:54 -07001353// Create an array class (i.e. the class object for the array, not the
1354// array itself). "descriptor" looks like "[C" or "[[[[B" or
1355// "[Ljava/lang/String;".
1356//
1357// If "descriptor" refers to an array of primitives, look up the
1358// primitive type's internally-generated class object.
1359//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001360// "class_loader" is the class loader of the class that's referring to
1361// us. It's used to ensure that we're looking for the element type in
1362// the right context. It does NOT become the class loader for the
1363// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001364//
1365// Returns NULL with an exception raised on failure.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001366Class* ClassLinker::CreateArrayClass(const std::string& descriptor,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001367 const ClassLoader* class_loader) {
1368 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001369
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001370 // Identify the underlying component type
1371 Class* component_type = FindClass(descriptor.substr(1), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001372 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001373 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001374 return NULL;
1375 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001376
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001377 // See if the component type is already loaded. Array classes are
1378 // always associated with the class loader of their underlying
1379 // element type -- an array of Strings goes with the loader for
1380 // java/lang/String -- so we need to look for it there. (The
1381 // caller should have checked for the existence of the class
1382 // before calling here, but they did so with *their* class loader,
1383 // not the component type's loader.)
1384 //
1385 // If we find it, the caller adds "loader" to the class' initiating
1386 // loader list, which should prevent us from going through this again.
1387 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001388 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001389 // are the same, because our caller (FindClass) just did the
1390 // lookup. (Even if we get this wrong we still have correct behavior,
1391 // because we effectively do this lookup again when we add the new
1392 // class to the hash table --- necessary because of possible races with
1393 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001394 if (class_loader != component_type->GetClassLoader()) {
1395 Class* new_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001396 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001397 return new_class;
1398 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001399 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001400
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001401 // Fill out the fields in the Class.
1402 //
1403 // It is possible to execute some methods against arrays, because
1404 // all arrays are subclasses of java_lang_Object_, so we need to set
1405 // up a vtable. We can just point at the one in java_lang_Object_.
1406 //
1407 // Array classes are simple enough that we don't need to do a full
1408 // link step.
1409
1410 Class* new_class = NULL;
1411 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001412 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001413 if (descriptor == "[Ljava/lang/Class;") {
1414 new_class = GetClassRoot(kClassArrayClass);
1415 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001416 new_class = GetClassRoot(kObjectArrayClass);
1417 } else if (descriptor == "[C") {
1418 new_class = GetClassRoot(kCharArrayClass);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001419 } else if (descriptor == "[I") {
1420 new_class = GetClassRoot(kIntArrayClass);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001421 }
1422 }
1423 if (new_class == NULL) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07001424 new_class = AllocClass(sizeof(Class));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001425 if (new_class == NULL) {
1426 return NULL;
1427 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001428 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001429 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001430 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom693267a2011-09-06 09:25:34 -07001431 if (new_class->GetDescriptor() != NULL) {
1432 DCHECK(new_class->GetDescriptor()->Equals(descriptor));
1433 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001434 new_class->SetDescriptor(intern_table_->InternStrong(descriptor.c_str()));
Elliott Hughes30646832011-10-13 16:59:46 -07001435 if (new_class->GetDescriptor() == NULL) {
1436 return NULL;
1437 }
Brian Carlstrom693267a2011-09-06 09:25:34 -07001438 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001439 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001440 new_class->SetSuperClass(java_lang_Object);
1441 new_class->SetVTable(java_lang_Object->GetVTable());
1442 new_class->SetPrimitiveType(Class::kPrimNot);
1443 new_class->SetClassLoader(component_type->GetClassLoader());
1444 new_class->SetStatus(Class::kStatusInitialized);
1445 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001446 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001447
1448
1449 // All arrays have java/lang/Cloneable and java/io/Serializable as
1450 // interfaces. We need to set that up here, so that stuff like
1451 // "instanceof" works right.
1452 //
1453 // Note: The GC could run during the call to FindSystemClass,
1454 // so we need to make sure the class object is GC-valid while we're in
1455 // there. Do this by clearing the interface list so the GC will just
1456 // think that the entries are null.
1457
1458
1459 // Use the single, global copies of "interfaces" and "iftable"
1460 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001461 CHECK(array_interfaces_ != NULL);
1462 CHECK(array_iftable_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001463 new_class->SetInterfaces(array_interfaces_);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001464 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001465
1466 // Inherit access flags from the component type. Arrays can't be
1467 // used as a superclass or interface, so we want to add "final"
1468 // and remove "interface".
1469 //
1470 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001471 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001472 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001473 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1474 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001475
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001476 if (InsertClass(descriptor, new_class)) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001477 return new_class;
1478 }
1479 // Another thread must have loaded the class after we
1480 // started but before we finished. Abandon what we've
1481 // done.
1482 //
1483 // (Yes, this happens.)
1484
1485 // Grab the winning class.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001486 Class* other_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001487 DCHECK(other_class != NULL);
1488 return other_class;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001489}
1490
1491Class* ClassLinker::FindPrimitiveClass(char type) {
Carl Shapiro565f5072011-07-10 13:39:43 -07001492 switch (type) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001493 case 'B':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001494 return GetClassRoot(kPrimitiveByte);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001495 case 'C':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001496 return GetClassRoot(kPrimitiveChar);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001497 case 'D':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001498 return GetClassRoot(kPrimitiveDouble);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001499 case 'F':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001500 return GetClassRoot(kPrimitiveFloat);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001501 case 'I':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001502 return GetClassRoot(kPrimitiveInt);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001503 case 'J':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001504 return GetClassRoot(kPrimitiveLong);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001505 case 'S':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001506 return GetClassRoot(kPrimitiveShort);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001507 case 'Z':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001508 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001509 case 'V':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001510 return GetClassRoot(kPrimitiveVoid);
Carl Shapiro744ad052011-08-06 15:53:36 -07001511 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001512 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001513 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001514 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001515}
1516
Brian Carlstromaded5f72011-10-07 17:15:04 -07001517bool ClassLinker::InsertClass(const std::string& descriptor, Class* klass) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001518 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom16192862011-09-12 17:50:06 -07001519 MutexLock mu(lock_);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001520 Table::iterator it = classes_.insert(std::make_pair(hash, klass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001521 return ((*it).second == klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001522}
1523
Brian Carlstromaded5f72011-10-07 17:15:04 -07001524Class* ClassLinker::LookupClass(const std::string& descriptor, const ClassLoader* class_loader) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001525 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom16192862011-09-12 17:50:06 -07001526 MutexLock mu(lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001527 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001528 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001529 Class* klass = it->second;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001530 if (klass->GetDescriptor()->Equals(descriptor) && klass->GetClassLoader() == class_loader) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001531 return klass;
1532 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001533 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001534 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001535}
1536
jeffhao98eacac2011-09-14 16:11:53 -07001537void ClassLinker::VerifyClass(Class* klass) {
1538 if (klass->IsVerified()) {
1539 return;
1540 }
1541
1542 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved);
jeffhao98eacac2011-09-14 16:11:53 -07001543 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001544
jeffhao5cfd6fb2011-09-27 13:54:29 -07001545 if (DexVerifier::VerifyClass(klass)) {
1546 klass->SetStatus(Class::kStatusVerified);
1547 } else {
1548 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001549 Thread* self = Thread::Current();
1550 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
1551 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
1552 PrettyDescriptor(klass->GetDescriptor()).c_str());
jeffhao5cfd6fb2011-09-27 13:54:29 -07001553 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001554 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001555 }
jeffhao98eacac2011-09-14 16:11:53 -07001556}
1557
Jesse Wilson95caa792011-10-12 18:14:17 -04001558Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers466bb252011-10-14 03:29:56 -07001559 ClassLoader* loader, ObjectArray<Method>* methods, ObjectArray<ObjectArray<Class> >* throws) {
Jesse Wilson95caa792011-10-12 18:14:17 -04001560 Class* klass = AllocClass(GetClassRoot(kJavaLangClass), sizeof(ProxyClass));
1561 CHECK(klass != NULL);
1562 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers466bb252011-10-14 03:29:56 -07001563 const char* descriptor = DotToDescriptor(name->ToModifiedUtf8().c_str()).c_str();;
1564 klass->SetDescriptor(intern_table_->InternStrong(descriptor));
Jesse Wilson95caa792011-10-12 18:14:17 -04001565 klass->SetAccessFlags(kAccPublic | kAccFinal);
1566 klass->SetClassLoader(loader);
Ian Rogers466bb252011-10-14 03:29:56 -07001567 klass->SetStatus(Class::kStatusInitialized); // no loading or initializing necessary
1568 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
1569 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1570 klass->SetInterfaces(interfaces); // The interfaces are the array of interfaces specified
Jesse Wilson95caa792011-10-12 18:14:17 -04001571
Ian Rogers466bb252011-10-14 03:29:56 -07001572 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001573 klass->SetDirectMethods(AllocObjectArray<Method>(1));
1574 klass->SetDirectMethod(0, CreateProxyConstructor(klass));
1575
Ian Rogers466bb252011-10-14 03:29:56 -07001576 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001577 size_t num_virtual_methods = methods->GetLength();
1578 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1579 for (size_t i = 0; i < num_virtual_methods; ++i) {
1580 Method* prototype = methods->Get(i);
1581 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype, throws->Get(i)));
1582 }
Ian Rogers466bb252011-10-14 03:29:56 -07001583 // Link the virtual methods, creating vtable and iftables
Jesse Wilson95caa792011-10-12 18:14:17 -04001584 if (!LinkMethods(klass)) {
1585 DCHECK(Thread::Current()->IsExceptionPending());
1586 return NULL;
1587 }
Jesse Wilson95caa792011-10-12 18:14:17 -04001588 return klass;
1589}
1590
1591Method* ClassLinker::CreateProxyConstructor(Class* klass) {
Ian Rogers466bb252011-10-14 03:29:56 -07001592 // Create constructor for Proxy that must initialize h
1593 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
1594 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
1595 CHECK_EQ(proxy_direct_methods->GetLength(), 12);
1596 Method* proxy_constructor = proxy_direct_methods->Get(2);
1597 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
1598 // code_ too)
1599 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
1600 // Make this constructor public and fix the class to be our Proxy version
1601 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Jesse Wilson95caa792011-10-12 18:14:17 -04001602 constructor->SetDeclaringClass(klass);
Ian Rogers466bb252011-10-14 03:29:56 -07001603 // Sanity checks
1604 CHECK(constructor->IsConstructor());
1605 CHECK(constructor->GetName()->Equals("<init>"));
1606 CHECK(constructor->GetSignature()->Equals("(Ljava/lang/reflect/InvocationHandler;)V"));
1607 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04001608 return constructor;
1609}
1610
Ian Rogers466bb252011-10-14 03:29:56 -07001611Method* ClassLinker::CreateProxyMethod(Class* klass, Method* prototype,
1612 ObjectArray<Class>* throws) {
1613 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialise
1614 // as necessary
1615 Method* method = down_cast<Method*>(prototype->Clone());
1616
1617 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
1618 // the intersection of throw exceptions as defined in Proxy
Jesse Wilson95caa792011-10-12 18:14:17 -04001619 method->SetDeclaringClass(klass);
Ian Rogers466bb252011-10-14 03:29:56 -07001620 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001621 method->SetExceptionTypes(throws);
1622
Ian Rogers466bb252011-10-14 03:29:56 -07001623 // At runtime the method looks like a reference and argument saving method, clone the code
1624 // related parameters from this method.
1625 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
1626 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
1627 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
1628 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
1629 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Jesse Wilson95caa792011-10-12 18:14:17 -04001630
Ian Rogers466bb252011-10-14 03:29:56 -07001631 // Basic sanity
1632 DCHECK(method->GetName()->Equals(prototype->GetName()));
1633 DCHECK(method->GetSignature()->Equals(prototype->GetSignature()));
1634 DCHECK(method->GetShorty()->Equals(prototype->GetShorty()));
1635
1636 // More complex sanity - via dex cache
1637 CHECK_EQ(method->GetReturnType(), prototype->GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04001638
1639 return method;
1640}
1641
Brian Carlstrom25c33252011-09-18 15:58:35 -07001642bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001643 CHECK(klass->IsResolved() || klass->IsErroneous())
1644 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001645
Carl Shapirob5573532011-07-12 18:22:59 -07001646 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001647
Brian Carlstrom25c33252011-09-18 15:58:35 -07001648 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001649 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001650 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001651 ObjectLock lock(klass);
1652
Brian Carlstromd1422f82011-09-28 11:37:09 -07001653 if (klass->GetStatus() == Class::kStatusInitialized) {
1654 return true;
1655 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001656
Brian Carlstromd1422f82011-09-28 11:37:09 -07001657 if (klass->IsErroneous()) {
1658 ThrowEarlierClassFailure(klass);
1659 return false;
1660 }
1661
1662 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07001663 VerifyClass(klass);
1664 if (klass->GetStatus() != Class::kStatusVerified) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001665 return false;
1666 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001667 }
1668
Brian Carlstrom25c33252011-09-18 15:58:35 -07001669 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
1670 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001671 // if the class has a <clinit> but we can't run it during compilation,
1672 // don't bother going to kStatusInitializing
Brian Carlstrom25c33252011-09-18 15:58:35 -07001673 return false;
1674 }
1675
Brian Carlstromd1422f82011-09-28 11:37:09 -07001676 // If the class is kStatusInitializing, either this thread is
1677 // initializing higher up the stack or another thread has beat us
1678 // to initializing and we need to wait. Either way, this
1679 // invocation of InitializeClass will not be responsible for
1680 // running <clinit> and will return.
1681 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07001682 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07001683 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001684 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001685 return true;
1686 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07001687 // No. That's fine. Wait for another thread to finish initializing.
1688 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001689 }
1690
1691 if (!ValidateSuperClassDescriptors(klass)) {
1692 klass->SetStatus(Class::kStatusError);
1693 return false;
1694 }
1695
Brian Carlstromd1422f82011-09-28 11:37:09 -07001696 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001697
Elliott Hughesdcc24742011-09-07 14:02:44 -07001698 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001699 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001700 }
1701
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001702 uint64_t t0 = NanoTime();
1703
Brian Carlstrom25c33252011-09-18 15:58:35 -07001704 if (!InitializeSuperClass(klass, can_run_clinit)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001705 return false;
1706 }
1707
1708 InitializeStaticFields(klass);
1709
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001710 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07001711 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001712 }
1713
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001714 uint64_t t1 = NanoTime();
1715
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001716 {
1717 ObjectLock lock(klass);
1718
1719 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001720 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001721 klass->SetStatus(Class::kStatusError);
1722 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001723 RuntimeStats* global_stats = Runtime::Current()->GetStats();
1724 RuntimeStats* thread_stats = self->GetStats();
1725 ++global_stats->class_init_count;
1726 ++thread_stats->class_init_count;
1727 global_stats->class_init_time_ns += (t1 - t0);
1728 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001729 klass->SetStatus(Class::kStatusInitialized);
1730 }
1731 lock.NotifyAll();
1732 }
1733
1734 return true;
1735}
1736
Brian Carlstromd1422f82011-09-28 11:37:09 -07001737bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
1738 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001739 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001740 lock.Wait();
1741
1742 // When we wake up, repeat the test for init-in-progress. If
1743 // there's an exception pending (only possible if
1744 // "interruptShouldThrow" was set), bail out.
1745 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001746 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07001747 klass->SetStatus(Class::kStatusError);
1748 return false;
1749 }
1750 // Spurious wakeup? Go back to waiting.
1751 if (klass->GetStatus() == Class::kStatusInitializing) {
1752 continue;
1753 }
1754 if (klass->IsErroneous()) {
1755 // The caller wants an exception, but it was thrown in a
1756 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07001757 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
1758 PrettyDescriptor(klass->GetDescriptor()).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001759 return false;
1760 }
1761 if (klass->IsInitialized()) {
1762 return true;
1763 }
1764 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
1765 }
1766 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
1767}
1768
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001769bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
1770 if (klass->IsInterface()) {
1771 return true;
1772 }
1773 // begin with the methods local to the superclass
1774 if (klass->HasSuperClass() &&
1775 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
1776 const Class* super = klass->GetSuperClass();
1777 for (int i = super->NumVirtualMethods() - 1; i >= 0; --i) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001778 const Method* method = super->GetVirtualMethod(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001779 if (method != super->GetVirtualMethod(i) &&
1780 !HasSameMethodDescriptorClasses(method, super, klass)) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001781 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1782
1783 ThrowLinkageError("Class %s method %s resolves differently in superclass %s", PrettyDescriptor(klass->GetDescriptor()).c_str(), PrettyMethod(method).c_str(), PrettyDescriptor(super->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001784 return false;
1785 }
1786 }
1787 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001788 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
1789 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
1790 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001791 if (klass->GetClassLoader() != interface->GetClassLoader()) {
1792 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001793 const Method* method = interface_entry->GetMethodArray()->Get(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001794 if (!HasSameMethodDescriptorClasses(method, interface,
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001795 method->GetDeclaringClass())) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001796 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1797
1798 ThrowLinkageError("Class %s method %s resolves differently in interface %s", PrettyDescriptor(method->GetDeclaringClass()->GetDescriptor()).c_str(), PrettyMethod(method).c_str(), PrettyDescriptor(interface->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001799 return false;
1800 }
1801 }
1802 }
1803 }
1804 return true;
1805}
1806
1807bool ClassLinker::HasSameMethodDescriptorClasses(const Method* method,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001808 const Class* klass1,
1809 const Class* klass2) {
Brian Carlstrome10b6972011-09-26 13:49:03 -07001810 if (method->IsMiranda()) {
1811 return true;
1812 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001813 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001814 const DexFile::ProtoId& proto_id = dex_file.GetProtoId(method->GetProtoIdx());
Brian Carlstromf615a612011-07-23 12:50:34 -07001815 DexFile::ParameterIterator *it;
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001816 for (it = dex_file.GetParameterIterator(proto_id); it->HasNext(); it->Next()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001817 const char* descriptor = it->GetDescriptor();
1818 if (descriptor == NULL) {
1819 break;
1820 }
1821 if (descriptor[0] == 'L' || descriptor[0] == '[') {
1822 // Found a non-primitive type.
1823 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
1824 return false;
1825 }
1826 }
1827 }
1828 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001829 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001830 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Brian Carlstrome10b6972011-09-26 13:49:03 -07001831 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001832 return false;
1833 }
1834 }
1835 return true;
1836}
1837
1838// Returns true if classes referenced by the descriptor are the
1839// same classes in klass1 as they are in klass2.
1840bool ClassLinker::HasSameDescriptorClasses(const char* descriptor,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001841 const Class* klass1,
1842 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001843 CHECK(descriptor != NULL);
1844 CHECK(klass1 != NULL);
1845 CHECK(klass2 != NULL);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001846 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001847 // TODO: found1 == NULL
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001848 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001849 // TODO: found2 == NULL
1850 // TODO: lookup found1 in initiating loader list
1851 if (found1 == NULL || found2 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07001852 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001853 if (found1 == found2) {
1854 return true;
1855 } else {
1856 return false;
1857 }
1858 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001859 return true;
1860}
1861
Brian Carlstrom25c33252011-09-18 15:58:35 -07001862bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001863 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001864 if (!klass->IsInterface() && klass->HasSuperClass()) {
1865 Class* super_class = klass->GetSuperClass();
1866 if (super_class->GetStatus() != Class::kStatusInitialized) {
1867 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07001868 Thread* self = Thread::Current();
1869 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07001870 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07001871 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001872 // TODO: check for a pending exception
1873 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07001874 if (!can_run_clinit) {
1875 // Don't set status to error when we can't run <clinit>.
1876 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing);
1877 klass->SetStatus(Class::kStatusVerified);
1878 return false;
1879 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001880 klass->SetStatus(Class::kStatusError);
1881 klass->NotifyAll();
1882 return false;
1883 }
1884 }
1885 }
1886 return true;
1887}
1888
Brian Carlstrom25c33252011-09-18 15:58:35 -07001889bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001890 CHECK(c != NULL);
1891 if (c->IsInitialized()) {
1892 return true;
1893 }
1894
Elliott Hughes5f791332011-09-15 17:45:30 -07001895 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07001896 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Brian Carlstrom25c33252011-09-18 15:58:35 -07001897 InitializeClass(c, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07001898 return !self->IsExceptionPending();
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001899}
1900
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001901void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
1902 Class* c, std::map<int, Field*>& field_map) {
1903 const ClassLoader* cl = c->GetClassLoader();
1904 const byte* class_data = dex_file.GetClassData(dex_class_def);
1905 DexFile::ClassDataHeader header = dex_file.ReadClassDataHeader(&class_data);
1906 uint32_t last_idx = 0;
1907 for (size_t i = 0; i < header.static_fields_size_; ++i) {
1908 DexFile::Field dex_field;
1909 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
1910 field_map[i] = ResolveField(dex_file, dex_field.field_idx_, c->GetDexCache(), cl, true);
1911 }
1912}
1913
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001914void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001915 size_t num_static_fields = klass->NumStaticFields();
1916 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001917 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001918 }
Brian Carlstromf615a612011-07-23 12:50:34 -07001919 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07001920 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07001921 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001922 return;
1923 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001924 const std::string descriptor(klass->GetDescriptor()->ToModifiedUtf8());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001925 const DexFile& dex_file = FindDexFile(dex_cache);
1926 const DexFile::ClassDef* dex_class_def = dex_file.FindClassDef(descriptor);
Brian Carlstromf615a612011-07-23 12:50:34 -07001927 CHECK(dex_class_def != NULL);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001928
1929 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
1930 std::map<int, Field*> field_map;
1931 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
1932
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001933 const byte* addr = dex_file.GetEncodedArray(*dex_class_def);
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001934 if (addr == NULL) {
1935 // All this class' static fields have default values.
1936 return;
1937 }
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001938 size_t array_size = DecodeUnsignedLeb128(&addr);
1939 for (size_t i = 0; i < array_size; ++i) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001940 Field* field = field_map[i];
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001941 JValue value;
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001942 DexFile::ValueType type = dex_file.ReadEncodedValue(&addr, &value);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001943 switch (type) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001944 case DexFile::kByte:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001945 field->SetByte(NULL, value.b);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001946 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001947 case DexFile::kShort:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001948 field->SetShort(NULL, value.s);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001949 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001950 case DexFile::kChar:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001951 field->SetChar(NULL, value.c);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001952 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001953 case DexFile::kInt:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001954 field->SetInt(NULL, value.i);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001955 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001956 case DexFile::kLong:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001957 field->SetLong(NULL, value.j);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001958 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001959 case DexFile::kFloat:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001960 field->SetFloat(NULL, value.f);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001961 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001962 case DexFile::kDouble:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001963 field->SetDouble(NULL, value.d);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001964 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001965 case DexFile::kString: {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001966 uint32_t string_idx = value.i;
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001967 const String* resolved = ResolveString(dex_file, string_idx, klass->GetDexCache());
Brian Carlstrom4873d462011-08-21 15:23:39 -07001968 field->SetObject(NULL, resolved);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001969 break;
1970 }
Brian Carlstromf615a612011-07-23 12:50:34 -07001971 case DexFile::kBoolean:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001972 field->SetBoolean(NULL, value.z);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001973 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001974 case DexFile::kNull:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001975 field->SetObject(NULL, value.l);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001976 break;
1977 default:
Carl Shapiro606258b2011-07-09 16:09:09 -07001978 LOG(FATAL) << "Unknown type " << static_cast<int>(type);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001979 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001980 }
1981}
1982
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001983bool ClassLinker::LinkClass(Class* klass) {
1984 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001985 if (!LinkSuperClass(klass)) {
1986 return false;
1987 }
1988 if (!LinkMethods(klass)) {
1989 return false;
1990 }
1991 if (!LinkInstanceFields(klass)) {
1992 return false;
1993 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001994 if (!LinkStaticFields(klass)) {
1995 return false;
1996 }
1997 CreateReferenceInstanceOffsets(klass);
1998 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001999 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2000 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002001 return true;
2002}
2003
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002004bool ClassLinker::LoadSuperAndInterfaces(Class* klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002005 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
2006 if (klass->GetSuperClassTypeIdx() != DexFile::kDexNoIndex) {
2007 Class* super_class = ResolveType(dex_file, klass->GetSuperClassTypeIdx(), klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002008 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002009 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002010 return false;
2011 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002012 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002013 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002014 for (size_t i = 0; i < klass->NumInterfaces(); ++i) {
2015 uint32_t idx = klass->GetInterfacesTypeIdx()->Get(i);
Elliott Hughese555dc02011-09-25 10:46:35 -07002016 Class* interface = ResolveType(dex_file, idx, klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002017 klass->SetInterface(i, interface);
2018 if (interface == NULL) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002019 DCHECK(Thread::Current()->IsExceptionPending());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002020 return false;
2021 }
2022 // Verify
2023 if (!klass->CanAccess(interface)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002024 // TODO: the RI seemed to ignore this in my testing.
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002025 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002026 "Interface %s implemented by class %s is inaccessible",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002027 PrettyDescriptor(interface->GetDescriptor()).c_str(),
2028 PrettyDescriptor(klass->GetDescriptor()).c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002029 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002030 }
2031 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002032 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002033 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002034 return true;
2035}
2036
2037bool ClassLinker::LinkSuperClass(Class* klass) {
2038 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002039 Class* super = klass->GetSuperClass();
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07002040 if (klass->GetDescriptor()->Equals("Ljava/lang/Object;")) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002041 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002042 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002043 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002044 return false;
2045 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002046 return true;
2047 }
2048 if (super == NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002049 ThrowLinkageError("No superclass defined for class %s",
2050 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002051 return false;
2052 }
2053 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002054 if (super->IsFinal() || super->IsInterface()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002055 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002056 "Superclass %s of %s is %s",
2057 PrettyDescriptor(super->GetDescriptor()).c_str(),
2058 PrettyDescriptor(klass->GetDescriptor()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002059 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002060 return false;
2061 }
2062 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002063 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002064 "Superclass %s is inaccessible by %s",
2065 PrettyDescriptor(super->GetDescriptor()).c_str(),
2066 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002067 return false;
2068 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002069
2070 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2071 if (super->IsFinalizable()) {
2072 klass->SetFinalizable();
2073 }
2074
Elliott Hughes2da50362011-10-10 16:57:08 -07002075 // Inherit reference flags (if any) from the superclass.
2076 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2077 if (reference_flags != 0) {
2078 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2079 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002080 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002081 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002082 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
2083 PrettyDescriptor(klass->GetDescriptor()).c_str());
2084 return false;
2085 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002086
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002087#ifndef NDEBUG
2088 // Ensure super classes are fully resolved prior to resolving fields..
2089 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002090 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002091 super = super->GetSuperClass();
2092 }
2093#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002094 return true;
2095}
2096
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002097// Populate the class vtable and itable. Compute return type indices.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002098bool ClassLinker::LinkMethods(Class* klass) {
2099 if (klass->IsInterface()) {
2100 // No vtable.
2101 size_t count = klass->NumVirtualMethods();
2102 if (!IsUint(16, count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002103 ThrowClassFormatError("Too many methods on interface: %d", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002104 return false;
2105 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002106 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002107 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002108 }
jeffhaobdb76512011-09-07 11:43:16 -07002109 // Link interface method tables
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002110 return LinkInterfaceMethods(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002111 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002112 // Link virtual and interface method tables
2113 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002114 }
2115 return true;
2116}
2117
2118bool ClassLinker::LinkVirtualMethods(Class* klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002119 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002120 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2121 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002122 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002123 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002124 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002125 // See if any of our virtual methods override the superclass.
2126 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002127 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002128 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002129 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002130 Method* super_method = vtable->Get(j);
Ian Rogers466bb252011-10-14 03:29:56 -07002131 if (local_method->HasSameNameAndSignature(super_method)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002132 // Verify
2133 if (super_method->IsFinal()) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002134 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002135 PrettyDescriptor(klass->GetDescriptor()).c_str(),
2136 local_method->GetName()->ToModifiedUtf8().c_str(),
2137 PrettyDescriptor(super_method->GetDeclaringClass()->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002138 return false;
2139 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002140 vtable->Set(j, local_method);
2141 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002142 break;
2143 }
2144 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002145 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002146 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002147 vtable->Set(actual_count, local_method);
2148 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002149 actual_count += 1;
2150 }
2151 }
2152 if (!IsUint(16, actual_count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002153 ThrowClassFormatError("Too many methods defined on class: %d", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002154 return false;
2155 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002156 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002157 CHECK_LE(actual_count, max_count);
2158 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002159 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002160 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002161 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002162 } else {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07002163 CHECK(klass->GetDescriptor()->Equals("Ljava/lang/Object;"));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002164 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002165 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002166 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002167 return false;
2168 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002169 ObjectArray<Method>* vtable = AllocObjectArray<Method>(num_virtual_methods);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002170 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002171 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2172 vtable->Set(i, virtual_method);
2173 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002174 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002175 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002176 }
2177 return true;
2178}
2179
2180bool ClassLinker::LinkInterfaceMethods(Class* klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002181 size_t super_ifcount;
2182 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002183 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002184 } else {
2185 super_ifcount = 0;
2186 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002187 size_t ifcount = super_ifcount;
2188 ifcount += klass->NumInterfaces();
2189 for (size_t i = 0; i < klass->NumInterfaces(); i++) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002190 ifcount += klass->GetInterface(i)->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002191 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002192 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002193 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002194 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002195 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002196 return true;
2197 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002198 ObjectArray<InterfaceEntry>* iftable = AllocObjectArray<InterfaceEntry>(ifcount);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002199 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002200 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2201 for (size_t i = 0; i < super_ifcount; i++) {
2202 iftable->Set(i, AllocInterfaceEntry(super_iftable->Get(i)->GetInterface()));
2203 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002204 }
2205 // Flatten the interface inheritance hierarchy.
2206 size_t idx = super_ifcount;
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002207 for (size_t i = 0; i < klass->NumInterfaces(); i++) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002208 Class* interface = klass->GetInterface(i);
2209 DCHECK(interface != NULL);
2210 if (!interface->IsInterface()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002211 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002212 "Class %s implements non-interface class %s",
2213 PrettyDescriptor(klass->GetDescriptor()).c_str(),
2214 PrettyDescriptor(interface->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002215 return false;
2216 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002217 // Add this interface.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002218 iftable->Set(idx++, AllocInterfaceEntry(interface));
Elliott Hughes4681c802011-09-25 18:04:37 -07002219 // Add this interface's superinterfaces.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002220 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2221 iftable->Set(idx++, AllocInterfaceEntry(interface->GetIfTable()->Get(j)->GetInterface()));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002222 }
2223 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002224 klass->SetIfTable(iftable);
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002225 CHECK_EQ(idx, ifcount);
Elliott Hughes4681c802011-09-25 18:04:37 -07002226
2227 // If we're an interface, we don't need the vtable pointers, so we're done.
2228 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002229 return true;
2230 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002231 std::vector<Method*> miranda_list;
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002232 for (size_t i = 0; i < ifcount; ++i) {
2233 InterfaceEntry* interface_entry = iftable->Get(i);
2234 Class* interface = interface_entry->GetInterface();
2235 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2236 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002237 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002238 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2239 Method* interface_method = interface->GetVirtualMethod(j);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002240 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002241 // For each method listed in the interface's method list, find the
2242 // matching method in our class's method list. We want to favor the
2243 // subclass over the superclass, which just requires walking
2244 // back from the end of the vtable. (This only matters if the
2245 // superclass defines a private method and this class redefines
2246 // it -- otherwise it would use the same vtable slot. In .dex files
2247 // those don't end up in the virtual method table, so it shouldn't
2248 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002249 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2250 Method* vtable_method = vtable->Get(k);
Ian Rogers466bb252011-10-14 03:29:56 -07002251 if (interface_method->HasSameNameAndSignature(vtable_method)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002252 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002253 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002254 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002255 return false;
2256 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002257 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002258 break;
2259 }
2260 }
2261 if (k < 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002262 Method* miranda_method = NULL;
Elliott Hughes4681c802011-09-25 18:04:37 -07002263 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers466bb252011-10-14 03:29:56 -07002264 if (miranda_list[mir]->HasSameNameAndSignature(interface_method)) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002265 miranda_method = miranda_list[mir];
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002266 break;
2267 }
2268 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002269 if (miranda_method == NULL) {
2270 // point the interface table at a phantom slot
2271 miranda_method = AllocMethod();
2272 memcpy(miranda_method, interface_method, sizeof(Method));
2273 miranda_list.push_back(miranda_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002274 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002275 method_array->Set(j, miranda_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002276 }
2277 }
2278 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002279 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002280 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002281 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002282 klass->SetVirtualMethods((old_method_count == 0)
2283 ? AllocObjectArray<Method>(new_method_count)
2284 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002285
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002286 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2287 CHECK(vtable != NULL);
2288 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002289 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002290 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002291 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002292 Method* method = miranda_list[i];
2293 method->SetDeclaringClass(klass);
2294 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2295 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2296 klass->SetVirtualMethod(old_method_count + i, method);
2297 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002298 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002299 // TODO: do not assign to the vtable field until it is fully constructed.
2300 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002301 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002302
2303 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2304 for (int i = 0; i < vtable->GetLength(); ++i) {
2305 CHECK(vtable->Get(i) != NULL);
2306 }
2307
2308// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2309
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002310 return true;
2311}
2312
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002313bool ClassLinker::LinkInstanceFields(Class* klass) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002314 CHECK(klass != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002315 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002316}
2317
2318bool ClassLinker::LinkStaticFields(Class* klass) {
2319 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002320 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002321 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002322 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002323 return success;
2324}
2325
Brian Carlstromdbc05252011-09-09 01:59:59 -07002326struct LinkFieldsComparator {
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002327 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002328 // First come reference fields, then 64-bit, and finally 32-bit
2329 const Class* type1 = field1->GetTypeDuringLinking();
2330 const Class* type2 = field2->GetTypeDuringLinking();
2331 bool isPrimitive1 = type1 != NULL && type1->IsPrimitive();
2332 bool isPrimitive2 = type2 != NULL && type2->IsPrimitive();
2333 bool is64bit1 = isPrimitive1 && (type1->IsPrimitiveLong() || type1->IsPrimitiveDouble());
2334 bool is64bit2 = isPrimitive2 && (type2->IsPrimitiveLong() || type2->IsPrimitiveDouble());
2335 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2336 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2337 if (order1 != order2) {
2338 return order1 < order2;
2339 }
2340
2341 // same basic group? then sort by string.
2342 std::string name1 = field1->GetName()->ToModifiedUtf8();
2343 std::string name2 = field2->GetName()->ToModifiedUtf8();
2344 return name1 < name2;
2345 }
2346};
2347
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002348bool ClassLinker::LinkFields(Class* klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002349 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002350 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002351
2352 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002353 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002354
2355 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002356 size_t size;
2357 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002358 if (is_static) {
2359 size = klass->GetClassSize();
2360 field_offset = Class::FieldsOffset();
2361 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002362 Class* super_class = klass->GetSuperClass();
2363 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002364 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002365 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002366 }
2367 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002368 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002369
Brian Carlstromdbc05252011-09-09 01:59:59 -07002370 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002371
Brian Carlstromdbc05252011-09-09 01:59:59 -07002372 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002373 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002374 std::deque<Field*> grouped_and_sorted_fields;
2375 for (size_t i = 0; i < num_fields; i++) {
2376 grouped_and_sorted_fields.push_back(fields->Get(i));
2377 }
2378 std::sort(grouped_and_sorted_fields.begin(),
2379 grouped_and_sorted_fields.end(),
2380 LinkFieldsComparator());
2381
2382 // References should be at the front.
2383 size_t current_field = 0;
2384 size_t num_reference_fields = 0;
2385 for (; current_field < num_fields; current_field++) {
2386 Field* field = grouped_and_sorted_fields.front();
2387 const Class* type = field->GetTypeDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002388 // if a field's type at this point is NULL it isn't primitive
Brian Carlstromdbc05252011-09-09 01:59:59 -07002389 bool isPrimitive = type != NULL && type->IsPrimitive();
2390 if (isPrimitive) {
2391 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002392 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002393 grouped_and_sorted_fields.pop_front();
2394 num_reference_fields++;
2395 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002396 field->SetOffset(field_offset);
2397 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002398 }
2399
2400 // Now we want to pack all of the double-wide fields together. If
2401 // we're not aligned, though, we want to shuffle one 32-bit field
2402 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002403 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002404 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2405 Field* field = grouped_and_sorted_fields[i];
2406 const Class* type = field->GetTypeDuringLinking();
2407 CHECK(type != NULL); // should only be working on primitive types
2408 DCHECK(type->IsPrimitive());
2409 if (type->IsPrimitiveLong() || type->IsPrimitiveDouble()) {
2410 continue;
2411 }
2412 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002413 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002414 // drop the consumed field
2415 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2416 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002417 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002418 // whether we found a 32-bit field for padding or not, we advance
2419 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002420 }
2421
2422 // Alignment is good, shuffle any double-wide fields forward, and
2423 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002424 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002425 while (!grouped_and_sorted_fields.empty()) {
2426 Field* field = grouped_and_sorted_fields.front();
2427 grouped_and_sorted_fields.pop_front();
2428 const Class* type = field->GetTypeDuringLinking();
2429 CHECK(type != NULL); // should only be working on primitive types
2430 DCHECK(type->IsPrimitive());
2431 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002432 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002433 field_offset = MemberOffset(field_offset.Uint32Value() +
2434 ((type->IsPrimitiveLong() || type->IsPrimitiveDouble())
2435 ? sizeof(uint64_t)
2436 : sizeof(uint32_t)));
2437 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002438 }
2439
Elliott Hughesadb460d2011-10-05 17:02:34 -07002440 // We lie to the GC about the java.lang.ref.Reference.referent field, so it doesn't scan it.
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002441 if (!is_static && klass->GetDescriptor()->Equals("Ljava/lang/ref/Reference;")) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002442 // We know there are no non-reference fields in the Reference classes, and we know
2443 // that 'referent' is alphabetically last, so this is easy...
2444 CHECK_EQ(num_reference_fields, num_fields);
2445 CHECK(fields->Get(num_fields - 1)->GetName()->Equals("referent"));
2446 --num_reference_fields;
2447 }
2448
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002449#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002450 // Make sure that all reference fields appear before
2451 // non-reference fields, and all double-wide fields are aligned.
2452 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002453 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002454 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002455 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002456 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002457 << " class=" << PrettyClass(klass)
2458 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002459 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2460 }
2461 const Class* type = field->GetTypeDuringLinking();
Elliott Hughesadb460d2011-10-05 17:02:34 -07002462 bool is_primitive = (type != NULL && type->IsPrimitive());
2463 if (klass->GetDescriptor()->Equals("Ljava/lang/ref/Reference;") && field->GetName()->Equals("referent")) {
2464 is_primitive = true; // We lied above, so we have to expect a lie here.
2465 }
2466 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002467 if (!seen_non_ref) {
2468 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002469 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002470 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002471 } else {
2472 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002473 }
2474 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002475 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002476 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002477 }
2478#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002479 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002480 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002481 if (is_static) {
2482 klass->SetNumReferenceStaticFields(num_reference_fields);
2483 klass->SetClassSize(size);
2484 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002485 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002486 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002487 klass->SetObjectSize(size);
2488 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002489 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002490 return true;
2491}
2492
2493// Set the bitmap of reference offsets, refOffsets, from the ifields
2494// list.
Brian Carlstrom4873d462011-08-21 15:23:39 -07002495void ClassLinker::CreateReferenceInstanceOffsets(Class* klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002496 uint32_t reference_offsets = 0;
2497 Class* super_class = klass->GetSuperClass();
2498 if (super_class != NULL) {
2499 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002500 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002501 if (reference_offsets == CLASS_WALK_SUPER) {
2502 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002503 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002504 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002505 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002506 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002507}
2508
2509void ClassLinker::CreateReferenceStaticOffsets(Class* klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002510 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002511}
2512
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002513void ClassLinker::CreateReferenceOffsets(Class* klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002514 uint32_t reference_offsets) {
2515 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002516 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
2517 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002518 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002519 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002520 // All of the fields that contain object references are guaranteed
2521 // to be at the beginning of the fields list.
2522 for (size_t i = 0; i < num_reference_fields; ++i) {
2523 // Note that byte_offset is the offset from the beginning of
2524 // object, not the offset into instance data
2525 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002526 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002527 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
2528 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
2529 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002530 CHECK_NE(new_bit, 0U);
2531 reference_offsets |= new_bit;
2532 } else {
2533 reference_offsets = CLASS_WALK_SUPER;
2534 break;
2535 }
2536 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002537 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002538 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002539 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002540 } else {
2541 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002542 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002543}
2544
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002545String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002546 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002547 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002548 if (resolved != NULL) {
2549 return resolved;
2550 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002551 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
2552 int32_t utf16_length = dex_file.GetStringLength(string_id);
2553 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07002554 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002555 dex_cache->SetResolvedString(string_idx, string);
2556 return string;
2557}
2558
2559Class* ClassLinker::ResolveType(const DexFile& dex_file,
2560 uint32_t type_idx,
2561 DexCache* dex_cache,
2562 const ClassLoader* class_loader) {
2563 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002564 if (resolved == NULL) {
2565 const char* descriptor = dex_file.dexStringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002566 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002567 if (resolved != NULL) {
jeffhaod760bc42011-10-03 14:54:53 -07002568 Class* check = resolved;
2569 while (check->IsArrayClass()) {
2570 check = check->GetComponentType();
2571 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002572 if (dex_cache != check->GetDexCache()) {
2573 if (check->GetClassLoader() != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002574 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002575 "Class with type index %d resolved by unexpected .dex", type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002576 resolved = NULL;
2577 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002578 }
2579 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002580 if (resolved != NULL) {
2581 dex_cache->SetResolvedType(type_idx, resolved);
2582 } else {
2583 DCHECK(Thread::Current()->IsExceptionPending());
2584 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002585 }
2586 return resolved;
2587}
2588
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002589Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
2590 uint32_t method_idx,
2591 DexCache* dex_cache,
2592 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002593 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002594 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
2595 if (resolved != NULL) {
2596 return resolved;
2597 }
2598 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2599 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
2600 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002601 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002602 return NULL;
2603 }
2604
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002605 const char* name = dex_file.dexStringById(method_id.name_idx_);
Elliott Hughes0c424cb2011-08-26 10:16:25 -07002606 std::string signature(dex_file.CreateMethodDescriptor(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002607 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002608 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002609 } else if (klass->IsInterface()) {
2610 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002611 } else {
2612 resolved = klass->FindVirtualMethod(name, signature);
2613 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002614 if (resolved != NULL) {
2615 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07002616 if (is_direct && resolved->GetCode() != NULL) {
2617 dex_cache->GetCodeAndDirectMethods()->SetResolvedDirectMethod(method_idx, resolved);
2618 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002619 } else {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002620 ThrowNoSuchMethodError(is_direct ? "direct" : "virtual", klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002621 }
2622 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002623}
2624
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002625Field* ClassLinker::ResolveField(const DexFile& dex_file,
2626 uint32_t field_idx,
2627 DexCache* dex_cache,
2628 const ClassLoader* class_loader,
2629 bool is_static) {
2630 Field* resolved = dex_cache->GetResolvedField(field_idx);
2631 if (resolved != NULL) {
2632 return resolved;
2633 }
2634 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
2635 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
2636 if (klass == NULL) {
2637 return NULL;
2638 }
2639
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002640 const char* name = dex_file.dexStringById(field_id.name_idx_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002641 Class* field_type = ResolveType(dex_file, field_id.type_idx_, dex_cache, class_loader);
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002642 if (field_type == NULL) {
2643 // TODO: LinkageError?
2644 UNIMPLEMENTED(WARNING) << "Failed to resolve type of field " << name
2645 << " in " << PrettyClass(klass);
2646 return NULL;
2647}
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002648 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002649 resolved = klass->FindStaticField(name, field_type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002650 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002651 resolved = klass->FindInstanceField(name, field_type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002652 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002653 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002654 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002655 } else {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002656 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002657 }
2658 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002659}
2660
Ian Rogersad25ac52011-10-04 19:13:33 -07002661const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
2662 Class* declaring_class = referrer->GetDeclaringClass();
2663 DexCache* dex_cache = declaring_class->GetDexCache();
2664 const DexFile& dex_file = FindDexFile(dex_cache);
2665 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2666 return dex_file.GetShorty(method_id.proto_idx_);
2667}
2668
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002669void ClassLinker::DumpAllClasses(int flags) const {
2670 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
2671 // lock held, because it might need to resolve a field's type, which would try to take the lock.
2672 std::vector<Class*> all_classes;
2673 {
2674 MutexLock mu(lock_);
2675 typedef Table::const_iterator It; // TODO: C++0x auto
2676 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
2677 all_classes.push_back(it->second);
2678 }
2679 }
2680
2681 for (size_t i = 0; i < all_classes.size(); ++i) {
2682 all_classes[i]->DumpClass(std::cerr, flags);
2683 }
2684}
2685
Elliott Hughese27955c2011-08-26 15:21:24 -07002686size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom16192862011-09-12 17:50:06 -07002687 MutexLock mu(lock_);
Elliott Hughese27955c2011-08-26 15:21:24 -07002688 return classes_.size();
2689}
2690
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07002691pid_t ClassLinker::GetLockOwner() {
2692 return lock_.GetOwner();
2693}
2694
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002695} // namespace art