blob: 44ca80c0c4579c8b9eb5080a8ba08ffd962502f6 [file] [log] [blame]
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001// Copyright 2011 Google Inc. All Rights Reserved.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004
Brian Carlstromdbc05252011-09-09 01:59:59 -07005#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07006#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -07008#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07009
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070010#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070011#include "class_loader.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070012#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070013#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070014#include "dex_verifier.h"
15#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070016#include "intern_table.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "logging.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070018#include "monitor.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070019#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070020#include "object.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070021#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070022#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070023#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070024#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070025#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070026#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070028#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070029#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070030
31namespace art {
32
Elliott Hughes4a2b4172011-09-20 17:08:25 -070033namespace {
34
Elliott Hughes362f9bc2011-10-17 18:56:41 -070035void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070036void ThrowNoClassDefFoundError(const char* fmt, ...) {
37 va_list args;
38 va_start(args, fmt);
39 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
40 va_end(args);
41}
42
Elliott Hughes362f9bc2011-10-17 18:56:41 -070043void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070044void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070045 va_list args;
46 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070047 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070048 va_end(args);
49}
50
Elliott Hughes362f9bc2011-10-17 18:56:41 -070051void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070052void ThrowLinkageError(const char* fmt, ...) {
53 va_list args;
54 va_start(args, fmt);
55 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
56 va_end(args);
57}
58
Elliott Hughescc5f9a92011-09-28 19:17:29 -070059void ThrowNoSuchMethodError(const char* kind,
60 Class* c, const StringPiece& name, const StringPiece& signature) {
61 DexCache* dex_cache = c->GetDexCache();
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070062 std::ostringstream msg;
Elliott Hughescc5f9a92011-09-28 19:17:29 -070063 msg << "no " << kind << " method " << name << "." << signature
64 << " in class " << c->GetDescriptor()->ToModifiedUtf8()
65 << " or its superclasses";
66 if (dex_cache) {
67 msg << " (defined in " << dex_cache->GetLocation()->ToModifiedUtf8() << ")";
68 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070069 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070070}
71
Elliott Hughes4a2b4172011-09-20 17:08:25 -070072void ThrowEarlierClassFailure(Class* c) {
73 /*
74 * The class failed to initialize on a previous attempt, so we want to throw
75 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
76 * failed in verification, in which case v2 5.4.1 says we need to re-throw
77 * the previous error.
78 */
79 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
80
81 if (c->GetVerifyErrorClass() != NULL) {
82 // TODO: change the verifier to store an _instance_, with a useful detail message?
83 std::string error_descriptor(c->GetVerifyErrorClass()->GetDescriptor()->ToModifiedUtf8());
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070084 Thread::Current()->ThrowNewException(error_descriptor.c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -070085 PrettyDescriptor(c->GetDescriptor()).c_str());
86 } else {
87 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c->GetDescriptor()).c_str());
88 }
89}
90
Elliott Hughes4d0207c2011-10-03 19:14:34 -070091void WrapExceptionInInitializer() {
92 JNIEnv* env = Thread::Current()->GetJniEnv();
93
94 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
95 CHECK(cause.get() != NULL);
96
97 env->ExceptionClear();
98
99 // TODO: add java.lang.Error to JniConstants?
100 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
101 CHECK(error_class.get() != NULL);
102 if (env->IsInstanceOf(cause.get(), error_class.get())) {
103 // We only wrap non-Error exceptions; an Error can just be used as-is.
104 env->Throw(cause.get());
105 return;
106 }
107
108 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
109 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
110 CHECK(eiie_class.get() != NULL);
111
112 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
113 CHECK(mid != NULL);
114
115 ScopedLocalRef<jthrowable> eiie(env,
116 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
117 env->Throw(eiie.get());
118}
119
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700120} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700121
Elliott Hughes418d20f2011-09-22 14:00:39 -0700122const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700123 "Ljava/lang/Class;",
124 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700125 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700126 "[Ljava/lang/Object;",
127 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700128 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700129 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700130 "Ljava/lang/reflect/Field;",
131 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700132 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700133 "Ljava/lang/ClassLoader;",
134 "Ldalvik/system/BaseDexClassLoader;",
135 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700136 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700137 "Z",
138 "B",
139 "C",
140 "D",
141 "F",
142 "I",
143 "J",
144 "S",
145 "V",
146 "[Z",
147 "[B",
148 "[C",
149 "[D",
150 "[F",
151 "[I",
152 "[J",
153 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700154 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700155};
156
Elliott Hughes5f791332011-09-15 17:45:30 -0700157class ObjectLock {
158 public:
159 explicit ObjectLock(Object* object) : self_(Thread::Current()), obj_(object) {
160 CHECK(object != NULL);
161 obj_->MonitorEnter(self_);
162 }
163
164 ~ObjectLock() {
165 obj_->MonitorExit(self_);
166 }
167
168 void Wait() {
169 return Monitor::Wait(self_, obj_, 0, 0, false);
170 }
171
172 void Notify() {
173 obj_->Notify();
174 }
175
176 void NotifyAll() {
177 obj_->NotifyAll();
178 }
179
180 private:
181 Thread* self_;
182 Object* obj_;
183 DISALLOW_COPY_AND_ASSIGN(ObjectLock);
184};
185
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700186ClassLinker* ClassLinker::Create(const std::string& boot_class_path,
187 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700188 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700189 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700190 class_linker->Init(boot_class_path);
191 return class_linker.release();
192}
193
194ClassLinker* ClassLinker::Create(InternTable* intern_table) {
195 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
196 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700197 return class_linker.release();
198}
199
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700200ClassLinker::ClassLinker(InternTable* intern_table)
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700201 : dex_lock_("ClassLinker dex lock"),
202 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700203 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700204 array_interfaces_(NULL),
205 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700206 init_done_(false),
207 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700208 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700209}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700210
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700211void CreateClassPath(const std::string& class_path,
212 std::vector<const DexFile*>& class_path_vector) {
213 std::vector<std::string> parsed;
214 Split(class_path, ':', parsed);
215 for (size_t i = 0; i < parsed.size(); ++i) {
216 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
217 if (dex_file != NULL) {
218 class_path_vector.push_back(dex_file);
219 }
220 }
221}
222
223void ClassLinker::Init(const std::string& boot_class_path) {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700224 const Runtime* runtime = Runtime::Current();
225 if (runtime->IsVerboseStartup()) {
226 LOG(INFO) << "ClassLinker::InitFrom entering";
227 }
228
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700229 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700230
Elliott Hughes30646832011-10-13 16:59:46 -0700231 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700232 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
233 CHECK(java_lang_Class.get() != NULL);
234 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700235 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700236 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700237
Elliott Hughes418d20f2011-09-22 14:00:39 -0700238 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700239 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
240 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700241
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700242 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700243 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
244 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700245 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700246 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700247 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700248
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700249 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700250 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
251 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700252
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700253 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700254 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700255
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700256 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700257 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
258 char_array_class->SetComponentType(char_class.get());
259 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700260
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700261 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700262 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
263 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700264 java_lang_String->SetObjectSize(sizeof(String));
265 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400266
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700267 // Backfill Class descriptors missing until this point
Brian Carlstromc74255f2011-09-11 22:47:39 -0700268 java_lang_Class->SetDescriptor(intern_table_->InternStrong("Ljava/lang/Class;"));
269 java_lang_Object->SetDescriptor(intern_table_->InternStrong("Ljava/lang/Object;"));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700270 class_array_class->SetDescriptor(intern_table_->InternStrong("[Ljava/lang/Class;"));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700271 object_array_class->SetDescriptor(intern_table_->InternStrong("[Ljava/lang/Object;"));
272 java_lang_String->SetDescriptor(intern_table_->InternStrong("Ljava/lang/String;"));
273 char_array_class->SetDescriptor(intern_table_->InternStrong("[C"));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700274
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700275 // Create storage for root classes, save away our work so far (requires
276 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700277 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700278 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700279 SetClassRoot(kJavaLangClass, java_lang_Class.get());
280 SetClassRoot(kJavaLangObject, java_lang_Object.get());
281 SetClassRoot(kClassArrayClass, class_array_class.get());
282 SetClassRoot(kObjectArrayClass, object_array_class.get());
283 SetClassRoot(kCharArrayClass, char_array_class.get());
284 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700285
286 // Setup the primitive type classes.
287 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Class::kPrimBoolean));
288 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Class::kPrimByte));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700289 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Class::kPrimShort));
290 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Class::kPrimInt));
291 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Class::kPrimLong));
292 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Class::kPrimFloat));
293 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Class::kPrimDouble));
294 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Class::kPrimVoid));
295
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296 // Create array interface entries to populate once we can load system classes
Elliott Hughes418d20f2011-09-22 14:00:39 -0700297 array_interfaces_ = AllocClassArray(2);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700298 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299
300 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700301 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstromc74255f2011-09-11 22:47:39 -0700302 int_array_class->SetDescriptor(intern_table_->InternStrong("[I"));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700303 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700304 IntArray::SetArrayClass(int_array_class.get());
305 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700306
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700307 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700308
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700309 // setup boot_class_path_ and register class_path now that we can
310 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700311 std::vector<const DexFile*> boot_class_path_vector;
312 CreateClassPath(boot_class_path, boot_class_path_vector);
313 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
314 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700315 CHECK(dex_file != NULL);
316 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700317 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700318
Elliott Hughes80609252011-09-23 17:24:51 -0700319 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Elliott Hughes80609252011-09-23 17:24:51 -0700321 java_lang_reflect_Constructor->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Constructor;"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700322 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700323 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700325 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
326
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700327 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
328 CHECK(java_lang_reflect_Field.get() != NULL);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700329 java_lang_reflect_Field->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Field;"));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700330 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Elliott Hughes80609252011-09-23 17:24:51 -0700336 java_lang_reflect_Method->SetDescriptor(intern_table_->InternStrong("Ljava/lang/reflect/Method;"));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700337 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700338 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700339 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700340 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700341 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700342
343 // now we can use FindSystemClass
344
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700345 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700346 InitializePrimitiveClass(char_class.get(), "C", Class::kPrimChar);
347 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700348
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700349 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700350 java_lang_Object->SetStatus(Class::kStatusNotReady);
351 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700352 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700353 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
354 java_lang_String->SetStatus(Class::kStatusNotReady);
355 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700356 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700357 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
358
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700359 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700360 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
361 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
362
363 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
364 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
365
366 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700367 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700368
369 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
370 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
371
372 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700373 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700374
375 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
376 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
377
378 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
379 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
380
381 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
382 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
383
Elliott Hughes418d20f2011-09-22 14:00:39 -0700384 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700385 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700386
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700387 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700388 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700389
390 // Setup the single, global copies of "interfaces" and "iftable"
391 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
392 CHECK(java_lang_Cloneable != NULL);
393 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
394 CHECK(java_io_Serializable != NULL);
395 CHECK(array_interfaces_ != NULL);
396 array_interfaces_->Set(0, java_lang_Cloneable);
397 array_interfaces_->Set(1, java_io_Serializable);
398 // We assume that Cloneable/Serializable don't have superinterfaces --
399 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700400 // supers as well.
401 array_iftable_->Set(0, AllocInterfaceEntry(array_interfaces_->Get(0)));
402 array_iftable_->Set(1, AllocInterfaceEntry(array_interfaces_->Get(1)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700403
Elliott Hughes418d20f2011-09-22 14:00:39 -0700404 // Sanity check Class[] and Object[]'s interfaces
405 CHECK_EQ(java_lang_Cloneable, class_array_class->GetInterface(0));
406 CHECK_EQ(java_io_Serializable, class_array_class->GetInterface(1));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700407 CHECK_EQ(java_lang_Cloneable, object_array_class->GetInterface(0));
408 CHECK_EQ(java_io_Serializable, object_array_class->GetInterface(1));
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700409
Elliott Hughes80609252011-09-23 17:24:51 -0700410 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700411 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700412 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700413 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700414
Elliott Hughes80609252011-09-23 17:24:51 -0700415 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
416 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700417 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700418
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700419 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700420 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700421 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700422
423 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700424 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700425 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700426
Ian Rogers466bb252011-10-14 03:29:56 -0700427 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
428
429 // Create java.lang.reflect.Proxy root
430 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
431 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
432
Brian Carlstrom1f870082011-08-23 16:02:11 -0700433 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700434 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
435 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700436 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 java_lang_ref_FinalizerReference->SetAccessFlags(
438 java_lang_ref_FinalizerReference->GetAccessFlags() |
439 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700440 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700441 java_lang_ref_PhantomReference->SetAccessFlags(
442 java_lang_ref_PhantomReference->GetAccessFlags() |
443 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700444 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700445 java_lang_ref_SoftReference->SetAccessFlags(
446 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700447 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700448 java_lang_ref_WeakReference->SetAccessFlags(
449 java_lang_ref_WeakReference->GetAccessFlags() |
450 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700451
Brian Carlstromaded5f72011-10-07 17:15:04 -0700452 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700453 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700454 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700455 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
456
457 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
458 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
459 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
460
461 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
462 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
463 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
464 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
465
466 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700467 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
468 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700469 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700470
Brian Carlstroma663ea52011-08-19 23:33:41 -0700471 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700472
473 if (runtime->IsVerboseStartup()) {
474 LOG(INFO) << "ClassLinker::InitFrom exiting";
475 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700476}
477
478void ClassLinker::FinishInit() {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700479 const Runtime* runtime = Runtime::Current();
480 if (runtime->IsVerboseStartup()) {
481 LOG(INFO) << "ClassLinker::FinishInit entering";
482 }
Brian Carlstrom16192862011-09-12 17:50:06 -0700483
484 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700485 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700486 // as the types of the field can't be resolved prior to the runtime being
487 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700488 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700489 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700490 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
491
Elliott Hughesadb460d2011-10-05 17:02:34 -0700492 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
493
Brian Carlstrom16192862011-09-12 17:50:06 -0700494 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
495 CHECK(pendingNext->GetName()->Equals("pendingNext"));
496 CHECK_EQ(ResolveType(pendingNext->GetTypeIdx(), pendingNext), java_lang_ref_Reference);
497
498 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
499 CHECK(queue->GetName()->Equals("queue"));
Elliott Hughesadb460d2011-10-05 17:02:34 -0700500 CHECK_EQ(ResolveType(queue->GetTypeIdx(), queue), java_lang_ref_ReferenceQueue);
Brian Carlstrom16192862011-09-12 17:50:06 -0700501
502 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
503 CHECK(queueNext->GetName()->Equals("queueNext"));
504 CHECK_EQ(ResolveType(queueNext->GetTypeIdx(), queueNext), java_lang_ref_Reference);
505
506 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
507 CHECK(referent->GetName()->Equals("referent"));
508 CHECK_EQ(ResolveType(referent->GetTypeIdx(), referent), GetClassRoot(kJavaLangObject));
509
510 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
511 CHECK(zombie->GetName()->Equals("zombie"));
512 CHECK_EQ(ResolveType(zombie->GetTypeIdx(), zombie), GetClassRoot(kJavaLangObject));
513
514 Heap::SetReferenceOffsets(referent->GetOffset(),
515 queue->GetOffset(),
516 queueNext->GetOffset(),
517 pendingNext->GetOffset(),
518 zombie->GetOffset());
519
Brian Carlstroma663ea52011-08-19 23:33:41 -0700520 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700521 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700522 ClassRoot class_root = static_cast<ClassRoot>(i);
523 Class* klass = GetClassRoot(class_root);
524 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700525 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700526 // note SetClassRoot does additional validation.
527 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700528 }
529
Elliott Hughes92f14b22011-10-06 12:29:54 -0700530 CHECK(array_iftable_ != NULL);
531 CHECK(array_interfaces_ != NULL);
532
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700533 // disable the slow paths in FindClass and CreatePrimitiveClass now
534 // that Object, Class, and Object[] are setup
535 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700536
537 if (runtime->IsVerboseStartup()) {
538 LOG(INFO) << "ClassLinker::FinishInit exiting";
539 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700540}
541
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700542void ClassLinker::RunRootClinits() {
543 Thread* self = Thread::Current();
544 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
545 Class* c = GetClassRoot(ClassRoot(i));
546 if (!c->IsArrayClass() && !c->IsPrimitive()) {
547 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700548 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700549 }
550 }
551}
552
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700553OatFile* ClassLinker::OpenOat(const Space* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700554 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700555 const Runtime* runtime = Runtime::Current();
556 if (runtime->IsVerboseStartup()) {
557 LOG(INFO) << "ClassLinker::OpenOat entering";
558 }
559 const ImageHeader& image_header = space->GetImageHeader();
560 String* oat_location = image_header.GetImageRoot(ImageHeader::kOatLocation)->AsString();
561 std::string oat_filename;
562 oat_filename += runtime->GetHostPrefix();
563 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma9f19782011-10-13 00:14:47 -0700564 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBaseAddr());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700565 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700566 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700567 return NULL;
568 }
569 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
570 uint32_t image_oat_checksum = image_header.GetOatChecksum();
571 if (oat_checksum != image_oat_checksum) {
572 LOG(ERROR) << "Failed to match oat filechecksum " << std::hex << oat_checksum
573 << " to expected oat checksum " << std::hex << oat_checksum
574 << " in image";
575 return NULL;
576 }
577 oat_files_.push_back(oat_file);
578 if (runtime->IsVerboseStartup()) {
579 LOG(INFO) << "ClassLinker::OpenOat exiting";
580 }
581 return oat_file;
582}
583
Brian Carlstromaded5f72011-10-07 17:15:04 -0700584const OatFile* ClassLinker::FindOatFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700585 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700586 // TODO: check if dex_file matches an OatDexFile location and checksum
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700587 return FindOatFile(OatFile::DexFileToOatFilename(dex_file));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700588}
589
Brian Carlstromfad71432011-10-16 20:25:10 -0700590const OatFile* ClassLinker::FindOpenedOatFile(const std::string& location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700591 for (size_t i = 0; i < oat_files_.size(); i++) {
592 const OatFile* oat_file = oat_files_[i];
593 DCHECK(oat_file != NULL);
594 if (oat_file->GetLocation() == location) {
595 return oat_file;
596 }
597 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700598 return NULL;
599}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700600
Brian Carlstromfad71432011-10-16 20:25:10 -0700601const OatFile* ClassLinker::FindOatFile(const std::string& location) {
602 const OatFile* oat_file = FindOpenedOatFile(location);
603 if (oat_file != NULL) {
604 return oat_file;
605 }
606
607 oat_file = OatFile::Open(location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700608 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700609 if (location.empty() || location[0] != '/') {
610 LOG(ERROR) << "Failed to open oat file from " << location;
611 return NULL;
612 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700613
Brian Carlstroma9f19782011-10-13 00:14:47 -0700614 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700615 std::string cache_location = GetArtCacheOatFilenameOrDie(location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700616 oat_file = FindOpenedOatFile(cache_location);
617 if (oat_file != NULL) {
618 return oat_file;
619 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700620 oat_file = OatFile::Open(cache_location, "", NULL);
621 if (oat_file == NULL) {
622 LOG(ERROR) << "Failed to open oat file from " << location << " or " << cache_location << ".";
623 return NULL;
624 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700625 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700626
627 CHECK(oat_file != NULL) << location;
628 oat_files_.push_back(oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700629 return oat_file;
630}
631
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700632void ClassLinker::InitFromImage() {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700633 const Runtime* runtime = Runtime::Current();
634 if (runtime->IsVerboseStartup()) {
635 LOG(INFO) << "ClassLinker::InitFromImage entering";
636 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700637 CHECK(!init_done_);
638
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700639 const std::vector<Space*>& spaces = Heap::GetSpaces();
640 for (size_t i = 0; i < spaces.size(); i++) {
641 Space* space = spaces[i] ;
642 if (space->IsImageSpace()) {
643 OatFile* oat_file = OpenOat(space);
644 CHECK(oat_file != NULL) << "Failed to open oat file for image";
645 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
646 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
647
648 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
649 static_cast<uint32_t>(dex_caches->GetLength()));
650 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700651 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700652 const std::string& dex_file_location = dex_cache->GetLocation()->ToModifiedUtf8();
653
654 std::string dex_filename;
655 dex_filename += runtime->GetHostPrefix();
656 dex_filename += dex_file_location;
657 const DexFile* dex_file = DexFile::Open(dex_filename, runtime->GetHostPrefix());
658 if (dex_file == NULL) {
659 LOG(FATAL) << "Failed to open dex file " << dex_filename
660 << " referenced from oat file as " << dex_file_location;
661 }
662
Brian Carlstromaded5f72011-10-07 17:15:04 -0700663 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
664 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700665
Brian Carlstromdf143242011-10-10 18:05:34 -0700666 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700667 }
668 }
669 }
670
Brian Carlstroma663ea52011-08-19 23:33:41 -0700671 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
672 DCHECK(heap_bitmap != NULL);
673
Brian Carlstroma663ea52011-08-19 23:33:41 -0700674 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700675 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700676
677 // reinit class_roots_
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700678 Object* class_roots_object = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
679 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700680
Elliott Hughes92f14b22011-10-06 12:29:54 -0700681 // reinit array_interfaces_ and array_iftable_ from any array class instance, they should all be ==
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700682 array_interfaces_ = GetClassRoot(kObjectArrayClass)->GetInterfaces();
683 DCHECK(array_interfaces_ == GetClassRoot(kBooleanArrayClass)->GetInterfaces());
Elliott Hughes92f14b22011-10-06 12:29:54 -0700684 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
685 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Brian Carlstroma663ea52011-08-19 23:33:41 -0700686
Brian Carlstroma663ea52011-08-19 23:33:41 -0700687 String::SetClass(GetClassRoot(kJavaLangString));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700688 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700689 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700690 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
691 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
692 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
693 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
694 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
695 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
696 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
697 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700698 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700699 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700700
701 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700702
703 if (runtime->IsVerboseStartup()) {
704 LOG(INFO) << "ClassLinker::InitFromImage exiting";
705 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700706}
707
Brian Carlstrom78128a62011-09-15 17:21:19 -0700708void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700709 DCHECK(obj != NULL);
710 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700711 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700712
Brian Carlstromc74255f2011-09-11 22:47:39 -0700713 if (obj->IsString()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700714 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700715 return;
716 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700717 if (obj->IsClass()) {
718 // restore class to ClassLinker::classes_ table
719 Class* klass = obj->AsClass();
720 std::string descriptor = klass->GetDescriptor()->ToModifiedUtf8();
721 class_linker->InsertClass(descriptor, klass);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700722 return;
723 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700724}
725
726// Keep in sync with InitCallback. Anything we visit, we need to
727// reinit references to when reinitializing a ClassLinker from a
728// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700729void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
730 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700731
732 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700733 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700734 }
735
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700736 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700737 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700738 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700739 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700740 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700741 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700742 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700743
Elliott Hughes410c0c82011-09-01 17:58:25 -0700744 visitor(array_interfaces_, arg);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700745 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700746}
747
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700748ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700749 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700750 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700751 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700752 BooleanArray::ResetArrayClass();
753 ByteArray::ResetArrayClass();
754 CharArray::ResetArrayClass();
755 DoubleArray::ResetArrayClass();
756 FloatArray::ResetArrayClass();
757 IntArray::ResetArrayClass();
758 LongArray::ResetArrayClass();
759 ShortArray::ResetArrayClass();
760 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700761 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700762 STLDeleteElements(&boot_class_path_);
763 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700764}
765
766DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700767 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
768 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700769 return NULL;
770 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700771 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
772 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700773 return NULL;
774 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700775 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
776 if (strings.get() == NULL) {
777 return NULL;
778 }
779 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
780 if (types.get() == NULL) {
781 return NULL;
782 }
783 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
784 if (methods.get() == NULL) {
785 return NULL;
786 }
787 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
788 if (fields.get() == NULL) {
789 return NULL;
790 }
791 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
792 if (code_and_direct_methods.get() == NULL) {
793 return NULL;
794 }
795 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
796 if (initialized_static_storage.get() == NULL) {
797 return NULL;
798 }
799
800 dex_cache->Init(location.get(),
801 strings.get(),
802 types.get(),
803 methods.get(),
804 fields.get(),
805 code_and_direct_methods.get(),
806 initialized_static_storage.get());
807 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -0700808}
809
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700810CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
811 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -0700812}
813
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700814InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
815 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700816 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
817 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700818 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700819 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700820}
821
Brian Carlstrom4873d462011-08-21 15:23:39 -0700822Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
823 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700824 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700825 klass->SetPrimitiveType(Class::kPrimNot); // default to not being primitive
826 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700827 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700828}
829
Brian Carlstrom4873d462011-08-21 15:23:39 -0700830Class* ClassLinker::AllocClass(size_t class_size) {
831 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -0700832}
833
Jesse Wilson35baaab2011-08-10 16:18:03 -0400834Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700835 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -0700836}
837
838Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700839 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700840}
841
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700842ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
843 return ObjectArray<StackTraceElement>::Alloc(
844 GetClassRoot(kJavaLangStackTraceElementArrayClass),
845 length);
846}
847
Brian Carlstromaded5f72011-10-07 17:15:04 -0700848Class* EnsureResolved(Class* klass) {
849 DCHECK(klass != NULL);
850 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -0700851 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700852 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700853 ObjectLock lock(klass);
854 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700855 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700856 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700857 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700858 return NULL;
859 }
860 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700861 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700862 lock.Wait();
863 }
864 }
865 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700866 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700867 return NULL;
868 }
869 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -0700870 CHECK(klass->IsResolved()) << PrettyClass(klass);
871 CHECK(!self->IsExceptionPending())
872 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
873 return klass;
874}
875
876Class* ClassLinker::FindClass(const std::string& descriptor,
877 const ClassLoader* class_loader) {
878 CHECK_NE(descriptor.size(), 0U);
879 Thread* self = Thread::Current();
880 DCHECK(self != NULL);
881 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
882 // Find the class in the loaded classes table.
883 Class* klass = LookupClass(descriptor, class_loader);
884 if (klass != NULL) {
885 return EnsureResolved(klass);
886 }
887 if (descriptor.size() == 1) {
888 // only the descriptors of primitive types should be 1 character long
889 return FindPrimitiveClass(descriptor[0]);
890 }
891 // Class is not yet loaded.
892 if (descriptor[0] == '[') {
893 return CreateArrayClass(descriptor, class_loader);
894 }
895 if (class_loader == NULL) {
896 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
897 if (pair.second == NULL) {
898 std::string name(PrintableString(descriptor));
899 ThrowNoClassDefFoundError("Class %s not found in boot class loader", name.c_str());
900 return NULL;
901 }
902 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
903 }
904
905 if (ClassLoader::UseCompileTimeClassPath()) {
906 const std::vector<const DexFile*>& class_path
907 = ClassLoader::GetCompileTimeClassPath(class_loader);
908 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
909 if (pair.second == NULL) {
910 return FindSystemClass(descriptor);
911 }
912 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
913 }
914
915 std::string class_name_string = DescriptorToDot(descriptor);
916 ScopedThreadStateChange(self, Thread::kNative);
917 JNIEnv* env = self->GetJniEnv();
Brian Carlstromdf143242011-10-10 18:05:34 -0700918 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
919 CHECK(c.get() != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700920 // TODO: cache method?
Brian Carlstromdf143242011-10-10 18:05:34 -0700921 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700922 CHECK(mid != NULL);
Brian Carlstromdf143242011-10-10 18:05:34 -0700923 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
Elliott Hughes30646832011-10-13 16:59:46 -0700924 if (class_name_object.get() == NULL) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700925 return NULL;
926 }
Brian Carlstromdf143242011-10-10 18:05:34 -0700927 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
928 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid, class_name_object.get()));
929 return Decode<Class*>(env, result.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700930}
931
932Class* ClassLinker::DefineClass(const std::string& descriptor,
933 const ClassLoader* class_loader,
934 const DexFile& dex_file,
935 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700936 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700937 // Load the class from the dex file.
938 if (!init_done_) {
939 // finish up init of hand crafted class_roots_
940 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700941 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700942 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700943 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700944 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700945 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700946 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700947 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700948 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700949 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700950 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700951 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700952 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700953 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700954 }
955 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700956 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700957 }
958 klass->SetDexCache(FindDexCache(dex_file));
959 LoadClass(dex_file, dex_class_def, klass, class_loader);
960 // Check for a pending exception during load
961 Thread* self = Thread::Current();
962 if (self->IsExceptionPending()) {
963 return NULL;
964 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700965 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700966 klass->SetClinitThreadId(self->GetTid());
967 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700968 bool success = InsertClass(descriptor, klass.get()); // TODO: just return collision
Brian Carlstromaded5f72011-10-07 17:15:04 -0700969 if (!success) {
970 // We may fail to insert if we raced with another thread.
971 klass->SetClinitThreadId(0);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700972 klass.reset(LookupClass(descriptor, class_loader));
973 CHECK(klass.get() != NULL);
974 return klass.get();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700975 }
976 // Finish loading (if necessary) by finding parents
977 CHECK(!klass->IsLoaded());
978 if (!LoadSuperAndInterfaces(klass, dex_file)) {
979 // Loading failed.
980 CHECK(self->IsExceptionPending());
981 lock.NotifyAll();
982 return NULL;
983 }
984 CHECK(klass->IsLoaded());
985 // Link the class (if necessary)
986 CHECK(!klass->IsResolved());
987 if (!LinkClass(klass)) {
988 // Linking failed.
989 CHECK(self->IsExceptionPending());
990 lock.NotifyAll();
991 return NULL;
992 }
993 CHECK(klass->IsResolved());
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700994 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700995}
996
Brian Carlstrom4873d462011-08-21 15:23:39 -0700997// Precomputes size that will be needed for Class, matching LinkStaticFields
998size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
999 const DexFile::ClassDef& dex_class_def) {
1000 const byte* class_data = dex_file.GetClassData(dex_class_def);
1001 DexFile::ClassDataHeader header = dex_file.ReadClassDataHeader(&class_data);
1002 size_t num_static_fields = header.static_fields_size_;
1003 size_t num_ref = 0;
1004 size_t num_32 = 0;
1005 size_t num_64 = 0;
1006 if (num_static_fields != 0) {
1007 uint32_t last_idx = 0;
1008 for (size_t i = 0; i < num_static_fields; ++i) {
1009 DexFile::Field dex_field;
1010 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
1011 const DexFile::FieldId& field_id = dex_file.GetFieldId(dex_field.field_idx_);
1012 const char* descriptor = dex_file.dexStringByTypeIdx(field_id.type_idx_);
1013 char c = descriptor[0];
1014 if (c == 'L' || c == '[') {
1015 num_ref++;
1016 } else if (c == 'J' || c == 'D') {
1017 num_64++;
1018 } else {
1019 num_32++;
1020 }
1021 }
1022 }
1023
1024 // start with generic class data
1025 size_t size = sizeof(Class);
1026 // follow with reference fields which must be contiguous at start
1027 size += (num_ref * sizeof(uint32_t));
1028 // if there are 64-bit fields to add, make sure they are aligned
1029 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1030 if (num_32 != 0) {
1031 // use an available 32-bit field for padding
1032 num_32--;
1033 }
1034 size += sizeof(uint32_t); // either way, we are adding a word
1035 DCHECK_EQ(size, RoundUp(size, 8));
1036 }
1037 // tack on any 64-bit fields now that alignment is assured
1038 size += (num_64 * sizeof(uint64_t));
1039 // tack on any remaining 32-bit fields
1040 size += (num_32 * sizeof(uint32_t));
1041 return size;
1042}
1043
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001044void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001045 // Every kind of method should at least get an invoke stub from the oat_method.
1046 // non-abstract methods also get their code pointers.
1047 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001048 oat_method.LinkMethod(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001049
1050 if (method->IsAbstract()) {
1051 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1052 return;
1053 }
1054 if (method->IsNative()) {
1055 // unregistering restores the dlsym lookup stub
1056 method->UnregisterNative();
1057 return;
1058 }
1059}
1060
Brian Carlstromf615a612011-07-23 12:50:34 -07001061void ClassLinker::LoadClass(const DexFile& dex_file,
1062 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001063 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001064 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001065 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001066 CHECK(klass->GetDexCache() != NULL);
1067 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001068 const byte* class_data = dex_file.GetClassData(dex_class_def);
1069 DexFile::ClassDataHeader header = dex_file.ReadClassDataHeader(&class_data);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001070
Brian Carlstromf615a612011-07-23 12:50:34 -07001071 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001072 CHECK(descriptor != NULL);
1073
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001074 klass->SetClass(GetClassRoot(kJavaLangClass));
1075 if (klass->GetDescriptor() != NULL) {
1076 DCHECK(klass->GetDescriptor()->Equals(descriptor));
1077 } else {
Brian Carlstromc74255f2011-09-11 22:47:39 -07001078 klass->SetDescriptor(intern_table_->InternStrong(descriptor));
Elliott Hughes30646832011-10-13 16:59:46 -07001079 if (klass->GetDescriptor() == NULL) {
1080 return;
1081 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001082 }
1083 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001084 // Make sure that none of our runtime-only flags are set.
1085 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001086 klass->SetAccessFlags(access_flags);
1087 klass->SetClassLoader(class_loader);
1088 DCHECK(klass->GetPrimitiveType() == Class::kPrimNot);
1089 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001090
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001091 klass->SetSuperClassTypeIdx(dex_class_def.superclass_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001092
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001093 size_t num_static_fields = header.static_fields_size_;
1094 size_t num_instance_fields = header.instance_fields_size_;
1095 size_t num_direct_methods = header.direct_methods_size_;
1096 size_t num_virtual_methods = header.virtual_methods_size_;
Brian Carlstrom934486c2011-07-12 23:42:50 -07001097
Jesse Wilson6384f642011-10-07 18:08:35 -04001098 const char* source_file = dex_file.dexGetSourceFile(dex_class_def);
1099 if (source_file != NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001100 String* source_file_string = intern_table_->InternStrong(source_file);
1101 if (source_file_string == NULL) {
1102 return;
1103 }
1104 klass->SetSourceFile(source_file_string);
Jesse Wilson6384f642011-10-07 18:08:35 -04001105 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001106
1107 // Load class interfaces.
Brian Carlstromf615a612011-07-23 12:50:34 -07001108 LoadInterfaces(dex_file, dex_class_def, klass);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001109
1110 // Load static fields.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001111 if (num_static_fields != 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001112 klass->SetSFields(AllocObjectArray<Field>(num_static_fields));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001113 uint32_t last_idx = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001114 for (size_t i = 0; i < num_static_fields; ++i) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001115 DexFile::Field dex_field;
1116 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001117 SirtRef<Field> sfield(AllocField());
1118 klass->SetStaticField(i, sfield.get());
Brian Carlstromf615a612011-07-23 12:50:34 -07001119 LoadField(dex_file, dex_field, klass, sfield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001120 }
1121 }
1122
1123 // Load instance fields.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001124 if (num_instance_fields != 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001125 klass->SetIFields(AllocObjectArray<Field>(num_instance_fields));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001126 uint32_t last_idx = 0;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001127 for (size_t i = 0; i < num_instance_fields; ++i) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001128 DexFile::Field dex_field;
1129 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001130 SirtRef<Field> ifield(AllocField());
1131 klass->SetInstanceField(i, ifield.get());
Brian Carlstromf615a612011-07-23 12:50:34 -07001132 LoadField(dex_file, dex_field, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001133 }
1134 }
1135
Brian Carlstromaded5f72011-10-07 17:15:04 -07001136 UniquePtr<const OatFile::OatClass> oat_class;
1137 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
1138 const OatFile* oat_file = FindOatFile(dex_file);
1139 if (oat_file != NULL) {
1140 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1141 if (oat_dex_file != NULL) {
1142 uint32_t class_def_index;
1143 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1144 CHECK(found) << descriptor;
1145 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001146 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001147 }
1148 }
1149 }
1150 size_t method_index = 0;
1151
Brian Carlstrom934486c2011-07-12 23:42:50 -07001152 // Load direct methods.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001153 if (num_direct_methods != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001154 // TODO: append direct methods to class object
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001155 klass->SetDirectMethods(AllocObjectArray<Method>(num_direct_methods));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001156 uint32_t last_idx = 0;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001157 for (size_t i = 0; i < num_direct_methods; ++i, ++method_index) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001158 DexFile::Method dex_method;
1159 dex_file.dexReadClassDataMethod(&class_data, &dex_method, &last_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001160 SirtRef<Method> method(AllocMethod());
1161 klass->SetDirectMethod(i, method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001162 LoadMethod(dex_file, dex_method, klass, method);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001163 if (oat_class.get() != NULL) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001164 LinkCode(method, oat_class.get(), method_index);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001165 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001166 }
1167 }
1168
1169 // Load virtual methods.
Brian Carlstrom913af1b2011-07-23 21:41:13 -07001170 if (num_virtual_methods != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001171 // TODO: append virtual methods to class object
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001172 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001173 uint32_t last_idx = 0;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001174 for (size_t i = 0; i < num_virtual_methods; ++i, ++method_index) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001175 DexFile::Method dex_method;
1176 dex_file.dexReadClassDataMethod(&class_data, &dex_method, &last_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001177 SirtRef<Method> method(AllocMethod());
1178 klass->SetVirtualMethod(i, method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001179 LoadMethod(dex_file, dex_method, klass, method);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001180 if (oat_class.get() != NULL) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001181 LinkCode(method, oat_class.get(), method_index);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001182 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001183 }
1184 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001185}
1186
Brian Carlstromf615a612011-07-23 12:50:34 -07001187void ClassLinker::LoadInterfaces(const DexFile& dex_file,
1188 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001189 SirtRef<Class>& klass) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001190 const DexFile::TypeList* list = dex_file.GetInterfacesList(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001191 if (list != NULL) {
Elliott Hughes418d20f2011-09-22 14:00:39 -07001192 klass->SetInterfaces(AllocClassArray(list->Size()));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001193 IntArray* interfaces_idx = IntArray::Alloc(list->Size());
1194 klass->SetInterfacesTypeIdx(interfaces_idx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001195 for (size_t i = 0; i < list->Size(); ++i) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001196 const DexFile::TypeItem& type_item = list->GetTypeItem(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001197 interfaces_idx->Set(i, type_item.type_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001198 }
1199 }
1200}
1201
Brian Carlstromf615a612011-07-23 12:50:34 -07001202void ClassLinker::LoadField(const DexFile& dex_file,
1203 const DexFile::Field& src,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001204 SirtRef<Class>& klass,
1205 SirtRef<Field>& dst) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001206 const DexFile::FieldId& field_id = dex_file.GetFieldId(src.field_idx_);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001207 dst->SetDeclaringClass(klass.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001208 dst->SetName(ResolveString(dex_file, field_id.name_idx_, klass->GetDexCache()));
1209 dst->SetTypeIdx(field_id.type_idx_);
1210 dst->SetAccessFlags(src.access_flags_);
1211
1212 // In order to access primitive types using GetTypeDuringLinking we need to
1213 // ensure they are resolved into the dex cache
1214 const char* descriptor = dex_file.dexStringByTypeIdx(field_id.type_idx_);
1215 if (descriptor[1] == '\0') {
1216 // only the descriptors of primitive types should be 1 character long
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001217 Class* resolved = ResolveType(dex_file, field_id.type_idx_, klass.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001218 DCHECK(resolved->IsPrimitive());
1219 }
Brian Carlstrom934486c2011-07-12 23:42:50 -07001220}
1221
Brian Carlstromf615a612011-07-23 12:50:34 -07001222void ClassLinker::LoadMethod(const DexFile& dex_file,
1223 const DexFile::Method& src,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001224 SirtRef<Class>& klass,
1225 SirtRef<Method>& dst) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001226 const DexFile::MethodId& method_id = dex_file.GetMethodId(src.method_idx_);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001227 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001228
Elliott Hughes80609252011-09-23 17:24:51 -07001229 String* method_name = ResolveString(dex_file, method_id.name_idx_, klass->GetDexCache());
Elliott Hughes30646832011-10-13 16:59:46 -07001230 if (method_name == NULL) {
1231 return;
1232 }
Elliott Hughes80609252011-09-23 17:24:51 -07001233 dst->SetName(method_name);
1234 if (method_name->Equals("<init>")) {
1235 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1236 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001237
1238 int32_t utf16_length;
1239 std::string signature(dex_file.CreateMethodDescriptor(method_id.proto_idx_, &utf16_length));
Elliott Hughes30646832011-10-13 16:59:46 -07001240 String* signature_string = intern_table_->InternStrong(utf16_length, signature.c_str());
1241 if (signature_string == NULL) {
1242 return;
1243 }
1244 dst->SetSignature(signature_string);
Elliott Hughes20cde902011-10-04 17:37:27 -07001245
1246 if (method_name->Equals("finalize") && signature == "()V") {
1247 /*
1248 * The Enum class declares a "final" finalize() method to prevent subclasses from introducing
1249 * a finalizer. We don't want to set the finalizable flag for Enum or its subclasses, so we
1250 * exclude it here.
1251 *
1252 * We also want to avoid setting the flag on Object, where we know that finalize() is empty.
1253 */
1254 if (klass->GetClassLoader() != NULL ||
1255 (!klass->GetDescriptor()->Equals("Ljava/lang/Object;") &&
1256 !klass->GetDescriptor()->Equals("Ljava/lang/Enum;"))) {
1257 klass->SetFinalizable();
1258 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001259 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001260
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001261 dst->SetProtoIdx(method_id.proto_idx_);
1262 dst->SetCodeItemOffset(src.code_off_);
1263 const char* shorty = dex_file.GetShorty(method_id.proto_idx_);
Elliott Hughes30646832011-10-13 16:59:46 -07001264 String* shorty_string = intern_table_->InternStrong(shorty);
1265 dst->SetShorty(shorty_string);
1266 if (shorty_string == NULL) {
1267 return;
1268 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001269 dst->SetAccessFlags(src.access_flags_);
1270 dst->SetReturnTypeIdx(dex_file.GetProtoId(method_id.proto_idx_).return_type_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001271
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001272 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1273 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1274 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1275 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1276 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1277 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001278
Brian Carlstrom934486c2011-07-12 23:42:50 -07001279 // TODO: check for finalize method
1280
Brian Carlstromf615a612011-07-23 12:50:34 -07001281 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(src);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001282 if (code_item != NULL) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001283 dst->SetNumRegisters(code_item->registers_size_);
1284 dst->SetNumIns(code_item->ins_size_);
1285 dst->SetNumOuts(code_item->outs_size_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001286 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001287 uint16_t num_args = Method::NumArgRegisters(shorty);
1288 if ((src.access_flags_ & kAccStatic) != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001289 ++num_args;
1290 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001291 dst->SetNumRegisters(num_args);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001292 // TODO: native methods
1293 }
1294}
1295
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001296void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001297 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1298 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001299}
1300
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001301void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1302 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001303 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001304 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001305}
1306
Brian Carlstromaded5f72011-10-07 17:15:04 -07001307bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001308 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001309 for (size_t i = 0; i != dex_files_.size(); ++i) {
1310 if (dex_files_[i] == &dex_file) {
1311 return true;
1312 }
1313 }
1314 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001315}
1316
Brian Carlstromaded5f72011-10-07 17:15:04 -07001317bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001318 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001319 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001320}
1321
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001322void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001323 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001324 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001325 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001326 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001327 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001328}
1329
Brian Carlstromaded5f72011-10-07 17:15:04 -07001330void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001331 {
1332 MutexLock mu(dex_lock_);
1333 if (IsDexFileRegisteredLocked(dex_file)) {
1334 return;
1335 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001336 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001337 // Don't alloc while holding the lock, since allocation may need to
1338 // suspend all threads and another thread may need the dex_lock_ to
1339 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001340 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001341 {
1342 MutexLock mu(dex_lock_);
1343 if (IsDexFileRegisteredLocked(dex_file)) {
1344 return;
1345 }
1346 RegisterDexFileLocked(dex_file, dex_cache);
1347 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001348}
1349
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001350void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001351 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001352 RegisterDexFileLocked(dex_file, dex_cache);
1353}
1354
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001355const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001356 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001357 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001358 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1359 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001360 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001361 }
1362 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001363 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001364 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001365}
1366
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001367DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001368 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001369 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001370 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001371 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001372 }
1373 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001374 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001375 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001376}
1377
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001378Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1379 const char* descriptor,
1380 Class::PrimitiveType type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001381 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001382 CHECK(primitive_class != NULL);
1383 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
1384 primitive_class->SetDescriptor(intern_table_->InternStrong(descriptor));
Elliott Hughes30646832011-10-13 16:59:46 -07001385 CHECK(primitive_class->GetDescriptor() != NULL);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001386 primitive_class->SetPrimitiveType(type);
1387 primitive_class->SetStatus(Class::kStatusInitialized);
1388 bool success = InsertClass(descriptor, primitive_class);
1389 CHECK(success) << "InitPrimitiveClass(" << descriptor << ") failed";
1390 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001391}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001392
Brian Carlstrombe977852011-07-19 14:54:54 -07001393// Create an array class (i.e. the class object for the array, not the
1394// array itself). "descriptor" looks like "[C" or "[[[[B" or
1395// "[Ljava/lang/String;".
1396//
1397// If "descriptor" refers to an array of primitives, look up the
1398// primitive type's internally-generated class object.
1399//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001400// "class_loader" is the class loader of the class that's referring to
1401// us. It's used to ensure that we're looking for the element type in
1402// the right context. It does NOT become the class loader for the
1403// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001404//
1405// Returns NULL with an exception raised on failure.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001406Class* ClassLinker::CreateArrayClass(const std::string& descriptor,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001407 const ClassLoader* class_loader) {
1408 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001409
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001410 // Identify the underlying component type
1411 Class* component_type = FindClass(descriptor.substr(1), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001412 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001413 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001414 return NULL;
1415 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001416
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001417 // See if the component type is already loaded. Array classes are
1418 // always associated with the class loader of their underlying
1419 // element type -- an array of Strings goes with the loader for
1420 // java/lang/String -- so we need to look for it there. (The
1421 // caller should have checked for the existence of the class
1422 // before calling here, but they did so with *their* class loader,
1423 // not the component type's loader.)
1424 //
1425 // If we find it, the caller adds "loader" to the class' initiating
1426 // loader list, which should prevent us from going through this again.
1427 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001428 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001429 // are the same, because our caller (FindClass) just did the
1430 // lookup. (Even if we get this wrong we still have correct behavior,
1431 // because we effectively do this lookup again when we add the new
1432 // class to the hash table --- necessary because of possible races with
1433 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001434 if (class_loader != component_type->GetClassLoader()) {
1435 Class* new_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001436 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001437 return new_class;
1438 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001439 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001440
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001441 // Fill out the fields in the Class.
1442 //
1443 // It is possible to execute some methods against arrays, because
1444 // all arrays are subclasses of java_lang_Object_, so we need to set
1445 // up a vtable. We can just point at the one in java_lang_Object_.
1446 //
1447 // Array classes are simple enough that we don't need to do a full
1448 // link step.
1449
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001450 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001451 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001452 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001453 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001454 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001455 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001456 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001457 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001458 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001459 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001460 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001461 }
1462 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001463 if (new_class.get() == NULL) {
1464 new_class.reset(AllocClass(sizeof(Class)));
1465 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001466 return NULL;
1467 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001468 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001469 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001470 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom693267a2011-09-06 09:25:34 -07001471 if (new_class->GetDescriptor() != NULL) {
1472 DCHECK(new_class->GetDescriptor()->Equals(descriptor));
1473 } else {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001474 new_class->SetDescriptor(intern_table_->InternStrong(descriptor.c_str()));
Elliott Hughes30646832011-10-13 16:59:46 -07001475 if (new_class->GetDescriptor() == NULL) {
1476 return NULL;
1477 }
Brian Carlstrom693267a2011-09-06 09:25:34 -07001478 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001479 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001480 new_class->SetSuperClass(java_lang_Object);
1481 new_class->SetVTable(java_lang_Object->GetVTable());
1482 new_class->SetPrimitiveType(Class::kPrimNot);
1483 new_class->SetClassLoader(component_type->GetClassLoader());
1484 new_class->SetStatus(Class::kStatusInitialized);
1485 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001486 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001487
1488
1489 // All arrays have java/lang/Cloneable and java/io/Serializable as
1490 // interfaces. We need to set that up here, so that stuff like
1491 // "instanceof" works right.
1492 //
1493 // Note: The GC could run during the call to FindSystemClass,
1494 // so we need to make sure the class object is GC-valid while we're in
1495 // there. Do this by clearing the interface list so the GC will just
1496 // think that the entries are null.
1497
1498
1499 // Use the single, global copies of "interfaces" and "iftable"
1500 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001501 CHECK(array_interfaces_ != NULL);
1502 CHECK(array_iftable_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001503 new_class->SetInterfaces(array_interfaces_);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001504 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001505
1506 // Inherit access flags from the component type. Arrays can't be
1507 // used as a superclass or interface, so we want to add "final"
1508 // and remove "interface".
1509 //
1510 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001511 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001512 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001513 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1514 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001515
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001516 if (InsertClass(descriptor, new_class.get())) {
1517 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001518 }
1519 // Another thread must have loaded the class after we
1520 // started but before we finished. Abandon what we've
1521 // done.
1522 //
1523 // (Yes, this happens.)
1524
1525 // Grab the winning class.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001526 Class* other_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001527 DCHECK(other_class != NULL);
1528 return other_class;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001529}
1530
1531Class* ClassLinker::FindPrimitiveClass(char type) {
Carl Shapiro565f5072011-07-10 13:39:43 -07001532 switch (type) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001533 case 'B':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001534 return GetClassRoot(kPrimitiveByte);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001535 case 'C':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001536 return GetClassRoot(kPrimitiveChar);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001537 case 'D':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001538 return GetClassRoot(kPrimitiveDouble);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001539 case 'F':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001540 return GetClassRoot(kPrimitiveFloat);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001541 case 'I':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001542 return GetClassRoot(kPrimitiveInt);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001543 case 'J':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001544 return GetClassRoot(kPrimitiveLong);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001545 case 'S':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001546 return GetClassRoot(kPrimitiveShort);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001547 case 'Z':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001548 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001549 case 'V':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001550 return GetClassRoot(kPrimitiveVoid);
Carl Shapiro744ad052011-08-06 15:53:36 -07001551 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001552 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001553 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001554 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001555}
1556
Brian Carlstromaded5f72011-10-07 17:15:04 -07001557bool ClassLinker::InsertClass(const std::string& descriptor, Class* klass) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001558 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001559 MutexLock mu(classes_lock_);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001560 Table::iterator it = classes_.insert(std::make_pair(hash, klass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001561 return ((*it).second == klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001562}
1563
Brian Carlstromaded5f72011-10-07 17:15:04 -07001564Class* ClassLinker::LookupClass(const std::string& descriptor, const ClassLoader* class_loader) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001565 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001566 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001567 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001568 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001569 Class* klass = it->second;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001570 if (klass->GetDescriptor()->Equals(descriptor) && klass->GetClassLoader() == class_loader) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001571 return klass;
1572 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001573 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001574 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001575}
1576
jeffhao98eacac2011-09-14 16:11:53 -07001577void ClassLinker::VerifyClass(Class* klass) {
1578 if (klass->IsVerified()) {
1579 return;
1580 }
1581
1582 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved);
jeffhao98eacac2011-09-14 16:11:53 -07001583 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001584
jeffhao5cfd6fb2011-09-27 13:54:29 -07001585 if (DexVerifier::VerifyClass(klass)) {
1586 klass->SetStatus(Class::kStatusVerified);
1587 } else {
1588 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001589 Thread* self = Thread::Current();
1590 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
1591 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
1592 PrettyDescriptor(klass->GetDescriptor()).c_str());
jeffhao5cfd6fb2011-09-27 13:54:29 -07001593 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001594 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001595 }
jeffhao98eacac2011-09-14 16:11:53 -07001596}
1597
Jesse Wilson95caa792011-10-12 18:14:17 -04001598Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers466bb252011-10-14 03:29:56 -07001599 ClassLoader* loader, ObjectArray<Method>* methods, ObjectArray<ObjectArray<Class> >* throws) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001600 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(ProxyClass)));
1601 CHECK(klass.get() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001602 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers466bb252011-10-14 03:29:56 -07001603 const char* descriptor = DotToDescriptor(name->ToModifiedUtf8().c_str()).c_str();;
1604 klass->SetDescriptor(intern_table_->InternStrong(descriptor));
Jesse Wilson95caa792011-10-12 18:14:17 -04001605 klass->SetAccessFlags(kAccPublic | kAccFinal);
1606 klass->SetClassLoader(loader);
Ian Rogers466bb252011-10-14 03:29:56 -07001607 klass->SetStatus(Class::kStatusInitialized); // no loading or initializing necessary
1608 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
1609 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1610 klass->SetInterfaces(interfaces); // The interfaces are the array of interfaces specified
Jesse Wilson95caa792011-10-12 18:14:17 -04001611
Ian Rogers466bb252011-10-14 03:29:56 -07001612 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001613 klass->SetDirectMethods(AllocObjectArray<Method>(1));
1614 klass->SetDirectMethod(0, CreateProxyConstructor(klass));
1615
Ian Rogers466bb252011-10-14 03:29:56 -07001616 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001617 size_t num_virtual_methods = methods->GetLength();
1618 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1619 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001620 SirtRef<Method> prototype(methods->Get(i));
Jesse Wilson95caa792011-10-12 18:14:17 -04001621 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype, throws->Get(i)));
1622 }
Ian Rogers466bb252011-10-14 03:29:56 -07001623 // Link the virtual methods, creating vtable and iftables
Jesse Wilson95caa792011-10-12 18:14:17 -04001624 if (!LinkMethods(klass)) {
1625 DCHECK(Thread::Current()->IsExceptionPending());
1626 return NULL;
1627 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001628 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04001629}
1630
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001631Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass) {
Ian Rogers466bb252011-10-14 03:29:56 -07001632 // Create constructor for Proxy that must initialize h
1633 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
1634 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
1635 CHECK_EQ(proxy_direct_methods->GetLength(), 12);
1636 Method* proxy_constructor = proxy_direct_methods->Get(2);
1637 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
1638 // code_ too)
1639 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
1640 // Make this constructor public and fix the class to be our Proxy version
1641 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001642 constructor->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001643 // Sanity checks
1644 CHECK(constructor->IsConstructor());
1645 CHECK(constructor->GetName()->Equals("<init>"));
1646 CHECK(constructor->GetSignature()->Equals("(Ljava/lang/reflect/InvocationHandler;)V"));
1647 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04001648 return constructor;
1649}
1650
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001651Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype,
Ian Rogers466bb252011-10-14 03:29:56 -07001652 ObjectArray<Class>* throws) {
1653 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialise
1654 // as necessary
1655 Method* method = down_cast<Method*>(prototype->Clone());
1656
1657 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
1658 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001659 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001660 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001661 method->SetExceptionTypes(throws);
1662
Ian Rogers466bb252011-10-14 03:29:56 -07001663 // At runtime the method looks like a reference and argument saving method, clone the code
1664 // related parameters from this method.
1665 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
1666 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
1667 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
1668 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
1669 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Jesse Wilson95caa792011-10-12 18:14:17 -04001670
Ian Rogers466bb252011-10-14 03:29:56 -07001671 // Basic sanity
1672 DCHECK(method->GetName()->Equals(prototype->GetName()));
1673 DCHECK(method->GetSignature()->Equals(prototype->GetSignature()));
1674 DCHECK(method->GetShorty()->Equals(prototype->GetShorty()));
1675
1676 // More complex sanity - via dex cache
1677 CHECK_EQ(method->GetReturnType(), prototype->GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04001678
1679 return method;
1680}
1681
Brian Carlstrom25c33252011-09-18 15:58:35 -07001682bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001683 CHECK(klass->IsResolved() || klass->IsErroneous())
1684 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001685
Carl Shapirob5573532011-07-12 18:22:59 -07001686 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001687
Brian Carlstrom25c33252011-09-18 15:58:35 -07001688 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001689 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001690 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001691 ObjectLock lock(klass);
1692
Brian Carlstromd1422f82011-09-28 11:37:09 -07001693 if (klass->GetStatus() == Class::kStatusInitialized) {
1694 return true;
1695 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001696
Brian Carlstromd1422f82011-09-28 11:37:09 -07001697 if (klass->IsErroneous()) {
1698 ThrowEarlierClassFailure(klass);
1699 return false;
1700 }
1701
1702 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07001703 VerifyClass(klass);
1704 if (klass->GetStatus() != Class::kStatusVerified) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001705 return false;
1706 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001707 }
1708
Brian Carlstrom25c33252011-09-18 15:58:35 -07001709 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
1710 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001711 // if the class has a <clinit> but we can't run it during compilation,
1712 // don't bother going to kStatusInitializing
Brian Carlstrom25c33252011-09-18 15:58:35 -07001713 return false;
1714 }
1715
Brian Carlstromd1422f82011-09-28 11:37:09 -07001716 // If the class is kStatusInitializing, either this thread is
1717 // initializing higher up the stack or another thread has beat us
1718 // to initializing and we need to wait. Either way, this
1719 // invocation of InitializeClass will not be responsible for
1720 // running <clinit> and will return.
1721 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07001722 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07001723 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001724 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001725 return true;
1726 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07001727 // No. That's fine. Wait for another thread to finish initializing.
1728 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001729 }
1730
1731 if (!ValidateSuperClassDescriptors(klass)) {
1732 klass->SetStatus(Class::kStatusError);
1733 return false;
1734 }
1735
Brian Carlstromd1422f82011-09-28 11:37:09 -07001736 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001737
Elliott Hughesdcc24742011-09-07 14:02:44 -07001738 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001739 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001740 }
1741
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001742 uint64_t t0 = NanoTime();
1743
Brian Carlstrom25c33252011-09-18 15:58:35 -07001744 if (!InitializeSuperClass(klass, can_run_clinit)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001745 return false;
1746 }
1747
1748 InitializeStaticFields(klass);
1749
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001750 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07001751 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001752 }
1753
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001754 uint64_t t1 = NanoTime();
1755
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001756 {
1757 ObjectLock lock(klass);
1758
1759 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001760 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001761 klass->SetStatus(Class::kStatusError);
1762 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001763 RuntimeStats* global_stats = Runtime::Current()->GetStats();
1764 RuntimeStats* thread_stats = self->GetStats();
1765 ++global_stats->class_init_count;
1766 ++thread_stats->class_init_count;
1767 global_stats->class_init_time_ns += (t1 - t0);
1768 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001769 klass->SetStatus(Class::kStatusInitialized);
1770 }
1771 lock.NotifyAll();
1772 }
1773
1774 return true;
1775}
1776
Brian Carlstromd1422f82011-09-28 11:37:09 -07001777bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
1778 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001779 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001780 lock.Wait();
1781
1782 // When we wake up, repeat the test for init-in-progress. If
1783 // there's an exception pending (only possible if
1784 // "interruptShouldThrow" was set), bail out.
1785 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001786 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07001787 klass->SetStatus(Class::kStatusError);
1788 return false;
1789 }
1790 // Spurious wakeup? Go back to waiting.
1791 if (klass->GetStatus() == Class::kStatusInitializing) {
1792 continue;
1793 }
1794 if (klass->IsErroneous()) {
1795 // The caller wants an exception, but it was thrown in a
1796 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07001797 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
1798 PrettyDescriptor(klass->GetDescriptor()).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001799 return false;
1800 }
1801 if (klass->IsInitialized()) {
1802 return true;
1803 }
1804 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
1805 }
1806 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
1807}
1808
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001809bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
1810 if (klass->IsInterface()) {
1811 return true;
1812 }
1813 // begin with the methods local to the superclass
1814 if (klass->HasSuperClass() &&
1815 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
1816 const Class* super = klass->GetSuperClass();
1817 for (int i = super->NumVirtualMethods() - 1; i >= 0; --i) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001818 const Method* method = super->GetVirtualMethod(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001819 if (method != super->GetVirtualMethod(i) &&
1820 !HasSameMethodDescriptorClasses(method, super, klass)) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001821 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1822
1823 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 -07001824 return false;
1825 }
1826 }
1827 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001828 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
1829 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
1830 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001831 if (klass->GetClassLoader() != interface->GetClassLoader()) {
1832 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001833 const Method* method = interface_entry->GetMethodArray()->Get(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001834 if (!HasSameMethodDescriptorClasses(method, interface,
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001835 method->GetDeclaringClass())) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001836 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1837
1838 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 -07001839 return false;
1840 }
1841 }
1842 }
1843 }
1844 return true;
1845}
1846
1847bool ClassLinker::HasSameMethodDescriptorClasses(const Method* method,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001848 const Class* klass1,
1849 const Class* klass2) {
Brian Carlstrome10b6972011-09-26 13:49:03 -07001850 if (method->IsMiranda()) {
1851 return true;
1852 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001853 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001854 const DexFile::ProtoId& proto_id = dex_file.GetProtoId(method->GetProtoIdx());
Brian Carlstromf615a612011-07-23 12:50:34 -07001855 DexFile::ParameterIterator *it;
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001856 for (it = dex_file.GetParameterIterator(proto_id); it->HasNext(); it->Next()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001857 const char* descriptor = it->GetDescriptor();
1858 if (descriptor == NULL) {
1859 break;
1860 }
1861 if (descriptor[0] == 'L' || descriptor[0] == '[') {
1862 // Found a non-primitive type.
1863 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
1864 return false;
1865 }
1866 }
1867 }
1868 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001869 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001870 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Brian Carlstrome10b6972011-09-26 13:49:03 -07001871 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001872 return false;
1873 }
1874 }
1875 return true;
1876}
1877
1878// Returns true if classes referenced by the descriptor are the
1879// same classes in klass1 as they are in klass2.
1880bool ClassLinker::HasSameDescriptorClasses(const char* descriptor,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001881 const Class* klass1,
1882 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001883 CHECK(descriptor != NULL);
1884 CHECK(klass1 != NULL);
1885 CHECK(klass2 != NULL);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001886 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001887 // TODO: found1 == NULL
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001888 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001889 // TODO: found2 == NULL
1890 // TODO: lookup found1 in initiating loader list
1891 if (found1 == NULL || found2 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07001892 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001893 if (found1 == found2) {
1894 return true;
1895 } else {
1896 return false;
1897 }
1898 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001899 return true;
1900}
1901
Brian Carlstrom25c33252011-09-18 15:58:35 -07001902bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001903 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001904 if (!klass->IsInterface() && klass->HasSuperClass()) {
1905 Class* super_class = klass->GetSuperClass();
1906 if (super_class->GetStatus() != Class::kStatusInitialized) {
1907 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07001908 Thread* self = Thread::Current();
1909 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07001910 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07001911 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001912 // TODO: check for a pending exception
1913 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07001914 if (!can_run_clinit) {
1915 // Don't set status to error when we can't run <clinit>.
1916 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing);
1917 klass->SetStatus(Class::kStatusVerified);
1918 return false;
1919 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001920 klass->SetStatus(Class::kStatusError);
1921 klass->NotifyAll();
1922 return false;
1923 }
1924 }
1925 }
1926 return true;
1927}
1928
Brian Carlstrom25c33252011-09-18 15:58:35 -07001929bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001930 CHECK(c != NULL);
1931 if (c->IsInitialized()) {
1932 return true;
1933 }
1934
Elliott Hughes5f791332011-09-15 17:45:30 -07001935 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07001936 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Brian Carlstrom25c33252011-09-18 15:58:35 -07001937 InitializeClass(c, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07001938 return !self->IsExceptionPending();
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001939}
1940
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001941void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
1942 Class* c, std::map<int, Field*>& field_map) {
1943 const ClassLoader* cl = c->GetClassLoader();
1944 const byte* class_data = dex_file.GetClassData(dex_class_def);
1945 DexFile::ClassDataHeader header = dex_file.ReadClassDataHeader(&class_data);
1946 uint32_t last_idx = 0;
1947 for (size_t i = 0; i < header.static_fields_size_; ++i) {
1948 DexFile::Field dex_field;
1949 dex_file.dexReadClassDataField(&class_data, &dex_field, &last_idx);
1950 field_map[i] = ResolveField(dex_file, dex_field.field_idx_, c->GetDexCache(), cl, true);
1951 }
1952}
1953
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001954void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001955 size_t num_static_fields = klass->NumStaticFields();
1956 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001957 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001958 }
Brian Carlstromf615a612011-07-23 12:50:34 -07001959 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07001960 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07001961 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001962 return;
1963 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001964 const std::string descriptor(klass->GetDescriptor()->ToModifiedUtf8());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001965 const DexFile& dex_file = FindDexFile(dex_cache);
1966 const DexFile::ClassDef* dex_class_def = dex_file.FindClassDef(descriptor);
Brian Carlstromf615a612011-07-23 12:50:34 -07001967 CHECK(dex_class_def != NULL);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001968
1969 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
1970 std::map<int, Field*> field_map;
1971 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
1972
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001973 const byte* addr = dex_file.GetEncodedArray(*dex_class_def);
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001974 if (addr == NULL) {
1975 // All this class' static fields have default values.
1976 return;
1977 }
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001978 size_t array_size = DecodeUnsignedLeb128(&addr);
1979 for (size_t i = 0; i < array_size; ++i) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001980 Field* field = field_map[i];
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001981 JValue value;
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001982 DexFile::ValueType type = dex_file.ReadEncodedValue(&addr, &value);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001983 switch (type) {
Brian Carlstromf615a612011-07-23 12:50:34 -07001984 case DexFile::kByte:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001985 field->SetByte(NULL, value.b);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001986 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001987 case DexFile::kShort:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001988 field->SetShort(NULL, value.s);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001989 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001990 case DexFile::kChar:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001991 field->SetChar(NULL, value.c);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001992 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001993 case DexFile::kInt:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001994 field->SetInt(NULL, value.i);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001995 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001996 case DexFile::kLong:
Brian Carlstrom4873d462011-08-21 15:23:39 -07001997 field->SetLong(NULL, value.j);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07001998 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07001999 case DexFile::kFloat:
Brian Carlstrom4873d462011-08-21 15:23:39 -07002000 field->SetFloat(NULL, value.f);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002001 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07002002 case DexFile::kDouble:
Brian Carlstrom4873d462011-08-21 15:23:39 -07002003 field->SetDouble(NULL, value.d);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002004 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07002005 case DexFile::kString: {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002006 uint32_t string_idx = value.i;
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002007 const String* resolved = ResolveString(dex_file, string_idx, klass->GetDexCache());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002008 field->SetObject(NULL, resolved);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002009 break;
2010 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002011 case DexFile::kBoolean:
Brian Carlstrom4873d462011-08-21 15:23:39 -07002012 field->SetBoolean(NULL, value.z);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002013 break;
Brian Carlstromf615a612011-07-23 12:50:34 -07002014 case DexFile::kNull:
Brian Carlstrom4873d462011-08-21 15:23:39 -07002015 field->SetObject(NULL, value.l);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002016 break;
2017 default:
Carl Shapiro606258b2011-07-09 16:09:09 -07002018 LOG(FATAL) << "Unknown type " << static_cast<int>(type);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002019 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002020 }
2021}
2022
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002023bool ClassLinker::LinkClass(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002024 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002025 if (!LinkSuperClass(klass)) {
2026 return false;
2027 }
2028 if (!LinkMethods(klass)) {
2029 return false;
2030 }
2031 if (!LinkInstanceFields(klass)) {
2032 return false;
2033 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002034 if (!LinkStaticFields(klass)) {
2035 return false;
2036 }
2037 CreateReferenceInstanceOffsets(klass);
2038 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002039 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2040 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002041 return true;
2042}
2043
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002044bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002045 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
2046 if (klass->GetSuperClassTypeIdx() != DexFile::kDexNoIndex) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002047 Class* super_class = ResolveType(dex_file, klass->GetSuperClassTypeIdx(), klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002048 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002049 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002050 return false;
2051 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002052 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002053 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002054 for (size_t i = 0; i < klass->NumInterfaces(); ++i) {
2055 uint32_t idx = klass->GetInterfacesTypeIdx()->Get(i);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002056 Class* interface = ResolveType(dex_file, idx, klass.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002057 klass->SetInterface(i, interface);
2058 if (interface == NULL) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002059 DCHECK(Thread::Current()->IsExceptionPending());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002060 return false;
2061 }
2062 // Verify
2063 if (!klass->CanAccess(interface)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002064 // TODO: the RI seemed to ignore this in my testing.
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002065 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002066 "Interface %s implemented by class %s is inaccessible",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002067 PrettyDescriptor(interface->GetDescriptor()).c_str(),
2068 PrettyDescriptor(klass->GetDescriptor()).c_str());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002069 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002070 }
2071 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002072 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002073 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002074 return true;
2075}
2076
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002077bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002078 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002079 Class* super = klass->GetSuperClass();
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07002080 if (klass->GetDescriptor()->Equals("Ljava/lang/Object;")) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002081 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002082 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002083 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002084 return false;
2085 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002086 return true;
2087 }
2088 if (super == NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002089 ThrowLinkageError("No superclass defined for class %s",
2090 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002091 return false;
2092 }
2093 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002094 if (super->IsFinal() || super->IsInterface()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002095 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002096 "Superclass %s of %s is %s",
2097 PrettyDescriptor(super->GetDescriptor()).c_str(),
2098 PrettyDescriptor(klass->GetDescriptor()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002099 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002100 return false;
2101 }
2102 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002103 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002104 "Superclass %s is inaccessible by %s",
2105 PrettyDescriptor(super->GetDescriptor()).c_str(),
2106 PrettyDescriptor(klass->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002107 return false;
2108 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002109
2110 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2111 if (super->IsFinalizable()) {
2112 klass->SetFinalizable();
2113 }
2114
Elliott Hughes2da50362011-10-10 16:57:08 -07002115 // Inherit reference flags (if any) from the superclass.
2116 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2117 if (reference_flags != 0) {
2118 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2119 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002120 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002121 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002122 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
2123 PrettyDescriptor(klass->GetDescriptor()).c_str());
2124 return false;
2125 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002126
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002127#ifndef NDEBUG
2128 // Ensure super classes are fully resolved prior to resolving fields..
2129 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002130 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002131 super = super->GetSuperClass();
2132 }
2133#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002134 return true;
2135}
2136
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002137// Populate the class vtable and itable. Compute return type indices.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002138bool ClassLinker::LinkMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002139 if (klass->IsInterface()) {
2140 // No vtable.
2141 size_t count = klass->NumVirtualMethods();
2142 if (!IsUint(16, count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002143 ThrowClassFormatError("Too many methods on interface: %d", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002144 return false;
2145 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002146 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002147 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002148 }
jeffhaobdb76512011-09-07 11:43:16 -07002149 // Link interface method tables
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002150 return LinkInterfaceMethods(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002151 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002152 // Link virtual and interface method tables
2153 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002154 }
2155 return true;
2156}
2157
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002158bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002159 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002160 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2161 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002162 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002163 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002164 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002165 // See if any of our virtual methods override the superclass.
2166 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002167 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002168 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002169 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002170 Method* super_method = vtable->Get(j);
Ian Rogers466bb252011-10-14 03:29:56 -07002171 if (local_method->HasSameNameAndSignature(super_method)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002172 // Verify
2173 if (super_method->IsFinal()) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002174 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002175 PrettyDescriptor(klass->GetDescriptor()).c_str(),
2176 local_method->GetName()->ToModifiedUtf8().c_str(),
2177 PrettyDescriptor(super_method->GetDeclaringClass()->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002178 return false;
2179 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002180 vtable->Set(j, local_method);
2181 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002182 break;
2183 }
2184 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002185 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002186 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002187 vtable->Set(actual_count, local_method);
2188 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002189 actual_count += 1;
2190 }
2191 }
2192 if (!IsUint(16, actual_count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002193 ThrowClassFormatError("Too many methods defined on class: %d", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002194 return false;
2195 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002196 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002197 CHECK_LE(actual_count, max_count);
2198 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002199 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002200 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002201 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002202 } else {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07002203 CHECK(klass->GetDescriptor()->Equals("Ljava/lang/Object;"));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002204 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002205 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002206 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002207 return false;
2208 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002209 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002210 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002211 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2212 vtable->Set(i, virtual_method);
2213 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002214 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002215 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002216 }
2217 return true;
2218}
2219
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002220bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002221 size_t super_ifcount;
2222 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002223 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002224 } else {
2225 super_ifcount = 0;
2226 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002227 size_t ifcount = super_ifcount;
2228 ifcount += klass->NumInterfaces();
2229 for (size_t i = 0; i < klass->NumInterfaces(); i++) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002230 ifcount += klass->GetInterface(i)->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002231 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002232 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002233 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002234 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002235 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002236 return true;
2237 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002238 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002239 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002240 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2241 for (size_t i = 0; i < super_ifcount; i++) {
2242 iftable->Set(i, AllocInterfaceEntry(super_iftable->Get(i)->GetInterface()));
2243 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002244 }
2245 // Flatten the interface inheritance hierarchy.
2246 size_t idx = super_ifcount;
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002247 for (size_t i = 0; i < klass->NumInterfaces(); i++) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002248 Class* interface = klass->GetInterface(i);
2249 DCHECK(interface != NULL);
2250 if (!interface->IsInterface()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002251 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002252 "Class %s implements non-interface class %s",
2253 PrettyDescriptor(klass->GetDescriptor()).c_str(),
2254 PrettyDescriptor(interface->GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002255 return false;
2256 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002257 // Add this interface.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002258 iftable->Set(idx++, AllocInterfaceEntry(interface));
Elliott Hughes4681c802011-09-25 18:04:37 -07002259 // Add this interface's superinterfaces.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002260 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2261 iftable->Set(idx++, AllocInterfaceEntry(interface->GetIfTable()->Get(j)->GetInterface()));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002262 }
2263 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002264 klass->SetIfTable(iftable.get());
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002265 CHECK_EQ(idx, ifcount);
Elliott Hughes4681c802011-09-25 18:04:37 -07002266
2267 // If we're an interface, we don't need the vtable pointers, so we're done.
2268 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002269 return true;
2270 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002271 std::vector<Method*> miranda_list;
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002272 for (size_t i = 0; i < ifcount; ++i) {
2273 InterfaceEntry* interface_entry = iftable->Get(i);
2274 Class* interface = interface_entry->GetInterface();
2275 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2276 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002277 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002278 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2279 Method* interface_method = interface->GetVirtualMethod(j);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002280 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002281 // For each method listed in the interface's method list, find the
2282 // matching method in our class's method list. We want to favor the
2283 // subclass over the superclass, which just requires walking
2284 // back from the end of the vtable. (This only matters if the
2285 // superclass defines a private method and this class redefines
2286 // it -- otherwise it would use the same vtable slot. In .dex files
2287 // those don't end up in the virtual method table, so it shouldn't
2288 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002289 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2290 Method* vtable_method = vtable->Get(k);
Ian Rogers466bb252011-10-14 03:29:56 -07002291 if (interface_method->HasSameNameAndSignature(vtable_method)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002292 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002293 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002294 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002295 return false;
2296 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002297 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002298 break;
2299 }
2300 }
2301 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002302 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002303 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers466bb252011-10-14 03:29:56 -07002304 if (miranda_list[mir]->HasSameNameAndSignature(interface_method)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002305 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002306 break;
2307 }
2308 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002309 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002310 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002311 miranda_method.reset(AllocMethod());
2312 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2313 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002314 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002315 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002316 }
2317 }
2318 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002319 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002320 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002321 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002322 klass->SetVirtualMethods((old_method_count == 0)
2323 ? AllocObjectArray<Method>(new_method_count)
2324 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002325
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002326 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2327 CHECK(vtable != NULL);
2328 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002329 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002330 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002331 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002332 Method* method = miranda_list[i];
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002333 method->SetDeclaringClass(klass.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07002334 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2335 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2336 klass->SetVirtualMethod(old_method_count + i, method);
2337 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002338 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002339 // TODO: do not assign to the vtable field until it is fully constructed.
2340 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002341 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002342
2343 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2344 for (int i = 0; i < vtable->GetLength(); ++i) {
2345 CHECK(vtable->Get(i) != NULL);
2346 }
2347
2348// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2349
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002350 return true;
2351}
2352
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002353bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2354 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002355 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002356}
2357
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002358bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2359 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002360 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002361 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002362 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002363 return success;
2364}
2365
Brian Carlstromdbc05252011-09-09 01:59:59 -07002366struct LinkFieldsComparator {
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002367 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002368 // First come reference fields, then 64-bit, and finally 32-bit
2369 const Class* type1 = field1->GetTypeDuringLinking();
2370 const Class* type2 = field2->GetTypeDuringLinking();
2371 bool isPrimitive1 = type1 != NULL && type1->IsPrimitive();
2372 bool isPrimitive2 = type2 != NULL && type2->IsPrimitive();
2373 bool is64bit1 = isPrimitive1 && (type1->IsPrimitiveLong() || type1->IsPrimitiveDouble());
2374 bool is64bit2 = isPrimitive2 && (type2->IsPrimitiveLong() || type2->IsPrimitiveDouble());
2375 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2376 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2377 if (order1 != order2) {
2378 return order1 < order2;
2379 }
2380
2381 // same basic group? then sort by string.
2382 std::string name1 = field1->GetName()->ToModifiedUtf8();
2383 std::string name2 = field2->GetName()->ToModifiedUtf8();
2384 return name1 < name2;
2385 }
2386};
2387
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002388bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002389 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002390 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002391
2392 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002393 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002394
2395 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002396 size_t size;
2397 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002398 if (is_static) {
2399 size = klass->GetClassSize();
2400 field_offset = Class::FieldsOffset();
2401 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002402 Class* super_class = klass->GetSuperClass();
2403 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002404 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002405 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002406 }
2407 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002408 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002409
Brian Carlstromdbc05252011-09-09 01:59:59 -07002410 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002411
Brian Carlstromdbc05252011-09-09 01:59:59 -07002412 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002413 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002414 std::deque<Field*> grouped_and_sorted_fields;
2415 for (size_t i = 0; i < num_fields; i++) {
2416 grouped_and_sorted_fields.push_back(fields->Get(i));
2417 }
2418 std::sort(grouped_and_sorted_fields.begin(),
2419 grouped_and_sorted_fields.end(),
2420 LinkFieldsComparator());
2421
2422 // References should be at the front.
2423 size_t current_field = 0;
2424 size_t num_reference_fields = 0;
2425 for (; current_field < num_fields; current_field++) {
2426 Field* field = grouped_and_sorted_fields.front();
2427 const Class* type = field->GetTypeDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002428 // if a field's type at this point is NULL it isn't primitive
Brian Carlstromdbc05252011-09-09 01:59:59 -07002429 bool isPrimitive = type != NULL && type->IsPrimitive();
2430 if (isPrimitive) {
2431 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002432 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002433 grouped_and_sorted_fields.pop_front();
2434 num_reference_fields++;
2435 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002436 field->SetOffset(field_offset);
2437 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002438 }
2439
2440 // Now we want to pack all of the double-wide fields together. If
2441 // we're not aligned, though, we want to shuffle one 32-bit field
2442 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002443 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002444 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2445 Field* field = grouped_and_sorted_fields[i];
2446 const Class* type = field->GetTypeDuringLinking();
2447 CHECK(type != NULL); // should only be working on primitive types
2448 DCHECK(type->IsPrimitive());
2449 if (type->IsPrimitiveLong() || type->IsPrimitiveDouble()) {
2450 continue;
2451 }
2452 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002453 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002454 // drop the consumed field
2455 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2456 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002457 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002458 // whether we found a 32-bit field for padding or not, we advance
2459 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002460 }
2461
2462 // Alignment is good, shuffle any double-wide fields forward, and
2463 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002464 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002465 while (!grouped_and_sorted_fields.empty()) {
2466 Field* field = grouped_and_sorted_fields.front();
2467 grouped_and_sorted_fields.pop_front();
2468 const Class* type = field->GetTypeDuringLinking();
2469 CHECK(type != NULL); // should only be working on primitive types
2470 DCHECK(type->IsPrimitive());
2471 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002472 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002473 field_offset = MemberOffset(field_offset.Uint32Value() +
2474 ((type->IsPrimitiveLong() || type->IsPrimitiveDouble())
2475 ? sizeof(uint64_t)
2476 : sizeof(uint32_t)));
2477 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002478 }
2479
Elliott Hughesadb460d2011-10-05 17:02:34 -07002480 // 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 -07002481 if (!is_static && klass->GetDescriptor()->Equals("Ljava/lang/ref/Reference;")) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002482 // We know there are no non-reference fields in the Reference classes, and we know
2483 // that 'referent' is alphabetically last, so this is easy...
2484 CHECK_EQ(num_reference_fields, num_fields);
2485 CHECK(fields->Get(num_fields - 1)->GetName()->Equals("referent"));
2486 --num_reference_fields;
2487 }
2488
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002489#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002490 // Make sure that all reference fields appear before
2491 // non-reference fields, and all double-wide fields are aligned.
2492 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002493 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002494 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002495 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002496 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002497 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002498 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002499 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2500 }
2501 const Class* type = field->GetTypeDuringLinking();
Elliott Hughesadb460d2011-10-05 17:02:34 -07002502 bool is_primitive = (type != NULL && type->IsPrimitive());
2503 if (klass->GetDescriptor()->Equals("Ljava/lang/ref/Reference;") && field->GetName()->Equals("referent")) {
2504 is_primitive = true; // We lied above, so we have to expect a lie here.
2505 }
2506 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002507 if (!seen_non_ref) {
2508 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002509 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002510 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002511 } else {
2512 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002513 }
2514 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002515 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002516 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002517 }
2518#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002519 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002520 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002521 if (is_static) {
2522 klass->SetNumReferenceStaticFields(num_reference_fields);
2523 klass->SetClassSize(size);
2524 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002525 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002526 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002527 klass->SetObjectSize(size);
2528 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002529 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002530 return true;
2531}
2532
2533// Set the bitmap of reference offsets, refOffsets, from the ifields
2534// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002535void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002536 uint32_t reference_offsets = 0;
2537 Class* super_class = klass->GetSuperClass();
2538 if (super_class != NULL) {
2539 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002540 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002541 if (reference_offsets == CLASS_WALK_SUPER) {
2542 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002543 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002544 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002545 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002546 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002547}
2548
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002549void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002550 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002551}
2552
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002553void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002554 uint32_t reference_offsets) {
2555 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002556 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
2557 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002558 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002559 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002560 // All of the fields that contain object references are guaranteed
2561 // to be at the beginning of the fields list.
2562 for (size_t i = 0; i < num_reference_fields; ++i) {
2563 // Note that byte_offset is the offset from the beginning of
2564 // object, not the offset into instance data
2565 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002566 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002567 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
2568 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
2569 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002570 CHECK_NE(new_bit, 0U);
2571 reference_offsets |= new_bit;
2572 } else {
2573 reference_offsets = CLASS_WALK_SUPER;
2574 break;
2575 }
2576 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002577 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002578 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002579 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002580 } else {
2581 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002582 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002583}
2584
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002585String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002586 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002587 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002588 if (resolved != NULL) {
2589 return resolved;
2590 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002591 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
2592 int32_t utf16_length = dex_file.GetStringLength(string_id);
2593 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07002594 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002595 dex_cache->SetResolvedString(string_idx, string);
2596 return string;
2597}
2598
2599Class* ClassLinker::ResolveType(const DexFile& dex_file,
2600 uint32_t type_idx,
2601 DexCache* dex_cache,
2602 const ClassLoader* class_loader) {
2603 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002604 if (resolved == NULL) {
2605 const char* descriptor = dex_file.dexStringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002606 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002607 if (resolved != NULL) {
jeffhaod760bc42011-10-03 14:54:53 -07002608 Class* check = resolved;
2609 while (check->IsArrayClass()) {
2610 check = check->GetComponentType();
2611 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002612 if (dex_cache != check->GetDexCache()) {
2613 if (check->GetClassLoader() != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002614 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002615 "Class with type index %d resolved by unexpected .dex", type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002616 resolved = NULL;
2617 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002618 }
2619 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002620 if (resolved != NULL) {
2621 dex_cache->SetResolvedType(type_idx, resolved);
2622 } else {
2623 DCHECK(Thread::Current()->IsExceptionPending());
2624 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002625 }
2626 return resolved;
2627}
2628
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002629Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
2630 uint32_t method_idx,
2631 DexCache* dex_cache,
2632 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002633 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002634 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
2635 if (resolved != NULL) {
2636 return resolved;
2637 }
2638 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2639 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
2640 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002641 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002642 return NULL;
2643 }
2644
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002645 const char* name = dex_file.dexStringById(method_id.name_idx_);
Elliott Hughes0c424cb2011-08-26 10:16:25 -07002646 std::string signature(dex_file.CreateMethodDescriptor(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002647 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002648 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002649 } else if (klass->IsInterface()) {
2650 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002651 } else {
2652 resolved = klass->FindVirtualMethod(name, signature);
2653 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002654 if (resolved != NULL) {
2655 dex_cache->SetResolvedMethod(method_idx, resolved);
2656 } else {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002657 ThrowNoSuchMethodError(is_direct ? "direct" : "virtual", klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002658 }
2659 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002660}
2661
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002662Field* ClassLinker::ResolveField(const DexFile& dex_file,
2663 uint32_t field_idx,
2664 DexCache* dex_cache,
2665 const ClassLoader* class_loader,
2666 bool is_static) {
2667 Field* resolved = dex_cache->GetResolvedField(field_idx);
2668 if (resolved != NULL) {
2669 return resolved;
2670 }
2671 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
2672 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
2673 if (klass == NULL) {
2674 return NULL;
2675 }
2676
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002677 const char* name = dex_file.dexStringById(field_id.name_idx_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002678 Class* field_type = ResolveType(dex_file, field_id.type_idx_, dex_cache, class_loader);
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002679 if (field_type == NULL) {
2680 // TODO: LinkageError?
2681 UNIMPLEMENTED(WARNING) << "Failed to resolve type of field " << name
2682 << " in " << PrettyClass(klass);
2683 return NULL;
2684}
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002685 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002686 resolved = klass->FindStaticField(name, field_type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002687 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002688 resolved = klass->FindInstanceField(name, field_type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002689 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002690 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002691 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002692 } else {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002693 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002694 }
2695 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002696}
2697
Ian Rogersad25ac52011-10-04 19:13:33 -07002698const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
2699 Class* declaring_class = referrer->GetDeclaringClass();
2700 DexCache* dex_cache = declaring_class->GetDexCache();
2701 const DexFile& dex_file = FindDexFile(dex_cache);
2702 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2703 return dex_file.GetShorty(method_id.proto_idx_);
2704}
2705
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002706void ClassLinker::DumpAllClasses(int flags) const {
2707 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
2708 // lock held, because it might need to resolve a field's type, which would try to take the lock.
2709 std::vector<Class*> all_classes;
2710 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002711 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002712 typedef Table::const_iterator It; // TODO: C++0x auto
2713 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
2714 all_classes.push_back(it->second);
2715 }
2716 }
2717
2718 for (size_t i = 0; i < all_classes.size(); ++i) {
2719 all_classes[i]->DumpClass(std::cerr, flags);
2720 }
2721}
2722
Elliott Hughese27955c2011-08-26 15:21:24 -07002723size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002724 MutexLock mu(classes_lock_);
Elliott Hughese27955c2011-08-26 15:21:24 -07002725 return classes_.size();
2726}
2727
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002728pid_t ClassLinker::GetClassesLockOwner() {
2729 return classes_lock_.GetOwner();
2730}
2731
2732pid_t ClassLinker::GetDexLockOwner() {
2733 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07002734}
2735
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002736} // namespace art