blob: 266c1f089f5a31f43be25dd584e8bc09429cc0e2 [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"
Ian Rogers0571d352011-11-03 19:51:38 -070017#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070018#include "logging.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070019#include "monitor.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070020#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070021#include "object.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070022#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070023#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070024#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070025#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070026#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070027#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070028#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070029#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070031
32namespace art {
33
Elliott Hughes4a2b4172011-09-20 17:08:25 -070034namespace {
35
Elliott Hughes362f9bc2011-10-17 18:56:41 -070036void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070037void ThrowNoClassDefFoundError(const char* fmt, ...) {
38 va_list args;
39 va_start(args, fmt);
40 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
41 va_end(args);
42}
43
Elliott Hughes362f9bc2011-10-17 18:56:41 -070044void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070045void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070046 va_list args;
47 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070048 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070049 va_end(args);
50}
51
Elliott Hughes362f9bc2011-10-17 18:56:41 -070052void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070053void ThrowLinkageError(const char* fmt, ...) {
54 va_list args;
55 va_start(args, fmt);
56 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
57 va_end(args);
58}
59
Elliott Hughescc5f9a92011-09-28 19:17:29 -070060void ThrowNoSuchMethodError(const char* kind,
61 Class* c, const StringPiece& name, const StringPiece& signature) {
62 DexCache* dex_cache = c->GetDexCache();
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070063 std::ostringstream msg;
Elliott Hughescc5f9a92011-09-28 19:17:29 -070064 msg << "no " << kind << " method " << name << "." << signature
65 << " in class " << c->GetDescriptor()->ToModifiedUtf8()
66 << " or its superclasses";
67 if (dex_cache) {
68 msg << " (defined in " << dex_cache->GetLocation()->ToModifiedUtf8() << ")";
69 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070070 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070071}
72
Elliott Hughes4a2b4172011-09-20 17:08:25 -070073void ThrowEarlierClassFailure(Class* c) {
74 /*
75 * The class failed to initialize on a previous attempt, so we want to throw
76 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
77 * failed in verification, in which case v2 5.4.1 says we need to re-throw
78 * the previous error.
79 */
80 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
81
82 if (c->GetVerifyErrorClass() != NULL) {
83 // TODO: change the verifier to store an _instance_, with a useful detail message?
84 std::string error_descriptor(c->GetVerifyErrorClass()->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070085 Thread::Current()->ThrowNewException(error_descriptor.c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -070086 PrettyDescriptor(c->GetDescriptor()).c_str());
87 } else {
88 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c->GetDescriptor()).c_str());
89 }
90}
91
Elliott Hughes4d0207c2011-10-03 19:14:34 -070092void WrapExceptionInInitializer() {
93 JNIEnv* env = Thread::Current()->GetJniEnv();
94
95 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
96 CHECK(cause.get() != NULL);
97
98 env->ExceptionClear();
99
100 // TODO: add java.lang.Error to JniConstants?
101 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
102 CHECK(error_class.get() != NULL);
103 if (env->IsInstanceOf(cause.get(), error_class.get())) {
104 // We only wrap non-Error exceptions; an Error can just be used as-is.
105 env->Throw(cause.get());
106 return;
107 }
108
109 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
110 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
111 CHECK(eiie_class.get() != NULL);
112
113 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
114 CHECK(mid != NULL);
115
116 ScopedLocalRef<jthrowable> eiie(env,
117 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
118 env->Throw(eiie.get());
119}
120
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700121} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700122
Elliott Hughes418d20f2011-09-22 14:00:39 -0700123const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700124 "Ljava/lang/Class;",
125 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700126 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700127 "[Ljava/lang/Object;",
128 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700129 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700130 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700131 "Ljava/lang/reflect/Field;",
132 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700133 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700134 "Ljava/lang/ClassLoader;",
135 "Ldalvik/system/BaseDexClassLoader;",
136 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700137 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700138 "Z",
139 "B",
140 "C",
141 "D",
142 "F",
143 "I",
144 "J",
145 "S",
146 "V",
147 "[Z",
148 "[B",
149 "[C",
150 "[D",
151 "[F",
152 "[I",
153 "[J",
154 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700155 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700156};
157
Elliott Hughes5f791332011-09-15 17:45:30 -0700158class ObjectLock {
159 public:
160 explicit ObjectLock(Object* object) : self_(Thread::Current()), obj_(object) {
161 CHECK(object != NULL);
162 obj_->MonitorEnter(self_);
163 }
164
165 ~ObjectLock() {
166 obj_->MonitorExit(self_);
167 }
168
169 void Wait() {
170 return Monitor::Wait(self_, obj_, 0, 0, false);
171 }
172
173 void Notify() {
174 obj_->Notify();
175 }
176
177 void NotifyAll() {
178 obj_->NotifyAll();
179 }
180
181 private:
182 Thread* self_;
183 Object* obj_;
184 DISALLOW_COPY_AND_ASSIGN(ObjectLock);
185};
186
Brian Carlstromae826982011-11-09 01:33:42 -0800187ClassLinker* ClassLinker::Create(bool verbose,
188 const std::string& boot_class_path,
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700189 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700190 CHECK_NE(boot_class_path.size(), 0U);
Brian Carlstromae826982011-11-09 01:33:42 -0800191 UniquePtr<ClassLinker> class_linker(new ClassLinker(verbose, intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700192 class_linker->Init(boot_class_path);
193 return class_linker.release();
194}
195
Brian Carlstromae826982011-11-09 01:33:42 -0800196ClassLinker* ClassLinker::Create(bool verbose, InternTable* intern_table) {
197 UniquePtr<ClassLinker> class_linker(new ClassLinker(verbose, intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700198 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700199 return class_linker.release();
200}
201
Brian Carlstromae826982011-11-09 01:33:42 -0800202ClassLinker::ClassLinker(bool verbose, InternTable* intern_table)
203 : verbose_(verbose),
204 dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700205 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700206 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700207 array_interfaces_(NULL),
208 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700209 init_done_(false),
210 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700211 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700212}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700213
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700214void CreateClassPath(const std::string& class_path,
215 std::vector<const DexFile*>& class_path_vector) {
216 std::vector<std::string> parsed;
217 Split(class_path, ':', parsed);
218 for (size_t i = 0; i < parsed.size(); ++i) {
219 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700220 if (dex_file == NULL) {
221 LOG(WARNING) << "Failed to open dex file " << parsed[i];
222 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700223 class_path_vector.push_back(dex_file);
224 }
225 }
226}
227
228void ClassLinker::Init(const std::string& boot_class_path) {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700229 const Runtime* runtime = Runtime::Current();
230 if (runtime->IsVerboseStartup()) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700231 LOG(INFO) << "ClassLinker::InitFrom entering boot_class_path=" << boot_class_path;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700232 }
233
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700234 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700235
Elliott Hughes30646832011-10-13 16:59:46 -0700236 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700237 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
238 CHECK(java_lang_Class.get() != NULL);
239 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700240 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700241 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700242
Elliott Hughes418d20f2011-09-22 14:00:39 -0700243 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700244 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
245 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700246
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700247 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700248 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
249 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700250 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700251 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700252 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700253
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700254 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700255 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
256 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700257
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700258 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700259 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700260
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700261 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700262 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
263 char_array_class->SetComponentType(char_class.get());
264 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700265
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700266 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700267 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
268 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700269 java_lang_String->SetObjectSize(sizeof(String));
270 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400271
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700272 // Backfill Class descriptors missing until this point
Brian Carlstromc74255f2011-09-11 22:47:39 -0700273 java_lang_Class->SetDescriptor(intern_table_->InternStrong("Ljava/lang/Class;"));
274 java_lang_Object->SetDescriptor(intern_table_->InternStrong("Ljava/lang/Object;"));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700275 class_array_class->SetDescriptor(intern_table_->InternStrong("[Ljava/lang/Class;"));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700276 object_array_class->SetDescriptor(intern_table_->InternStrong("[Ljava/lang/Object;"));
277 java_lang_String->SetDescriptor(intern_table_->InternStrong("Ljava/lang/String;"));
278 char_array_class->SetDescriptor(intern_table_->InternStrong("[C"));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700279
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700280 // Create storage for root classes, save away our work so far (requires
281 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700282 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700283 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700284 SetClassRoot(kJavaLangClass, java_lang_Class.get());
285 SetClassRoot(kJavaLangObject, java_lang_Object.get());
286 SetClassRoot(kClassArrayClass, class_array_class.get());
287 SetClassRoot(kObjectArrayClass, object_array_class.get());
288 SetClassRoot(kCharArrayClass, char_array_class.get());
289 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700290
291 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700292 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
293 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
294 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
295 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
296 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
297 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
298 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
299 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700300
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700301 // Create array interface entries to populate once we can load system classes
Elliott Hughes418d20f2011-09-22 14:00:39 -0700302 array_interfaces_ = AllocClassArray(2);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700303 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700304
305 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700306 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700307 int_array_class->SetDescriptor(intern_table_->InternStrong("[I"));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700308 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700309 IntArray::SetArrayClass(int_array_class.get());
310 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700311
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700312 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700313
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700314 // setup boot_class_path_ and register class_path now that we can
315 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700316 std::vector<const DexFile*> boot_class_path_vector;
317 CreateClassPath(boot_class_path, boot_class_path_vector);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700318 CHECK_NE(0U, boot_class_path_vector.size());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700319 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
320 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700321 CHECK(dex_file != NULL);
322 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700323 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700324
Elliott Hughes80609252011-09-23 17:24:51 -0700325 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700326 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Elliott Hughes80609252011-09-23 17:24:51 -0700327 java_lang_reflect_Constructor->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Constructor;"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700328 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700329 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700331 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
332
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
334 CHECK(java_lang_reflect_Field.get() != NULL);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700335 java_lang_reflect_Field->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Field;"));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700337 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700338 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700339 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700340
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700341 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Elliott Hughes80609252011-09-23 17:24:51 -0700342 java_lang_reflect_Method->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Method;"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700343 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700345 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700346 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700347 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348
349 // now we can use FindSystemClass
350
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700351 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700352 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700353 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700354
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700355 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700356 java_lang_Object->SetStatus(Class::kStatusNotReady);
357 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700358 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700359 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
360 java_lang_String->SetStatus(Class::kStatusNotReady);
361 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700362 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700363 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
364
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700365 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700366 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
367 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
368
369 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
370 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
371
372 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700373 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700374
375 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
376 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
377
378 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700379 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700380
381 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
382 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
383
384 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
385 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
386
387 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
388 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
389
Elliott Hughes418d20f2011-09-22 14:00:39 -0700390 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700391 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700392
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700393 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700394 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700395
396 // Setup the single, global copies of "interfaces" and "iftable"
397 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
398 CHECK(java_lang_Cloneable != NULL);
399 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
400 CHECK(java_io_Serializable != NULL);
401 CHECK(array_interfaces_ != NULL);
402 array_interfaces_->Set(0, java_lang_Cloneable);
403 array_interfaces_->Set(1, java_io_Serializable);
404 // We assume that Cloneable/Serializable don't have superinterfaces --
405 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700406 // supers as well.
407 array_iftable_->Set(0, AllocInterfaceEntry(array_interfaces_->Get(0)));
408 array_iftable_->Set(1, AllocInterfaceEntry(array_interfaces_->Get(1)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700409
Elliott Hughes418d20f2011-09-22 14:00:39 -0700410 // Sanity check Class[] and Object[]'s interfaces
411 CHECK_EQ(java_lang_Cloneable, class_array_class->GetInterface(0));
412 CHECK_EQ(java_io_Serializable, class_array_class->GetInterface(1));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700413 CHECK_EQ(java_lang_Cloneable, object_array_class->GetInterface(0));
414 CHECK_EQ(java_io_Serializable, object_array_class->GetInterface(1));
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700415
Elliott Hughes80609252011-09-23 17:24:51 -0700416 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700417 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700418 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700419 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700420
Elliott Hughes80609252011-09-23 17:24:51 -0700421 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
422 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700423 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700424
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700425 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700426 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700427 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700428
429 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700430 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700431 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700432
Ian Rogers466bb252011-10-14 03:29:56 -0700433 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
434
435 // Create java.lang.reflect.Proxy root
436 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
437 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
438
Brian Carlstrom1f870082011-08-23 16:02:11 -0700439 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700440 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
441 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700442 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700443 java_lang_ref_FinalizerReference->SetAccessFlags(
444 java_lang_ref_FinalizerReference->GetAccessFlags() |
445 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700446 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700447 java_lang_ref_PhantomReference->SetAccessFlags(
448 java_lang_ref_PhantomReference->GetAccessFlags() |
449 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700450 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700451 java_lang_ref_SoftReference->SetAccessFlags(
452 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700453 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700454 java_lang_ref_WeakReference->SetAccessFlags(
455 java_lang_ref_WeakReference->GetAccessFlags() |
456 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700457
Brian Carlstromaded5f72011-10-07 17:15:04 -0700458 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700459 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700460 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700461 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
462
463 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
464 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
465 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
466
467 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
468 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
469 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
470 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
471
472 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700473 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
474 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700475 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700476
Brian Carlstroma663ea52011-08-19 23:33:41 -0700477 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700478
479 if (runtime->IsVerboseStartup()) {
480 LOG(INFO) << "ClassLinker::InitFrom exiting";
481 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700482}
483
484void ClassLinker::FinishInit() {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700485 const Runtime* runtime = Runtime::Current();
486 if (runtime->IsVerboseStartup()) {
487 LOG(INFO) << "ClassLinker::FinishInit entering";
488 }
Brian Carlstrom16192862011-09-12 17:50:06 -0700489
490 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700491 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700492 // as the types of the field can't be resolved prior to the runtime being
493 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700494 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700495 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700496 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
497
Elliott Hughesadb460d2011-10-05 17:02:34 -0700498 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
499
Brian Carlstrom16192862011-09-12 17:50:06 -0700500 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
501 CHECK(pendingNext->GetName()->Equals("pendingNext"));
502 CHECK_EQ(ResolveType(pendingNext->GetTypeIdx(), pendingNext), java_lang_ref_Reference);
503
504 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
505 CHECK(queue->GetName()->Equals("queue"));
Elliott Hughesadb460d2011-10-05 17:02:34 -0700506 CHECK_EQ(ResolveType(queue->GetTypeIdx(), queue), java_lang_ref_ReferenceQueue);
Brian Carlstrom16192862011-09-12 17:50:06 -0700507
508 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
509 CHECK(queueNext->GetName()->Equals("queueNext"));
510 CHECK_EQ(ResolveType(queueNext->GetTypeIdx(), queueNext), java_lang_ref_Reference);
511
512 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
513 CHECK(referent->GetName()->Equals("referent"));
514 CHECK_EQ(ResolveType(referent->GetTypeIdx(), referent), GetClassRoot(kJavaLangObject));
515
516 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
517 CHECK(zombie->GetName()->Equals("zombie"));
518 CHECK_EQ(ResolveType(zombie->GetTypeIdx(), zombie), GetClassRoot(kJavaLangObject));
519
520 Heap::SetReferenceOffsets(referent->GetOffset(),
521 queue->GetOffset(),
522 queueNext->GetOffset(),
523 pendingNext->GetOffset(),
524 zombie->GetOffset());
525
Brian Carlstroma663ea52011-08-19 23:33:41 -0700526 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700527 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700528 ClassRoot class_root = static_cast<ClassRoot>(i);
529 Class* klass = GetClassRoot(class_root);
530 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700531 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700532 // note SetClassRoot does additional validation.
533 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700534 }
535
Elliott Hughes92f14b22011-10-06 12:29:54 -0700536 CHECK(array_iftable_ != NULL);
537 CHECK(array_interfaces_ != NULL);
538
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700539 // disable the slow paths in FindClass and CreatePrimitiveClass now
540 // that Object, Class, and Object[] are setup
541 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700542
543 if (runtime->IsVerboseStartup()) {
544 LOG(INFO) << "ClassLinker::FinishInit exiting";
545 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700546}
547
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700548void ClassLinker::RunRootClinits() {
549 Thread* self = Thread::Current();
550 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
551 Class* c = GetClassRoot(ClassRoot(i));
552 if (!c->IsArrayClass() && !c->IsPrimitive()) {
553 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700554 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700555 }
556 }
557}
558
jeffhao262bf462011-10-20 18:36:32 -0700559const OatFile* ClassLinker::GenerateOatFile(const std::string& filename) {
560 std::string oat_filename(GetArtCacheFilenameOrDie(OatFile::DexFilenameToOatFilename(filename)));
561
562 // fork and exec dex2oat
563 pid_t pid = fork();
564 if (pid == 0) {
565 std::string boot_image_option("--boot-image=");
566 boot_image_option += Heap::GetSpaces()[0]->GetImageFilename();
567
568 std::string dex_file_option("--dex-file=");
569 dex_file_option += filename;
570
571 std::string oat_file_option("--oat=");
572 oat_file_option += oat_filename;
573
Elliott Hughes234da572011-11-03 22:13:06 -0700574 std::string dex2oat("/system/bin/dex2oat");
575#ifndef NDEBUG
576 dex2oat += 'd';
577#endif
578
579 execl(dex2oat.c_str(), dex2oat.c_str(),
jeffhao5d840402011-10-24 17:09:45 -0700580 "--runtime-arg", "-Xms64m",
581 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500582 "--runtime-arg", "-classpath",
583 "--runtime-arg", Runtime::Current()->GetClassPath().c_str(),
jeffhao262bf462011-10-20 18:36:32 -0700584 boot_image_option.c_str(),
585 dex_file_option.c_str(),
586 oat_file_option.c_str(),
587 NULL);
588
589 PLOG(FATAL) << "execl(dex2oatd) failed";
590 return NULL;
591 } else {
592 // wait for dex2oat to finish
593 int status;
594 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
595 if (got_pid != pid) {
596 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
597 return NULL;
598 }
599 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
600 LOG(ERROR) << "dex2oatd failed with dex-file=" << filename;
601 return NULL;
602 }
603 }
604 return OatFile::Open(oat_filename, "", NULL);
605}
606
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700607OatFile* ClassLinker::OpenOat(const Space* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700608 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700609 const Runtime* runtime = Runtime::Current();
610 if (runtime->IsVerboseStartup()) {
611 LOG(INFO) << "ClassLinker::OpenOat entering";
612 }
613 const ImageHeader& image_header = space->GetImageHeader();
614 String* oat_location = image_header.GetImageRoot(ImageHeader::kOatLocation)->AsString();
615 std::string oat_filename;
616 oat_filename += runtime->GetHostPrefix();
617 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma9f19782011-10-13 00:14:47 -0700618 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBaseAddr());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700619 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700620 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700621 return NULL;
622 }
623 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
624 uint32_t image_oat_checksum = image_header.GetOatChecksum();
625 if (oat_checksum != image_oat_checksum) {
626 LOG(ERROR) << "Failed to match oat filechecksum " << std::hex << oat_checksum
627 << " to expected oat checksum " << std::hex << oat_checksum
628 << " in image";
629 return NULL;
630 }
631 oat_files_.push_back(oat_file);
632 if (runtime->IsVerboseStartup()) {
633 LOG(INFO) << "ClassLinker::OpenOat exiting";
634 }
635 return oat_file;
636}
637
Brian Carlstromae826982011-11-09 01:33:42 -0800638const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
639 for (size_t i = 0; i < oat_files_.size(); i++) {
640 const OatFile* oat_file = oat_files_[i];
641 DCHECK(oat_file != NULL);
642 if (oat_file->GetOatDexFile(dex_file.GetLocation())) {
643 return oat_file;
644 }
645 }
646 return NULL;
647}
648
649const OatFile* ClassLinker::FindOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700650 MutexLock mu(dex_lock_);
Brian Carlstromae826982011-11-09 01:33:42 -0800651 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
652 if (oat_file != NULL) {
653 return oat_file;
654 }
655
656 oat_file = FindOatFileFromOatLocation(OatFile::DexFilenameToOatFilename(dex_file.GetLocation()));
jeffhao262bf462011-10-20 18:36:32 -0700657 if (oat_file != NULL) {
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700658 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
659 if (dex_file.GetHeader().checksum_ == oat_dex_file->GetDexFileChecksum()) {
660 return oat_file;
661 }
662 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
663 << " is older than " << dex_file.GetLocation() << " --- regenerating";
Elliott Hughes234da572011-11-03 22:13:06 -0700664 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
665 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
666 }
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700667 // Fall through...
jeffhao262bf462011-10-20 18:36:32 -0700668 }
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700669 // Generate oat file if it wasn't found or was obsolete.
jeffhao262bf462011-10-20 18:36:32 -0700670 oat_file = GenerateOatFile(dex_file.GetLocation());
671 if (oat_file == NULL) {
672 LOG(ERROR) << "Failed to generate oat file from dex file " << dex_file.GetLocation();
673 return NULL;
674 }
675 oat_files_.push_back(oat_file);
676 return oat_file;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700677}
678
Brian Carlstromae826982011-11-09 01:33:42 -0800679const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700680 for (size_t i = 0; i < oat_files_.size(); i++) {
681 const OatFile* oat_file = oat_files_[i];
682 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800683 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700684 return oat_file;
685 }
686 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700687 return NULL;
688}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700689
Brian Carlstromae826982011-11-09 01:33:42 -0800690const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
691 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700692 if (oat_file != NULL) {
693 return oat_file;
694 }
695
Brian Carlstromae826982011-11-09 01:33:42 -0800696 oat_file = OatFile::Open(oat_location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700697 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800698 if (oat_location.empty() || oat_location[0] != '/') {
699 LOG(ERROR) << "Failed to open oat file from " << oat_location;
Brian Carlstroma9f19782011-10-13 00:14:47 -0700700 return NULL;
701 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700702
Brian Carlstroma9f19782011-10-13 00:14:47 -0700703 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Brian Carlstromae826982011-11-09 01:33:42 -0800704 std::string cache_location = GetArtCacheFilenameOrDie(oat_location);
705 oat_file = FindOpenedOatFileFromOatLocation(cache_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700706 if (oat_file != NULL) {
707 return oat_file;
708 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700709 oat_file = OatFile::Open(cache_location, "", NULL);
710 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800711 LOG(INFO) << "Failed to open oat file from " << oat_location << " or " << cache_location << ".";
Brian Carlstroma9f19782011-10-13 00:14:47 -0700712 return NULL;
713 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700714 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700715
Brian Carlstromae826982011-11-09 01:33:42 -0800716 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromfad71432011-10-16 20:25:10 -0700717 oat_files_.push_back(oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700718 return oat_file;
719}
720
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700721void ClassLinker::InitFromImage() {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700722 const Runtime* runtime = Runtime::Current();
723 if (runtime->IsVerboseStartup()) {
724 LOG(INFO) << "ClassLinker::InitFromImage entering";
725 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700726 CHECK(!init_done_);
727
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700728 const std::vector<Space*>& spaces = Heap::GetSpaces();
729 for (size_t i = 0; i < spaces.size(); i++) {
730 Space* space = spaces[i] ;
731 if (space->IsImageSpace()) {
732 OatFile* oat_file = OpenOat(space);
733 CHECK(oat_file != NULL) << "Failed to open oat file for image";
734 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
735 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
736
737 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
738 static_cast<uint32_t>(dex_caches->GetLength()));
739 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700740 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700741 const std::string& dex_file_location = dex_cache->GetLocation()->ToModifiedUtf8();
742
743 std::string dex_filename;
744 dex_filename += runtime->GetHostPrefix();
745 dex_filename += dex_file_location;
746 const DexFile* dex_file = DexFile::Open(dex_filename, runtime->GetHostPrefix());
747 if (dex_file == NULL) {
748 LOG(FATAL) << "Failed to open dex file " << dex_filename
749 << " referenced from oat file as " << dex_file_location;
750 }
751
Brian Carlstromaded5f72011-10-07 17:15:04 -0700752 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
753 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700754
Brian Carlstromdf143242011-10-10 18:05:34 -0700755 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700756 }
757 }
758 }
759
Brian Carlstroma663ea52011-08-19 23:33:41 -0700760 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
761 DCHECK(heap_bitmap != NULL);
762
Brian Carlstroma663ea52011-08-19 23:33:41 -0700763 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700764 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700765
766 // reinit class_roots_
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700767 Object* class_roots_object = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
768 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700769
Elliott Hughes92f14b22011-10-06 12:29:54 -0700770 // reinit array_interfaces_ and array_iftable_ from any array class instance, they should all be ==
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700771 array_interfaces_ = GetClassRoot(kObjectArrayClass)->GetInterfaces();
772 DCHECK(array_interfaces_ == GetClassRoot(kBooleanArrayClass)->GetInterfaces());
Elliott Hughes92f14b22011-10-06 12:29:54 -0700773 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
774 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Brian Carlstroma663ea52011-08-19 23:33:41 -0700775
Brian Carlstroma663ea52011-08-19 23:33:41 -0700776 String::SetClass(GetClassRoot(kJavaLangString));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700777 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700778 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700779 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
780 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
781 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
782 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
783 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
784 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
785 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
786 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700787 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700788 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700789
790 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700791
792 if (runtime->IsVerboseStartup()) {
793 LOG(INFO) << "ClassLinker::InitFromImage exiting";
794 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700795}
796
Brian Carlstrom78128a62011-09-15 17:21:19 -0700797void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700798 DCHECK(obj != NULL);
799 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700800 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700801
Elliott Hughesdbb40792011-11-18 17:05:22 -0800802 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700803 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700804 return;
805 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700806 if (obj->IsClass()) {
807 // restore class to ClassLinker::classes_ table
808 Class* klass = obj->AsClass();
809 std::string descriptor = klass->GetDescriptor()->ToModifiedUtf8();
Ian Rogers5d76c432011-10-31 21:42:49 -0700810 bool success = class_linker->InsertClass(descriptor, klass, true);
811 DCHECK(success);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700812 return;
813 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700814}
815
816// Keep in sync with InitCallback. Anything we visit, we need to
817// reinit references to when reinitializing a ClassLinker from a
818// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700819void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
820 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700821
822 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700823 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700824 }
825
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700826 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700827 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700828 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700829 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700830 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700831 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700832 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700833 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700834
Elliott Hughes410c0c82011-09-01 17:58:25 -0700835 visitor(array_interfaces_, arg);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700836 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700837}
838
Elliott Hughesa2155262011-11-16 16:26:58 -0800839void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
840 MutexLock mu(classes_lock_);
841 typedef Table::const_iterator It; // TODO: C++0x auto
842 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
843 if (!visitor(it->second, arg)) {
844 return;
845 }
846 }
847 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
848 if (!visitor(it->second, arg)) {
849 return;
850 }
851 }
852}
853
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700854ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700855 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700856 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700857 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700858 BooleanArray::ResetArrayClass();
859 ByteArray::ResetArrayClass();
860 CharArray::ResetArrayClass();
861 DoubleArray::ResetArrayClass();
862 FloatArray::ResetArrayClass();
863 IntArray::ResetArrayClass();
864 LongArray::ResetArrayClass();
865 ShortArray::ResetArrayClass();
866 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700867 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700868 STLDeleteElements(&boot_class_path_);
869 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700870}
871
872DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700873 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
874 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700875 return NULL;
876 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700877 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
878 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700879 return NULL;
880 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700881 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
882 if (strings.get() == NULL) {
883 return NULL;
884 }
885 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
886 if (types.get() == NULL) {
887 return NULL;
888 }
889 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
890 if (methods.get() == NULL) {
891 return NULL;
892 }
893 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
894 if (fields.get() == NULL) {
895 return NULL;
896 }
897 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
898 if (code_and_direct_methods.get() == NULL) {
899 return NULL;
900 }
901 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
902 if (initialized_static_storage.get() == NULL) {
903 return NULL;
904 }
905
906 dex_cache->Init(location.get(),
907 strings.get(),
908 types.get(),
909 methods.get(),
910 fields.get(),
911 code_and_direct_methods.get(),
912 initialized_static_storage.get());
913 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -0700914}
915
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700916CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
917 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -0700918}
919
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700920InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
921 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700922 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
923 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700924 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700925 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700926}
927
Brian Carlstrom4873d462011-08-21 15:23:39 -0700928Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
929 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700930 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700931 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700932 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700933 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700934}
935
Brian Carlstrom4873d462011-08-21 15:23:39 -0700936Class* ClassLinker::AllocClass(size_t class_size) {
937 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -0700938}
939
Jesse Wilson35baaab2011-08-10 16:18:03 -0400940Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700941 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -0700942}
943
944Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700945 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700946}
947
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700948ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
949 return ObjectArray<StackTraceElement>::Alloc(
950 GetClassRoot(kJavaLangStackTraceElementArrayClass),
951 length);
952}
953
Brian Carlstromaded5f72011-10-07 17:15:04 -0700954Class* EnsureResolved(Class* klass) {
955 DCHECK(klass != NULL);
956 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -0700957 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700958 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700959 ObjectLock lock(klass);
960 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700961 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700962 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700963 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700964 return NULL;
965 }
966 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700967 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700968 lock.Wait();
969 }
970 }
971 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700972 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700973 return NULL;
974 }
975 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -0700976 CHECK(klass->IsResolved()) << PrettyClass(klass);
977 CHECK(!self->IsExceptionPending())
978 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
979 return klass;
980}
981
982Class* ClassLinker::FindClass(const std::string& descriptor,
983 const ClassLoader* class_loader) {
984 CHECK_NE(descriptor.size(), 0U);
985 Thread* self = Thread::Current();
986 DCHECK(self != NULL);
987 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
988 // Find the class in the loaded classes table.
989 Class* klass = LookupClass(descriptor, class_loader);
990 if (klass != NULL) {
991 return EnsureResolved(klass);
992 }
993 if (descriptor.size() == 1) {
994 // only the descriptors of primitive types should be 1 character long
995 return FindPrimitiveClass(descriptor[0]);
996 }
997 // Class is not yet loaded.
998 if (descriptor[0] == '[') {
999 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001000
Jesse Wilson47daf872011-11-23 11:42:45 -05001001 } else if (class_loader == NULL) {
1002 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1003 if (pair.second != NULL) {
1004 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1005 }
1006
1007 } else if (ClassLoader::UseCompileTimeClassPath()) {
1008 // first try the boot class path
1009 Class* system_class = FindSystemClass(descriptor);
1010 if (system_class != NULL) {
1011 return system_class;
1012 }
1013 CHECK(self->IsExceptionPending());
1014 self->ClearException();
1015
1016 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001017 const std::vector<const DexFile*>& class_path
1018 = ClassLoader::GetCompileTimeClassPath(class_loader);
1019 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001020 if (pair.second != NULL) {
1021 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001022 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001023
1024 } else {
1025 std::string class_name_string = DescriptorToDot(descriptor);
1026 ScopedThreadStateChange(self, Thread::kNative);
1027 JNIEnv* env = self->GetJniEnv();
1028 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1029 CHECK(c.get() != NULL);
1030 // TODO: cache method?
1031 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1032 CHECK(mid != NULL);
1033 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1034 if (class_name_object.get() == NULL) {
1035 return NULL;
1036 }
1037 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
1038 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid, class_name_object.get()));
1039 return Decode<Class*>(env, result.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001040 }
1041
Jesse Wilson47daf872011-11-23 11:42:45 -05001042 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
1043 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001044}
1045
1046Class* ClassLinker::DefineClass(const std::string& descriptor,
1047 const ClassLoader* class_loader,
1048 const DexFile& dex_file,
1049 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001050 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001051 // Load the class from the dex file.
1052 if (!init_done_) {
1053 // finish up init of hand crafted class_roots_
1054 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001055 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001056 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001057 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001058 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001059 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001060 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001061 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001062 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001063 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001064 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001065 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001066 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001067 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001068 }
1069 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001070 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001071 }
1072 klass->SetDexCache(FindDexCache(dex_file));
1073 LoadClass(dex_file, dex_class_def, klass, class_loader);
1074 // Check for a pending exception during load
1075 Thread* self = Thread::Current();
1076 if (self->IsExceptionPending()) {
1077 return NULL;
1078 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001079 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001080 klass->SetClinitThreadId(self->GetTid());
1081 // Add the newly loaded class to the loaded classes table.
Ian Rogers5d76c432011-10-31 21:42:49 -07001082 bool success = InsertClass(descriptor, klass.get(), false); // TODO: just return collision
Brian Carlstromaded5f72011-10-07 17:15:04 -07001083 if (!success) {
1084 // We may fail to insert if we raced with another thread.
1085 klass->SetClinitThreadId(0);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001086 klass.reset(LookupClass(descriptor, class_loader));
1087 CHECK(klass.get() != NULL);
1088 return klass.get();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001089 }
1090 // Finish loading (if necessary) by finding parents
1091 CHECK(!klass->IsLoaded());
1092 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1093 // Loading failed.
1094 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001095 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001096 lock.NotifyAll();
1097 return NULL;
1098 }
1099 CHECK(klass->IsLoaded());
1100 // Link the class (if necessary)
1101 CHECK(!klass->IsResolved());
1102 if (!LinkClass(klass)) {
1103 // Linking failed.
1104 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001105 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001106 lock.NotifyAll();
1107 return NULL;
1108 }
1109 CHECK(klass->IsResolved());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001110 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001111}
1112
Brian Carlstrom4873d462011-08-21 15:23:39 -07001113// Precomputes size that will be needed for Class, matching LinkStaticFields
1114size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1115 const DexFile::ClassDef& dex_class_def) {
1116 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001117 size_t num_ref = 0;
1118 size_t num_32 = 0;
1119 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001120 if (class_data != NULL) {
1121 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1122 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001123 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001124 char c = descriptor[0];
1125 if (c == 'L' || c == '[') {
1126 num_ref++;
1127 } else if (c == 'J' || c == 'D') {
1128 num_64++;
1129 } else {
1130 num_32++;
1131 }
1132 }
1133 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001134 // start with generic class data
1135 size_t size = sizeof(Class);
1136 // follow with reference fields which must be contiguous at start
1137 size += (num_ref * sizeof(uint32_t));
1138 // if there are 64-bit fields to add, make sure they are aligned
1139 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1140 if (num_32 != 0) {
1141 // use an available 32-bit field for padding
1142 num_32--;
1143 }
1144 size += sizeof(uint32_t); // either way, we are adding a word
1145 DCHECK_EQ(size, RoundUp(size, 8));
1146 }
1147 // tack on any 64-bit fields now that alignment is assured
1148 size += (num_64 * sizeof(uint64_t));
1149 // tack on any remaining 32-bit fields
1150 size += (num_32 * sizeof(uint32_t));
1151 return size;
1152}
1153
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001154void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001155 // Every kind of method should at least get an invoke stub from the oat_method.
1156 // non-abstract methods also get their code pointers.
1157 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001158 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001159
1160 if (method->IsAbstract()) {
1161 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1162 return;
1163 }
1164 if (method->IsNative()) {
1165 // unregistering restores the dlsym lookup stub
1166 method->UnregisterNative();
1167 return;
1168 }
1169}
1170
Brian Carlstromf615a612011-07-23 12:50:34 -07001171void ClassLinker::LoadClass(const DexFile& dex_file,
1172 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001173 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001174 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001175 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001176 CHECK(klass->GetDexCache() != NULL);
1177 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001178 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001179 CHECK(descriptor != NULL);
1180
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001181 klass->SetClass(GetClassRoot(kJavaLangClass));
1182 if (klass->GetDescriptor() != NULL) {
1183 DCHECK(klass->GetDescriptor()->Equals(descriptor));
1184 } else {
Brian Carlstromc74255f2011-09-11 22:47:39 -07001185 klass->SetDescriptor(intern_table_->InternStrong(descriptor));
Elliott Hughes30646832011-10-13 16:59:46 -07001186 if (klass->GetDescriptor() == NULL) {
1187 return;
1188 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001189 }
1190 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001191 // Make sure that none of our runtime-only flags are set.
1192 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001193 klass->SetAccessFlags(access_flags);
1194 klass->SetClassLoader(class_loader);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001195 DCHECK(klass->GetPrimitiveType() == Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001196 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001197
jeffhao64155032011-11-03 17:56:34 -07001198 klass->SetTypeIdx(dex_class_def.class_idx_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001199 klass->SetSuperClassTypeIdx(dex_class_def.superclass_idx_);
jeffhao64155032011-11-03 17:56:34 -07001200 klass->SetAnnotationsOffset(dex_class_def.annotations_off_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001201
Ian Rogers0571d352011-11-03 19:51:38 -07001202 const char* source_file = dex_file.GetSourceFile(dex_class_def);
Jesse Wilson6384f642011-10-07 18:08:35 -04001203 if (source_file != NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001204 String* source_file_string = intern_table_->InternStrong(source_file);
1205 if (source_file_string == NULL) {
1206 return;
1207 }
1208 klass->SetSourceFile(source_file_string);
Jesse Wilson6384f642011-10-07 18:08:35 -04001209 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001210
1211 // Load class interfaces.
Brian Carlstromf615a612011-07-23 12:50:34 -07001212 LoadInterfaces(dex_file, dex_class_def, klass);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001213
Ian Rogers0571d352011-11-03 19:51:38 -07001214 // Load fields fields.
1215 const byte* class_data = dex_file.GetClassData(dex_class_def);
1216 if (class_data == NULL) {
1217 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001218 }
Ian Rogers0571d352011-11-03 19:51:38 -07001219 ClassDataItemIterator it(dex_file, class_data);
1220 if (it.NumStaticFields() != 0) {
1221 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1222 }
1223 if (it.NumInstanceFields() != 0) {
1224 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1225 }
1226 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1227 SirtRef<Field> sfield(AllocField());
1228 klass->SetStaticField(i, sfield.get());
1229 LoadField(dex_file, it, klass, sfield);
1230 }
1231 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1232 SirtRef<Field> ifield(AllocField());
1233 klass->SetInstanceField(i, ifield.get());
1234 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001235 }
1236
Brian Carlstromaded5f72011-10-07 17:15:04 -07001237 UniquePtr<const OatFile::OatClass> oat_class;
1238 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001239 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001240 if (oat_file != NULL) {
1241 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1242 if (oat_dex_file != NULL) {
1243 uint32_t class_def_index;
1244 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1245 CHECK(found) << descriptor;
1246 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001247 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001248 }
1249 }
1250 }
Ian Rogers0571d352011-11-03 19:51:38 -07001251 // Load methods.
1252 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001253 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001254 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001255 }
Ian Rogers0571d352011-11-03 19:51:38 -07001256 if (it.NumVirtualMethods() != 0) {
1257 // TODO: append direct methods to class object
1258 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001259 }
Ian Rogers0571d352011-11-03 19:51:38 -07001260 size_t method_index = 0;
1261 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1262 SirtRef<Method> method(AllocMethod());
1263 klass->SetDirectMethod(i, method.get());
1264 LoadMethod(dex_file, it, klass, method);
1265 if (oat_class.get() != NULL) {
1266 LinkCode(method, oat_class.get(), method_index);
1267 }
1268 method_index++;
1269 }
1270 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1271 SirtRef<Method> method(AllocMethod());
1272 klass->SetVirtualMethod(i, method.get());
1273 LoadMethod(dex_file, it, klass, method);
1274 if (oat_class.get() != NULL) {
1275 LinkCode(method, oat_class.get(), method_index);
1276 }
1277 method_index++;
1278 }
1279 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001280}
1281
Brian Carlstromf615a612011-07-23 12:50:34 -07001282void ClassLinker::LoadInterfaces(const DexFile& dex_file,
1283 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001284 SirtRef<Class>& klass) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001285 const DexFile::TypeList* list = dex_file.GetInterfacesList(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001286 if (list != NULL) {
Elliott Hughes418d20f2011-09-22 14:00:39 -07001287 klass->SetInterfaces(AllocClassArray(list->Size()));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001288 IntArray* interfaces_idx = IntArray::Alloc(list->Size());
1289 klass->SetInterfacesTypeIdx(interfaces_idx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001290 for (size_t i = 0; i < list->Size(); ++i) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001291 const DexFile::TypeItem& type_item = list->GetTypeItem(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001292 interfaces_idx->Set(i, type_item.type_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001293 }
1294 }
1295}
1296
Ian Rogers0571d352011-11-03 19:51:38 -07001297void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1298 SirtRef<Class>& klass, SirtRef<Field>& dst) {
1299 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001300 dst->SetDeclaringClass(klass.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001301 dst->SetName(ResolveString(dex_file, field_id.name_idx_, klass->GetDexCache()));
1302 dst->SetTypeIdx(field_id.type_idx_);
Ian Rogers0571d352011-11-03 19:51:38 -07001303 dst->SetAccessFlags(it.GetMemberAccessFlags());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001304
1305 // In order to access primitive types using GetTypeDuringLinking we need to
1306 // ensure they are resolved into the dex cache
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001307 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001308 if (descriptor[1] == '\0') {
1309 // only the descriptors of primitive types should be 1 character long
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001310 Class* resolved = ResolveType(dex_file, field_id.type_idx_, klass.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001311 DCHECK(resolved->IsPrimitive());
1312 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001313}
1314
Ian Rogers0571d352011-11-03 19:51:38 -07001315void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1316 SirtRef<Class>& klass, SirtRef<Method>& dst) {
1317 const DexFile::MethodId& method_id = dex_file.GetMethodId(it.GetMemberIndex());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001318 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001319
Elliott Hughes80609252011-09-23 17:24:51 -07001320 String* method_name = ResolveString(dex_file, method_id.name_idx_, klass->GetDexCache());
Elliott Hughes30646832011-10-13 16:59:46 -07001321 if (method_name == NULL) {
1322 return;
1323 }
Elliott Hughes80609252011-09-23 17:24:51 -07001324 dst->SetName(method_name);
1325 if (method_name->Equals("<init>")) {
1326 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1327 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001328
1329 int32_t utf16_length;
Ian Rogers0571d352011-11-03 19:51:38 -07001330 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, &utf16_length));
Elliott Hughes30646832011-10-13 16:59:46 -07001331 String* signature_string = intern_table_->InternStrong(utf16_length, signature.c_str());
1332 if (signature_string == NULL) {
1333 return;
1334 }
1335 dst->SetSignature(signature_string);
Elliott Hughes20cde902011-10-04 17:37:27 -07001336
1337 if (method_name->Equals("finalize") && signature == "()V") {
1338 /*
1339 * The Enum class declares a "final" finalize() method to prevent subclasses from introducing
1340 * a finalizer. We don't want to set the finalizable flag for Enum or its subclasses, so we
1341 * exclude it here.
1342 *
1343 * We also want to avoid setting the flag on Object, where we know that finalize() is empty.
1344 */
1345 if (klass->GetClassLoader() != NULL ||
1346 (!klass->GetDescriptor()->Equals("Ljava/lang/Object;") &&
1347 !klass->GetDescriptor()->Equals("Ljava/lang/Enum;"))) {
1348 klass->SetFinalizable();
1349 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001350 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001351
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001352 dst->SetProtoIdx(method_id.proto_idx_);
Ian Rogers0571d352011-11-03 19:51:38 -07001353 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001354 const char* shorty = dex_file.GetShorty(method_id.proto_idx_);
Elliott Hughes30646832011-10-13 16:59:46 -07001355 String* shorty_string = intern_table_->InternStrong(shorty);
1356 dst->SetShorty(shorty_string);
1357 if (shorty_string == NULL) {
1358 return;
1359 }
Ian Rogers0571d352011-11-03 19:51:38 -07001360 dst->SetAccessFlags(it.GetMemberAccessFlags());
Ian Rogers9074b992011-10-26 17:41:55 -07001361 uint32_t return_type_idx = dex_file.GetProtoId(method_id.proto_idx_).return_type_idx_;
1362 DCHECK_LT(return_type_idx, dex_file.NumTypeIds());
1363 dst->SetReturnTypeIdx(return_type_idx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001364
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001365 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1366 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1367 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1368 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1369 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1370 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001371
Brian Carlstrom934486c2011-07-12 23:42:50 -07001372 // TODO: check for finalize method
1373
Ian Rogers0571d352011-11-03 19:51:38 -07001374 const DexFile::CodeItem* code_item = it.GetMethodCodeItem();
Brian Carlstrom934486c2011-07-12 23:42:50 -07001375 if (code_item != NULL) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001376 dst->SetNumRegisters(code_item->registers_size_);
1377 dst->SetNumIns(code_item->ins_size_);
1378 dst->SetNumOuts(code_item->outs_size_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001379 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001380 uint16_t num_args = Method::NumArgRegisters(shorty);
Ian Rogersa3760aa2011-11-14 14:32:37 -08001381 if ((it.GetMemberAccessFlags() & kAccStatic) == 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001382 ++num_args;
1383 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001384 dst->SetNumRegisters(num_args);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001385 // TODO: native methods
1386 }
1387}
1388
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001389void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001390 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1391 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001392}
1393
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001394void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1395 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001396 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001397 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001398}
1399
Brian Carlstromaded5f72011-10-07 17:15:04 -07001400bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001401 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001402 for (size_t i = 0; i != dex_files_.size(); ++i) {
1403 if (dex_files_[i] == &dex_file) {
1404 return true;
1405 }
1406 }
1407 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001408}
1409
Brian Carlstromaded5f72011-10-07 17:15:04 -07001410bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001411 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001412 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001413}
1414
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001415void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001416 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001417 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001418 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001419 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001420 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001421}
1422
Brian Carlstromaded5f72011-10-07 17:15:04 -07001423void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001424 {
1425 MutexLock mu(dex_lock_);
1426 if (IsDexFileRegisteredLocked(dex_file)) {
1427 return;
1428 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001429 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001430 // Don't alloc while holding the lock, since allocation may need to
1431 // suspend all threads and another thread may need the dex_lock_ to
1432 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001433 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001434 {
1435 MutexLock mu(dex_lock_);
1436 if (IsDexFileRegisteredLocked(dex_file)) {
1437 return;
1438 }
1439 RegisterDexFileLocked(dex_file, dex_cache);
1440 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001441}
1442
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001443void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001444 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001445 RegisterDexFileLocked(dex_file, dex_cache);
1446}
1447
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001448const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001449 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001450 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001451 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1452 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001453 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001454 }
1455 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001456 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001457 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001458}
1459
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001460DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001461 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001462 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001463 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001464 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001465 }
1466 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001467 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001468 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001469}
1470
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001471Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1472 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001473 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001474 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001475 CHECK(primitive_class != NULL);
1476 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
1477 primitive_class->SetDescriptor(intern_table_->InternStrong(descriptor));
Elliott Hughes30646832011-10-13 16:59:46 -07001478 CHECK(primitive_class->GetDescriptor() != NULL);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001479 primitive_class->SetPrimitiveType(type);
1480 primitive_class->SetStatus(Class::kStatusInitialized);
Ian Rogers5d76c432011-10-31 21:42:49 -07001481 bool success = InsertClass(descriptor, primitive_class, false);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001482 CHECK(success) << "InitPrimitiveClass(" << descriptor << ") failed";
1483 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001484}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001485
Brian Carlstrombe977852011-07-19 14:54:54 -07001486// Create an array class (i.e. the class object for the array, not the
1487// array itself). "descriptor" looks like "[C" or "[[[[B" or
1488// "[Ljava/lang/String;".
1489//
1490// If "descriptor" refers to an array of primitives, look up the
1491// primitive type's internally-generated class object.
1492//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001493// "class_loader" is the class loader of the class that's referring to
1494// us. It's used to ensure that we're looking for the element type in
1495// the right context. It does NOT become the class loader for the
1496// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001497//
1498// Returns NULL with an exception raised on failure.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001499Class* ClassLinker::CreateArrayClass(const std::string& descriptor,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001500 const ClassLoader* class_loader) {
1501 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001502
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001503 // Identify the underlying component type
1504 Class* component_type = FindClass(descriptor.substr(1), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001505 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001506 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001507 return NULL;
1508 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001509
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001510 // See if the component type is already loaded. Array classes are
1511 // always associated with the class loader of their underlying
1512 // element type -- an array of Strings goes with the loader for
1513 // java/lang/String -- so we need to look for it there. (The
1514 // caller should have checked for the existence of the class
1515 // before calling here, but they did so with *their* class loader,
1516 // not the component type's loader.)
1517 //
1518 // If we find it, the caller adds "loader" to the class' initiating
1519 // loader list, which should prevent us from going through this again.
1520 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001521 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001522 // are the same, because our caller (FindClass) just did the
1523 // lookup. (Even if we get this wrong we still have correct behavior,
1524 // because we effectively do this lookup again when we add the new
1525 // class to the hash table --- necessary because of possible races with
1526 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001527 if (class_loader != component_type->GetClassLoader()) {
1528 Class* new_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001529 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001530 return new_class;
1531 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001532 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001533
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001534 // Fill out the fields in the Class.
1535 //
1536 // It is possible to execute some methods against arrays, because
1537 // all arrays are subclasses of java_lang_Object_, so we need to set
1538 // up a vtable. We can just point at the one in java_lang_Object_.
1539 //
1540 // Array classes are simple enough that we don't need to do a full
1541 // link step.
1542
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001543 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001544 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001545 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001546 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001547 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001548 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001549 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001550 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001551 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001552 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001553 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001554 }
1555 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001556 if (new_class.get() == NULL) {
1557 new_class.reset(AllocClass(sizeof(Class)));
1558 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001559 return NULL;
1560 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001561 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001562 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001563 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom693267a2011-09-06 09:25:34 -07001564 if (new_class->GetDescriptor() != NULL) {
1565 DCHECK(new_class->GetDescriptor()->Equals(descriptor));
1566 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001567 new_class->SetDescriptor(intern_table_->InternStrong(descriptor.c_str()));
Elliott Hughes30646832011-10-13 16:59:46 -07001568 if (new_class->GetDescriptor() == NULL) {
1569 return NULL;
1570 }
Brian Carlstrom693267a2011-09-06 09:25:34 -07001571 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001572 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001573 new_class->SetSuperClass(java_lang_Object);
1574 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001575 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001576 new_class->SetClassLoader(component_type->GetClassLoader());
1577 new_class->SetStatus(Class::kStatusInitialized);
1578 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001579 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001580
1581
1582 // All arrays have java/lang/Cloneable and java/io/Serializable as
1583 // interfaces. We need to set that up here, so that stuff like
1584 // "instanceof" works right.
1585 //
1586 // Note: The GC could run during the call to FindSystemClass,
1587 // so we need to make sure the class object is GC-valid while we're in
1588 // there. Do this by clearing the interface list so the GC will just
1589 // think that the entries are null.
1590
1591
1592 // Use the single, global copies of "interfaces" and "iftable"
1593 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001594 CHECK(array_interfaces_ != NULL);
1595 CHECK(array_iftable_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001596 new_class->SetInterfaces(array_interfaces_);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001597 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001598
1599 // Inherit access flags from the component type. Arrays can't be
1600 // used as a superclass or interface, so we want to add "final"
1601 // and remove "interface".
1602 //
1603 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001604 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001605 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001606 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1607 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001608
Ian Rogers5d76c432011-10-31 21:42:49 -07001609 if (InsertClass(descriptor, new_class.get(), false)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001610 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001611 }
1612 // Another thread must have loaded the class after we
1613 // started but before we finished. Abandon what we've
1614 // done.
1615 //
1616 // (Yes, this happens.)
1617
1618 // Grab the winning class.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001619 Class* other_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001620 DCHECK(other_class != NULL);
1621 return other_class;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001622}
1623
1624Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001625 switch (Primitive::GetType(type)) {
1626 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001627 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001628 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001629 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001630 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001631 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001632 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001633 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001634 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001635 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001636 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001637 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001638 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001639 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001640 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001641 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001642 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001643 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001644 case Primitive::kPrimNot:
1645 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001646 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001647 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001648 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001649 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001650}
1651
Ian Rogers5d76c432011-10-31 21:42:49 -07001652bool ClassLinker::InsertClass(const std::string& descriptor, Class* klass, bool image_class) {
Brian Carlstromae826982011-11-09 01:33:42 -08001653 if (verbose_) {
1654 DexCache* dex_cache = klass->GetDexCache();
1655 std::string source;
1656 if (dex_cache != NULL) {
1657 source += " from ";
1658 source += dex_cache->GetLocation()->ToModifiedUtf8();
1659 }
1660 LOG(INFO) << "Loaded class " << descriptor << source;
1661 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001662 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001663 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001664 Table::iterator it;
1665 if (image_class) {
1666 // TODO: sanity check there's no match in classes_
1667 it = image_classes_.insert(std::make_pair(hash, klass));
1668 } else {
1669 // TODO: sanity check there's no match in image_classes_
1670 it = classes_.insert(std::make_pair(hash, klass));
1671 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001672 return ((*it).second == klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001673}
1674
Brian Carlstromae826982011-11-09 01:33:42 -08001675bool ClassLinker::RemoveClass(const std::string& descriptor, const ClassLoader* class_loader) {
1676 size_t hash = StringPieceHash()(descriptor);
1677 MutexLock mu(classes_lock_);
1678 typedef Table::const_iterator It; // TODO: C++0x auto
1679 // TODO: determine if its better to search classes_ or image_classes_ first
1680 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
1681 Class* klass = it->second;
1682 if (klass->GetDescriptor()->Equals(descriptor) && klass->GetClassLoader() == class_loader) {
1683 classes_.erase(it);
1684 return true;
1685 }
1686 }
1687 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1688 Class* klass = it->second;
1689 if (klass->GetDescriptor()->Equals(descriptor) && klass->GetClassLoader() == class_loader) {
1690 image_classes_.erase(it);
1691 return true;
1692 }
1693 }
1694 return false;
1695}
1696
Brian Carlstromaded5f72011-10-07 17:15:04 -07001697Class* ClassLinker::LookupClass(const std::string& descriptor, const ClassLoader* class_loader) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001698 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001699 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001700 typedef Table::const_iterator It; // TODO: C++0x auto
Ian Rogers5d76c432011-10-31 21:42:49 -07001701 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001702 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001703 Class* klass = it->second;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001704 if (klass->GetDescriptor()->Equals(descriptor) && klass->GetClassLoader() == class_loader) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001705 return klass;
1706 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001707 }
Ian Rogers5d76c432011-10-31 21:42:49 -07001708 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1709 Class* klass = it->second;
1710 if (klass->GetDescriptor()->Equals(descriptor) && klass->GetClassLoader() == class_loader) {
1711 return klass;
1712 }
1713 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001714 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001715}
1716
jeffhao98eacac2011-09-14 16:11:53 -07001717void ClassLinker::VerifyClass(Class* klass) {
1718 if (klass->IsVerified()) {
1719 return;
1720 }
1721
1722 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved);
jeffhao98eacac2011-09-14 16:11:53 -07001723 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001724
Ian Rogersd81871c2011-10-03 13:57:23 -07001725 if (verifier::DexVerifier::VerifyClass(klass)) {
jeffhao5cfd6fb2011-09-27 13:54:29 -07001726 klass->SetStatus(Class::kStatusVerified);
1727 } else {
1728 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001729 Thread* self = Thread::Current();
1730 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
1731 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
1732 PrettyDescriptor(klass->GetDescriptor()).c_str());
jeffhao5cfd6fb2011-09-27 13:54:29 -07001733 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001734 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001735 }
jeffhao98eacac2011-09-14 16:11:53 -07001736}
1737
Jesse Wilson95caa792011-10-12 18:14:17 -04001738Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers466bb252011-10-14 03:29:56 -07001739 ClassLoader* loader, ObjectArray<Method>* methods, ObjectArray<ObjectArray<Class> >* throws) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001740 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(ProxyClass)));
1741 CHECK(klass.get() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001742 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers466bb252011-10-14 03:29:56 -07001743 const char* descriptor = DotToDescriptor(name->ToModifiedUtf8().c_str()).c_str();;
1744 klass->SetDescriptor(intern_table_->InternStrong(descriptor));
Jesse Wilson95caa792011-10-12 18:14:17 -04001745 klass->SetAccessFlags(kAccPublic | kAccFinal);
1746 klass->SetClassLoader(loader);
Ian Rogers466bb252011-10-14 03:29:56 -07001747 klass->SetStatus(Class::kStatusInitialized); // no loading or initializing necessary
1748 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
1749 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1750 klass->SetInterfaces(interfaces); // The interfaces are the array of interfaces specified
Jesse Wilson95caa792011-10-12 18:14:17 -04001751
Ian Rogers466bb252011-10-14 03:29:56 -07001752 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001753 klass->SetDirectMethods(AllocObjectArray<Method>(1));
1754 klass->SetDirectMethod(0, CreateProxyConstructor(klass));
1755
Ian Rogers466bb252011-10-14 03:29:56 -07001756 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001757 size_t num_virtual_methods = methods->GetLength();
1758 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1759 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001760 SirtRef<Method> prototype(methods->Get(i));
Jesse Wilson95caa792011-10-12 18:14:17 -04001761 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype, throws->Get(i)));
1762 }
Ian Rogers466bb252011-10-14 03:29:56 -07001763 // Link the virtual methods, creating vtable and iftables
Jesse Wilson95caa792011-10-12 18:14:17 -04001764 if (!LinkMethods(klass)) {
1765 DCHECK(Thread::Current()->IsExceptionPending());
1766 return NULL;
1767 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001768 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04001769}
1770
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001771Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass) {
Ian Rogers466bb252011-10-14 03:29:56 -07001772 // Create constructor for Proxy that must initialize h
1773 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
1774 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04001775 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07001776 Method* proxy_constructor = proxy_direct_methods->Get(2);
1777 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
1778 // code_ too)
1779 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
1780 // Make this constructor public and fix the class to be our Proxy version
1781 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001782 constructor->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001783 // Sanity checks
1784 CHECK(constructor->IsConstructor());
1785 CHECK(constructor->GetName()->Equals("<init>"));
1786 CHECK(constructor->GetSignature()->Equals("(Ljava/lang/reflect/InvocationHandler;)V"));
1787 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04001788 return constructor;
1789}
1790
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001791Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype,
Ian Rogers466bb252011-10-14 03:29:56 -07001792 ObjectArray<Class>* throws) {
1793 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialise
1794 // as necessary
1795 Method* method = down_cast<Method*>(prototype->Clone());
1796
1797 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
1798 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001799 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001800 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001801 method->SetExceptionTypes(throws);
1802
Ian Rogers466bb252011-10-14 03:29:56 -07001803 // At runtime the method looks like a reference and argument saving method, clone the code
1804 // related parameters from this method.
1805 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
1806 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
1807 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
1808 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
1809 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Jesse Wilson95caa792011-10-12 18:14:17 -04001810
Ian Rogers466bb252011-10-14 03:29:56 -07001811 // Basic sanity
1812 DCHECK(method->GetName()->Equals(prototype->GetName()));
1813 DCHECK(method->GetSignature()->Equals(prototype->GetSignature()));
1814 DCHECK(method->GetShorty()->Equals(prototype->GetShorty()));
1815
1816 // More complex sanity - via dex cache
1817 CHECK_EQ(method->GetReturnType(), prototype->GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04001818
1819 return method;
1820}
1821
Brian Carlstrom25c33252011-09-18 15:58:35 -07001822bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001823 CHECK(klass->IsResolved() || klass->IsErroneous())
1824 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001825
Carl Shapirob5573532011-07-12 18:22:59 -07001826 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001827
Brian Carlstrom25c33252011-09-18 15:58:35 -07001828 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001829 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001830 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001831 ObjectLock lock(klass);
1832
Brian Carlstromd1422f82011-09-28 11:37:09 -07001833 if (klass->GetStatus() == Class::kStatusInitialized) {
1834 return true;
1835 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001836
Brian Carlstromd1422f82011-09-28 11:37:09 -07001837 if (klass->IsErroneous()) {
1838 ThrowEarlierClassFailure(klass);
1839 return false;
1840 }
1841
1842 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07001843 VerifyClass(klass);
1844 if (klass->GetStatus() != Class::kStatusVerified) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001845 return false;
1846 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001847 }
1848
Brian Carlstrom25c33252011-09-18 15:58:35 -07001849 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
1850 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001851 // if the class has a <clinit> but we can't run it during compilation,
1852 // don't bother going to kStatusInitializing
Brian Carlstrom25c33252011-09-18 15:58:35 -07001853 return false;
1854 }
1855
Brian Carlstromd1422f82011-09-28 11:37:09 -07001856 // If the class is kStatusInitializing, either this thread is
1857 // initializing higher up the stack or another thread has beat us
1858 // to initializing and we need to wait. Either way, this
1859 // invocation of InitializeClass will not be responsible for
1860 // running <clinit> and will return.
1861 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07001862 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07001863 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001864 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001865 return true;
1866 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07001867 // No. That's fine. Wait for another thread to finish initializing.
1868 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001869 }
1870
1871 if (!ValidateSuperClassDescriptors(klass)) {
1872 klass->SetStatus(Class::kStatusError);
1873 return false;
1874 }
1875
Brian Carlstromd1422f82011-09-28 11:37:09 -07001876 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001877
Elliott Hughesdcc24742011-09-07 14:02:44 -07001878 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001879 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001880 }
1881
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001882 uint64_t t0 = NanoTime();
1883
Brian Carlstrom25c33252011-09-18 15:58:35 -07001884 if (!InitializeSuperClass(klass, can_run_clinit)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001885 return false;
1886 }
1887
1888 InitializeStaticFields(klass);
1889
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001890 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07001891 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001892 }
1893
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001894 uint64_t t1 = NanoTime();
1895
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001896 {
1897 ObjectLock lock(klass);
1898
1899 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001900 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001901 klass->SetStatus(Class::kStatusError);
1902 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001903 RuntimeStats* global_stats = Runtime::Current()->GetStats();
1904 RuntimeStats* thread_stats = self->GetStats();
1905 ++global_stats->class_init_count;
1906 ++thread_stats->class_init_count;
1907 global_stats->class_init_time_ns += (t1 - t0);
1908 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001909 klass->SetStatus(Class::kStatusInitialized);
Brian Carlstromae826982011-11-09 01:33:42 -08001910 if (verbose_) {
1911 LOG(INFO) << "Initialized class " << klass->GetDescriptor()->ToModifiedUtf8()
1912 << " from " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
1913 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001914 }
1915 lock.NotifyAll();
1916 }
1917
1918 return true;
1919}
1920
Brian Carlstromd1422f82011-09-28 11:37:09 -07001921bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
1922 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001923 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001924 lock.Wait();
1925
1926 // When we wake up, repeat the test for init-in-progress. If
1927 // there's an exception pending (only possible if
1928 // "interruptShouldThrow" was set), bail out.
1929 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001930 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07001931 klass->SetStatus(Class::kStatusError);
1932 return false;
1933 }
1934 // Spurious wakeup? Go back to waiting.
1935 if (klass->GetStatus() == Class::kStatusInitializing) {
1936 continue;
1937 }
1938 if (klass->IsErroneous()) {
1939 // The caller wants an exception, but it was thrown in a
1940 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07001941 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
1942 PrettyDescriptor(klass->GetDescriptor()).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001943 return false;
1944 }
1945 if (klass->IsInitialized()) {
1946 return true;
1947 }
1948 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
1949 }
1950 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
1951}
1952
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001953bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
1954 if (klass->IsInterface()) {
1955 return true;
1956 }
1957 // begin with the methods local to the superclass
1958 if (klass->HasSuperClass() &&
1959 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
1960 const Class* super = klass->GetSuperClass();
1961 for (int i = super->NumVirtualMethods() - 1; i >= 0; --i) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001962 const Method* method = super->GetVirtualMethod(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001963 if (method != super->GetVirtualMethod(i) &&
1964 !HasSameMethodDescriptorClasses(method, super, klass)) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001965 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1966
1967 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 -07001968 return false;
1969 }
1970 }
1971 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001972 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
1973 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
1974 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001975 if (klass->GetClassLoader() != interface->GetClassLoader()) {
1976 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001977 const Method* method = interface_entry->GetMethodArray()->Get(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001978 if (!HasSameMethodDescriptorClasses(method, interface,
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001979 method->GetDeclaringClass())) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001980 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1981
1982 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 -07001983 return false;
1984 }
1985 }
1986 }
1987 }
1988 return true;
1989}
1990
1991bool ClassLinker::HasSameMethodDescriptorClasses(const Method* method,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001992 const Class* klass1,
1993 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07001994 if (klass1 == klass2) {
1995 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07001996 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001997 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001998 const DexFile::ProtoId& proto_id = dex_file.GetProtoId(method->GetProtoIdx());
Ian Rogers0571d352011-11-03 19:51:38 -07001999 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2000 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002001 if (descriptor == NULL) {
2002 break;
2003 }
2004 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2005 // Found a non-primitive type.
2006 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
2007 return false;
2008 }
2009 }
2010 }
2011 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002012 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002013 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Brian Carlstrome10b6972011-09-26 13:49:03 -07002014 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002015 return false;
2016 }
2017 }
2018 return true;
2019}
2020
2021// Returns true if classes referenced by the descriptor are the
2022// same classes in klass1 as they are in klass2.
2023bool ClassLinker::HasSameDescriptorClasses(const char* descriptor,
Brian Carlstrom934486c2011-07-12 23:42:50 -07002024 const Class* klass1,
2025 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002026 CHECK(descriptor != NULL);
2027 CHECK(klass1 != NULL);
2028 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002029 if (klass1 == klass2) {
2030 return true;
2031 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002032 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002033 // TODO: found1 == NULL
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002034 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002035 // TODO: found2 == NULL
2036 // TODO: lookup found1 in initiating loader list
2037 if (found1 == NULL || found2 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002038 Thread::Current()->ClearException();
Ian Rogers9074b992011-10-26 17:41:55 -07002039 return found1 == found2;
2040 } else {
2041 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002042 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002043}
2044
Brian Carlstrom25c33252011-09-18 15:58:35 -07002045bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002046 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002047 if (!klass->IsInterface() && klass->HasSuperClass()) {
2048 Class* super_class = klass->GetSuperClass();
2049 if (super_class->GetStatus() != Class::kStatusInitialized) {
2050 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002051 Thread* self = Thread::Current();
2052 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002053 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002054 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002055 // TODO: check for a pending exception
2056 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002057 if (!can_run_clinit) {
2058 // Don't set status to error when we can't run <clinit>.
2059 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing);
2060 klass->SetStatus(Class::kStatusVerified);
2061 return false;
2062 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002063 klass->SetStatus(Class::kStatusError);
2064 klass->NotifyAll();
2065 return false;
2066 }
2067 }
2068 }
2069 return true;
2070}
2071
Brian Carlstrom25c33252011-09-18 15:58:35 -07002072bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002073 CHECK(c != NULL);
2074 if (c->IsInitialized()) {
2075 return true;
2076 }
2077
Elliott Hughes5f791332011-09-15 17:45:30 -07002078 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002079 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002080 InitializeClass(c, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002081 return !self->IsExceptionPending();
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002082}
2083
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002084void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002085 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002086 const ClassLoader* cl = c->GetClassLoader();
2087 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002088 ClassDataItemIterator it(dex_file, class_data);
2089 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2090 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002091 }
2092}
2093
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002094void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002095 size_t num_static_fields = klass->NumStaticFields();
2096 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002097 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002098 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002099 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002100 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002101 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002102 return;
2103 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002104 const DexFile& dex_file = FindDexFile(dex_cache);
Ian Rogers0571d352011-11-03 19:51:38 -07002105 const std::string descriptor(klass->GetDescriptor()->ToModifiedUtf8());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002106 const DexFile::ClassDef* dex_class_def = dex_file.FindClassDef(descriptor);
Brian Carlstromf615a612011-07-23 12:50:34 -07002107 CHECK(dex_class_def != NULL);
Ian Rogers0571d352011-11-03 19:51:38 -07002108 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002109
Ian Rogers0571d352011-11-03 19:51:38 -07002110 if (it.HasNext()) {
2111 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2112 std::map<uint32_t, Field*> field_map;
2113 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2114 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2115 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002116 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002117 }
2118}
2119
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002120bool ClassLinker::LinkClass(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002121 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002122 if (!LinkSuperClass(klass)) {
2123 return false;
2124 }
2125 if (!LinkMethods(klass)) {
2126 return false;
2127 }
2128 if (!LinkInstanceFields(klass)) {
2129 return false;
2130 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002131 if (!LinkStaticFields(klass)) {
2132 return false;
2133 }
2134 CreateReferenceInstanceOffsets(klass);
2135 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002136 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2137 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002138 return true;
2139}
2140
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002141bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002142 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers0571d352011-11-03 19:51:38 -07002143 if (klass->GetSuperClassTypeIdx() != DexFile::kDexNoIndex16) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002144 Class* super_class = ResolveType(dex_file, klass->GetSuperClassTypeIdx(), klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002145 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002146 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002147 return false;
2148 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002149 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002150 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002151 for (size_t i = 0; i < klass->NumInterfaces(); ++i) {
2152 uint32_t idx = klass->GetInterfacesTypeIdx()->Get(i);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002153 Class* interface = ResolveType(dex_file, idx, klass.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002154 klass->SetInterface(i, interface);
2155 if (interface == NULL) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002156 DCHECK(Thread::Current()->IsExceptionPending());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002157 return false;
2158 }
2159 // Verify
2160 if (!klass->CanAccess(interface)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002161 // TODO: the RI seemed to ignore this in my testing.
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002162 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002163 "Interface %s implemented by class %s is inaccessible",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002164 PrettyDescriptor(interface->GetDescriptor()).c_str(),
2165 PrettyDescriptor(klass->GetDescriptor()).c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002166 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002167 }
2168 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002169 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002170 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002171 return true;
2172}
2173
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002174bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002175 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002176 Class* super = klass->GetSuperClass();
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07002177 if (klass->GetDescriptor()->Equals("Ljava/lang/Object;")) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002178 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002179 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002180 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002181 return false;
2182 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002183 return true;
2184 }
2185 if (super == NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002186 ThrowLinkageError("No superclass defined for class %s",
2187 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002188 return false;
2189 }
2190 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002191 if (super->IsFinal() || super->IsInterface()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002192 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002193 "Superclass %s of %s is %s",
2194 PrettyDescriptor(super->GetDescriptor()).c_str(),
2195 PrettyDescriptor(klass->GetDescriptor()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002196 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002197 return false;
2198 }
2199 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002200 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002201 "Superclass %s is inaccessible by %s",
2202 PrettyDescriptor(super->GetDescriptor()).c_str(),
2203 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002204 return false;
2205 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002206
2207 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2208 if (super->IsFinalizable()) {
2209 klass->SetFinalizable();
2210 }
2211
Elliott Hughes2da50362011-10-10 16:57:08 -07002212 // Inherit reference flags (if any) from the superclass.
2213 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2214 if (reference_flags != 0) {
2215 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2216 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002217 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002218 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002219 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
2220 PrettyDescriptor(klass->GetDescriptor()).c_str());
2221 return false;
2222 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002223
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002224#ifndef NDEBUG
2225 // Ensure super classes are fully resolved prior to resolving fields..
2226 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002227 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002228 super = super->GetSuperClass();
2229 }
2230#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002231 return true;
2232}
2233
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002234// Populate the class vtable and itable. Compute return type indices.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002235bool ClassLinker::LinkMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002236 if (klass->IsInterface()) {
2237 // No vtable.
2238 size_t count = klass->NumVirtualMethods();
2239 if (!IsUint(16, count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002240 ThrowClassFormatError("Too many methods on interface: %d", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002241 return false;
2242 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002243 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002244 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002245 }
jeffhaobdb76512011-09-07 11:43:16 -07002246 // Link interface method tables
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002247 return LinkInterfaceMethods(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002248 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002249 // Link virtual and interface method tables
2250 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002251 }
2252 return true;
2253}
2254
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002255bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002256 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002257 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2258 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002259 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002260 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002261 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002262 // See if any of our virtual methods override the superclass.
2263 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002264 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002265 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002266 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002267 Method* super_method = vtable->Get(j);
Ian Rogers466bb252011-10-14 03:29:56 -07002268 if (local_method->HasSameNameAndSignature(super_method)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002269 // Verify
2270 if (super_method->IsFinal()) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002271 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002272 PrettyDescriptor(klass->GetDescriptor()).c_str(),
2273 local_method->GetName()->ToModifiedUtf8().c_str(),
2274 PrettyDescriptor(super_method->GetDeclaringClass()->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002275 return false;
2276 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002277 vtable->Set(j, local_method);
2278 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002279 break;
2280 }
2281 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002282 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002283 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002284 vtable->Set(actual_count, local_method);
2285 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002286 actual_count += 1;
2287 }
2288 }
2289 if (!IsUint(16, actual_count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002290 ThrowClassFormatError("Too many methods defined on class: %d", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002291 return false;
2292 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002293 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002294 CHECK_LE(actual_count, max_count);
2295 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002296 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002297 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002298 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002299 } else {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07002300 CHECK(klass->GetDescriptor()->Equals("Ljava/lang/Object;"));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002301 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002302 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002303 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002304 return false;
2305 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002306 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002307 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002308 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2309 vtable->Set(i, virtual_method);
2310 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002311 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002312 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002313 }
2314 return true;
2315}
2316
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002317bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002318 size_t super_ifcount;
2319 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002320 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002321 } else {
2322 super_ifcount = 0;
2323 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002324 size_t ifcount = super_ifcount;
2325 ifcount += klass->NumInterfaces();
2326 for (size_t i = 0; i < klass->NumInterfaces(); i++) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002327 ifcount += klass->GetInterface(i)->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002328 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002329 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002330 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002331 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002332 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002333 return true;
2334 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002335 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002336 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002337 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2338 for (size_t i = 0; i < super_ifcount; i++) {
2339 iftable->Set(i, AllocInterfaceEntry(super_iftable->Get(i)->GetInterface()));
2340 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002341 }
2342 // Flatten the interface inheritance hierarchy.
2343 size_t idx = super_ifcount;
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002344 for (size_t i = 0; i < klass->NumInterfaces(); i++) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002345 Class* interface = klass->GetInterface(i);
2346 DCHECK(interface != NULL);
2347 if (!interface->IsInterface()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002348 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002349 "Class %s implements non-interface class %s",
2350 PrettyDescriptor(klass->GetDescriptor()).c_str(),
2351 PrettyDescriptor(interface->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002352 return false;
2353 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002354 // Add this interface.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002355 iftable->Set(idx++, AllocInterfaceEntry(interface));
Elliott Hughes4681c802011-09-25 18:04:37 -07002356 // Add this interface's superinterfaces.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002357 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2358 iftable->Set(idx++, AllocInterfaceEntry(interface->GetIfTable()->Get(j)->GetInterface()));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002359 }
2360 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002361 klass->SetIfTable(iftable.get());
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002362 CHECK_EQ(idx, ifcount);
Elliott Hughes4681c802011-09-25 18:04:37 -07002363
2364 // If we're an interface, we don't need the vtable pointers, so we're done.
2365 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002366 return true;
2367 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002368 std::vector<Method*> miranda_list;
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002369 for (size_t i = 0; i < ifcount; ++i) {
2370 InterfaceEntry* interface_entry = iftable->Get(i);
2371 Class* interface = interface_entry->GetInterface();
2372 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2373 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002374 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002375 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2376 Method* interface_method = interface->GetVirtualMethod(j);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002377 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002378 // For each method listed in the interface's method list, find the
2379 // matching method in our class's method list. We want to favor the
2380 // subclass over the superclass, which just requires walking
2381 // back from the end of the vtable. (This only matters if the
2382 // superclass defines a private method and this class redefines
2383 // it -- otherwise it would use the same vtable slot. In .dex files
2384 // those don't end up in the virtual method table, so it shouldn't
2385 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002386 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2387 Method* vtable_method = vtable->Get(k);
Ian Rogers466bb252011-10-14 03:29:56 -07002388 if (interface_method->HasSameNameAndSignature(vtable_method)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002389 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002390 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002391 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002392 return false;
2393 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002394 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002395 break;
2396 }
2397 }
2398 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002399 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002400 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers466bb252011-10-14 03:29:56 -07002401 if (miranda_list[mir]->HasSameNameAndSignature(interface_method)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002402 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002403 break;
2404 }
2405 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002406 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002407 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002408 miranda_method.reset(AllocMethod());
2409 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2410 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002411 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002412 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002413 }
2414 }
2415 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002416 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002417 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002418 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002419 klass->SetVirtualMethods((old_method_count == 0)
2420 ? AllocObjectArray<Method>(new_method_count)
2421 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002422
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002423 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2424 CHECK(vtable != NULL);
2425 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002426 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002427 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002428 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002429 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002430 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002431 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2432 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2433 klass->SetVirtualMethod(old_method_count + i, method);
2434 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002435 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002436 // TODO: do not assign to the vtable field until it is fully constructed.
2437 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002438 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002439
2440 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2441 for (int i = 0; i < vtable->GetLength(); ++i) {
2442 CHECK(vtable->Get(i) != NULL);
2443 }
2444
2445// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2446
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002447 return true;
2448}
2449
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002450bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2451 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002452 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002453}
2454
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002455bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2456 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002457 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002458 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002459 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002460 return success;
2461}
2462
Brian Carlstromdbc05252011-09-09 01:59:59 -07002463struct LinkFieldsComparator {
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002464 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002465 // First come reference fields, then 64-bit, and finally 32-bit
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002466 Primitive::Type type1 = field1->GetPrimitiveType();
2467 Primitive::Type type2 = field2->GetPrimitiveType();
2468 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2469 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2470 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2471 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002472 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2473 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2474 if (order1 != order2) {
2475 return order1 < order2;
2476 }
2477
2478 // same basic group? then sort by string.
2479 std::string name1 = field1->GetName()->ToModifiedUtf8();
2480 std::string name2 = field2->GetName()->ToModifiedUtf8();
2481 return name1 < name2;
2482 }
2483};
2484
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002485bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002486 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002487 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002488
2489 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002490 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002491
2492 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002493 size_t size;
2494 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002495 if (is_static) {
2496 size = klass->GetClassSize();
2497 field_offset = Class::FieldsOffset();
2498 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002499 Class* super_class = klass->GetSuperClass();
2500 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002501 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002502 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002503 }
2504 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002505 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002506
Brian Carlstromdbc05252011-09-09 01:59:59 -07002507 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002508
Brian Carlstromdbc05252011-09-09 01:59:59 -07002509 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002510 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002511 std::deque<Field*> grouped_and_sorted_fields;
2512 for (size_t i = 0; i < num_fields; i++) {
2513 grouped_and_sorted_fields.push_back(fields->Get(i));
2514 }
2515 std::sort(grouped_and_sorted_fields.begin(),
2516 grouped_and_sorted_fields.end(),
2517 LinkFieldsComparator());
2518
2519 // References should be at the front.
2520 size_t current_field = 0;
2521 size_t num_reference_fields = 0;
2522 for (; current_field < num_fields; current_field++) {
2523 Field* field = grouped_and_sorted_fields.front();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002524 Primitive::Type type = field->GetPrimitiveType();
2525 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002526 if (isPrimitive) {
2527 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002528 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002529 grouped_and_sorted_fields.pop_front();
2530 num_reference_fields++;
2531 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002532 field->SetOffset(field_offset);
2533 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002534 }
2535
2536 // Now we want to pack all of the double-wide fields together. If
2537 // we're not aligned, though, we want to shuffle one 32-bit field
2538 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002539 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002540 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2541 Field* field = grouped_and_sorted_fields[i];
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002542 Primitive::Type type = field->GetPrimitiveType();
2543 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2544 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002545 continue;
2546 }
2547 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002548 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002549 // drop the consumed field
2550 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2551 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002552 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002553 // whether we found a 32-bit field for padding or not, we advance
2554 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002555 }
2556
2557 // Alignment is good, shuffle any double-wide fields forward, and
2558 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002559 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002560 while (!grouped_and_sorted_fields.empty()) {
2561 Field* field = grouped_and_sorted_fields.front();
2562 grouped_and_sorted_fields.pop_front();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002563 Primitive::Type type = field->GetPrimitiveType();
2564 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002565 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002566 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002567 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002568 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002569 ? sizeof(uint64_t)
2570 : sizeof(uint32_t)));
2571 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002572 }
2573
Elliott Hughesadb460d2011-10-05 17:02:34 -07002574 // 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 -07002575 if (!is_static && klass->GetDescriptor()->Equals("Ljava/lang/ref/Reference;")) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002576 // We know there are no non-reference fields in the Reference classes, and we know
2577 // that 'referent' is alphabetically last, so this is easy...
2578 CHECK_EQ(num_reference_fields, num_fields);
2579 CHECK(fields->Get(num_fields - 1)->GetName()->Equals("referent"));
2580 --num_reference_fields;
2581 }
2582
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002583#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002584 // Make sure that all reference fields appear before
2585 // non-reference fields, and all double-wide fields are aligned.
2586 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002587 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002588 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002589 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002590 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002591 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002592 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002593 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2594 }
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002595 Primitive::Type type = field->GetPrimitiveType();
2596 bool is_primitive = type != Primitive::kPrimNot;
Elliott Hughesadb460d2011-10-05 17:02:34 -07002597 if (klass->GetDescriptor()->Equals("Ljava/lang/ref/Reference;") && field->GetName()->Equals("referent")) {
2598 is_primitive = true; // We lied above, so we have to expect a lie here.
2599 }
2600 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002601 if (!seen_non_ref) {
2602 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002603 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002604 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002605 } else {
2606 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002607 }
2608 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002609 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002610 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002611 }
2612#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002613 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002614 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002615 if (is_static) {
2616 klass->SetNumReferenceStaticFields(num_reference_fields);
2617 klass->SetClassSize(size);
2618 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002619 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002620 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002621 klass->SetObjectSize(size);
2622 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002623 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002624 return true;
2625}
2626
2627// Set the bitmap of reference offsets, refOffsets, from the ifields
2628// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002629void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002630 uint32_t reference_offsets = 0;
2631 Class* super_class = klass->GetSuperClass();
2632 if (super_class != NULL) {
2633 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002634 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002635 if (reference_offsets == CLASS_WALK_SUPER) {
2636 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002637 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002638 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002639 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002640 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002641}
2642
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002643void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002644 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002645}
2646
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002647void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002648 uint32_t reference_offsets) {
2649 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002650 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
2651 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002652 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002653 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002654 // All of the fields that contain object references are guaranteed
2655 // to be at the beginning of the fields list.
2656 for (size_t i = 0; i < num_reference_fields; ++i) {
2657 // Note that byte_offset is the offset from the beginning of
2658 // object, not the offset into instance data
2659 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002660 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002661 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
2662 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
2663 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002664 CHECK_NE(new_bit, 0U);
2665 reference_offsets |= new_bit;
2666 } else {
2667 reference_offsets = CLASS_WALK_SUPER;
2668 break;
2669 }
2670 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002671 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002672 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002673 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002674 } else {
2675 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002676 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002677}
2678
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002679String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002680 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002681 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002682 if (resolved != NULL) {
2683 return resolved;
2684 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002685 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
2686 int32_t utf16_length = dex_file.GetStringLength(string_id);
2687 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07002688 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002689 dex_cache->SetResolvedString(string_idx, string);
2690 return string;
2691}
2692
2693Class* ClassLinker::ResolveType(const DexFile& dex_file,
2694 uint32_t type_idx,
2695 DexCache* dex_cache,
2696 const ClassLoader* class_loader) {
2697 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002698 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07002699 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002700 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002701 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05002702 // TODO: we used to throw here if resolved's class loader was not the
2703 // boot class loader. This was to permit different classes with the
2704 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002705 dex_cache->SetResolvedType(type_idx, resolved);
2706 } else {
2707 DCHECK(Thread::Current()->IsExceptionPending());
2708 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002709 }
2710 return resolved;
2711}
2712
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002713Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
2714 uint32_t method_idx,
2715 DexCache* dex_cache,
2716 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002717 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002718 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
2719 if (resolved != NULL) {
2720 return resolved;
2721 }
2722 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2723 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
2724 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002725 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002726 return NULL;
2727 }
2728
Ian Rogers0571d352011-11-03 19:51:38 -07002729 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
2730 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002731 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002732 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002733 } else if (klass->IsInterface()) {
2734 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002735 } else {
2736 resolved = klass->FindVirtualMethod(name, signature);
2737 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002738 if (resolved != NULL) {
2739 dex_cache->SetResolvedMethod(method_idx, resolved);
2740 } else {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002741 ThrowNoSuchMethodError(is_direct ? "direct" : "virtual", klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002742 }
2743 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002744}
2745
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002746Field* ClassLinker::ResolveField(const DexFile& dex_file,
2747 uint32_t field_idx,
2748 DexCache* dex_cache,
2749 const ClassLoader* class_loader,
2750 bool is_static) {
2751 Field* resolved = dex_cache->GetResolvedField(field_idx);
2752 if (resolved != NULL) {
2753 return resolved;
2754 }
2755 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
2756 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
2757 if (klass == NULL) {
2758 return NULL;
2759 }
2760
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002761 const char* name = dex_file.GetFieldName(field_id);
2762 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002763 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002764 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002765 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002766 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002767 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002768 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002769 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002770 } else {
Jesse Wilson47daf872011-11-23 11:42:45 -05002771 // TODO: this check fails when the app class path contains a class from the boot class path
2772 CHECK(Thread::Current()->IsExceptionPending())
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002773 << PrettyClass(klass) << " " << name << " " << type << " " << is_static;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002774 }
2775 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002776}
2777
Ian Rogersad25ac52011-10-04 19:13:33 -07002778const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
2779 Class* declaring_class = referrer->GetDeclaringClass();
2780 DexCache* dex_cache = declaring_class->GetDexCache();
2781 const DexFile& dex_file = FindDexFile(dex_cache);
2782 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2783 return dex_file.GetShorty(method_id.proto_idx_);
2784}
2785
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002786void ClassLinker::DumpAllClasses(int flags) const {
2787 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
2788 // lock held, because it might need to resolve a field's type, which would try to take the lock.
2789 std::vector<Class*> all_classes;
2790 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002791 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002792 typedef Table::const_iterator It; // TODO: C++0x auto
2793 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
2794 all_classes.push_back(it->second);
2795 }
Ian Rogers5d76c432011-10-31 21:42:49 -07002796 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
2797 all_classes.push_back(it->second);
2798 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002799 }
2800
2801 for (size_t i = 0; i < all_classes.size(); ++i) {
2802 all_classes[i]->DumpClass(std::cerr, flags);
2803 }
2804}
2805
Elliott Hughescac6cc72011-11-03 20:31:21 -07002806void ClassLinker::DumpForSigQuit(std::ostream& os) const {
2807 MutexLock mu(classes_lock_);
2808 os << "Loaded classes: " << image_classes_.size() << " image classes; "
2809 << classes_.size() << " allocated classes\n";
2810}
2811
Elliott Hughese27955c2011-08-26 15:21:24 -07002812size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002813 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07002814 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07002815}
2816
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002817pid_t ClassLinker::GetClassesLockOwner() {
2818 return classes_lock_.GetOwner();
2819}
2820
2821pid_t ClassLinker::GetDexLockOwner() {
2822 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07002823}
2824
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002825} // namespace art