blob: dd8fc11f45993c10a6c849bff676e4fcbf4fc969 [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"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080012#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070013#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070014#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070015#include "dex_verifier.h"
16#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070017#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070018#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070019#include "logging.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070020#include "monitor.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070021#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070022#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080023#include "object_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070024#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070025#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070026#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070027#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070028#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070029#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070031#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070032#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070033
34namespace art {
35
Elliott Hughes4a2b4172011-09-20 17:08:25 -070036namespace {
37
Elliott Hughes362f9bc2011-10-17 18:56:41 -070038void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070039void ThrowNoClassDefFoundError(const char* fmt, ...) {
40 va_list args;
41 va_start(args, fmt);
42 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
43 va_end(args);
44}
45
Elliott Hughes362f9bc2011-10-17 18:56:41 -070046void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070047void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070048 va_list args;
49 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070050 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070051 va_end(args);
52}
53
Elliott Hughes362f9bc2011-10-17 18:56:41 -070054void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070055void ThrowLinkageError(const char* fmt, ...) {
56 va_list args;
57 va_start(args, fmt);
58 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
59 va_end(args);
60}
61
Ian Rogers9f1ab122011-12-12 08:52:43 -080062void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
63 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080064 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070065 std::ostringstream msg;
Ian Rogers9f1ab122011-12-12 08:52:43 -080066 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << "." << signature
67 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080068 std::string location(kh.GetLocation());
69 if (!location.empty()) {
70 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070071 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070072 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070073}
74
Ian Rogers9f1ab122011-12-12 08:52:43 -080075void ThrowNoSuchFieldError(bool is_static, Class* c, const StringPiece& type,
76 const StringPiece& name) {
77 ClassHelper kh(c);
78 std::ostringstream msg;
79 msg << "no " << (is_static ? "static": "instance") << " field " << name << " of type " << type
80 << " in class " << kh.GetDescriptor() << " or its superclasses";
81 std::string location(kh.GetLocation());
82 if (!location.empty()) {
83 msg << " (defined in " << location << ")";
84 }
85 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
86}
87
Elliott Hughes4a2b4172011-09-20 17:08:25 -070088void ThrowEarlierClassFailure(Class* c) {
89 /*
90 * The class failed to initialize on a previous attempt, so we want to throw
91 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
92 * failed in verification, in which case v2 5.4.1 says we need to re-throw
93 * the previous error.
94 */
95 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
96
97 if (c->GetVerifyErrorClass() != NULL) {
98 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080099 ClassHelper ve_ch(c->GetVerifyErrorClass());
100 std::string error_descriptor(ve_ch.GetDescriptor());
101 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700102 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800103 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700104 }
105}
106
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700107void WrapExceptionInInitializer() {
108 JNIEnv* env = Thread::Current()->GetJniEnv();
109
110 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
111 CHECK(cause.get() != NULL);
112
113 env->ExceptionClear();
114
115 // TODO: add java.lang.Error to JniConstants?
116 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
117 CHECK(error_class.get() != NULL);
118 if (env->IsInstanceOf(cause.get(), error_class.get())) {
119 // We only wrap non-Error exceptions; an Error can just be used as-is.
120 env->Throw(cause.get());
121 return;
122 }
123
124 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
125 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
126 CHECK(eiie_class.get() != NULL);
127
128 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
129 CHECK(mid != NULL);
130
131 ScopedLocalRef<jthrowable> eiie(env,
132 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
133 env->Throw(eiie.get());
134}
135
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700136} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700137
Elliott Hughes418d20f2011-09-22 14:00:39 -0700138const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700139 "Ljava/lang/Class;",
140 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700141 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700142 "[Ljava/lang/Object;",
143 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700144 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700145 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700146 "Ljava/lang/reflect/Field;",
147 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700148 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700149 "Ljava/lang/ClassLoader;",
150 "Ldalvik/system/BaseDexClassLoader;",
151 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700152 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700153 "Z",
154 "B",
155 "C",
156 "D",
157 "F",
158 "I",
159 "J",
160 "S",
161 "V",
162 "[Z",
163 "[B",
164 "[C",
165 "[D",
166 "[F",
167 "[I",
168 "[J",
169 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700170 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700171};
172
Elliott Hughes5f791332011-09-15 17:45:30 -0700173class ObjectLock {
174 public:
175 explicit ObjectLock(Object* object) : self_(Thread::Current()), obj_(object) {
176 CHECK(object != NULL);
177 obj_->MonitorEnter(self_);
178 }
179
180 ~ObjectLock() {
181 obj_->MonitorExit(self_);
182 }
183
184 void Wait() {
185 return Monitor::Wait(self_, obj_, 0, 0, false);
186 }
187
188 void Notify() {
189 obj_->Notify();
190 }
191
192 void NotifyAll() {
193 obj_->NotifyAll();
194 }
195
196 private:
197 Thread* self_;
198 Object* obj_;
199 DISALLOW_COPY_AND_ASSIGN(ObjectLock);
200};
201
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800202ClassLinker* ClassLinker::Create(const std::string& boot_class_path, InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700203 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800204 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700205 class_linker->Init(boot_class_path);
206 return class_linker.release();
207}
208
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800209ClassLinker* ClassLinker::Create(InternTable* intern_table) {
210 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700211 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700212 return class_linker.release();
213}
214
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800215ClassLinker::ClassLinker(InternTable* intern_table)
216 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700217 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700218 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700219 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700220 init_done_(false),
221 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700222 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700223}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700224
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700225void CreateClassPath(const std::string& class_path,
226 std::vector<const DexFile*>& class_path_vector) {
227 std::vector<std::string> parsed;
228 Split(class_path, ':', parsed);
229 for (size_t i = 0; i < parsed.size(); ++i) {
230 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700231 if (dex_file == NULL) {
232 LOG(WARNING) << "Failed to open dex file " << parsed[i];
233 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700234 class_path_vector.push_back(dex_file);
235 }
236 }
237}
238
239void ClassLinker::Init(const std::string& boot_class_path) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800240 VLOG(startup) << "ClassLinker::InitFrom entering boot_class_path=" << boot_class_path;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700241
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700242 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700243
Elliott Hughes30646832011-10-13 16:59:46 -0700244 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700245 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
246 CHECK(java_lang_Class.get() != NULL);
247 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700248 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700249 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700250
Elliott Hughes418d20f2011-09-22 14:00:39 -0700251 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
253 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700254
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700255 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700256 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
257 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700258 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700259 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700260 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700261
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700262 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700263 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
264 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700265
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700266 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700267 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700268
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700269 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700270 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
271 char_array_class->SetComponentType(char_class.get());
272 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700273
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700274 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700275 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
276 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700277 java_lang_String->SetObjectSize(sizeof(String));
278 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400279
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700280 // Create storage for root classes, save away our work so far (requires
281 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700282 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700283 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700284 SetClassRoot(kJavaLangClass, java_lang_Class.get());
285 SetClassRoot(kJavaLangObject, java_lang_Object.get());
286 SetClassRoot(kClassArrayClass, class_array_class.get());
287 SetClassRoot(kObjectArrayClass, object_array_class.get());
288 SetClassRoot(kCharArrayClass, char_array_class.get());
289 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700290
291 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700292 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
293 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
294 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
295 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
296 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
297 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
298 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
299 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700300
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700301 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700302 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700303
304 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700305 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700306 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700307 IntArray::SetArrayClass(int_array_class.get());
308 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700309
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700310 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700311
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700312 // setup boot_class_path_ and register class_path now that we can
313 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700314 std::vector<const DexFile*> boot_class_path_vector;
315 CreateClassPath(boot_class_path, boot_class_path_vector);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700316 CHECK_NE(0U, boot_class_path_vector.size());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700317 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
318 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700319 CHECK(dex_file != NULL);
320 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700321 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700322
Elliott Hughes80609252011-09-23 17:24:51 -0700323 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700325 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700326 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700327 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700328 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
329
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
331 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700337 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700338 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700339 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700340 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700341 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700342 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700343
344 // now we can use FindSystemClass
345
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700346 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700347 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700348 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700349
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700350 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351 java_lang_Object->SetStatus(Class::kStatusNotReady);
352 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700353 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700354 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
355 java_lang_String->SetStatus(Class::kStatusNotReady);
356 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700357 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
359
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700360 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700361 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
362 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
363
364 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
365 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
366
367 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700368 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700369
370 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
371 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
372
373 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700374 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700375
376 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
377 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
378
379 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
380 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
381
382 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
383 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
384
Elliott Hughes418d20f2011-09-22 14:00:39 -0700385 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700386 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700387
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700388 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700389 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700390
391 // Setup the single, global copies of "interfaces" and "iftable"
392 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
393 CHECK(java_lang_Cloneable != NULL);
394 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
395 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700396 // We assume that Cloneable/Serializable don't have superinterfaces --
397 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700398 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800399 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
400 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700401
Elliott Hughes418d20f2011-09-22 14:00:39 -0700402 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800403 ClassHelper kh(class_array_class.get(), this);
404 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
405 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
406 kh.ChangeClass(object_array_class.get());
407 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
408 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700409 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700410 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700411 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700412 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700413
Elliott Hughes80609252011-09-23 17:24:51 -0700414 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
415 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700416 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700417
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700418 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700419 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700420 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700421
422 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700423 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700424 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700425
Ian Rogers466bb252011-10-14 03:29:56 -0700426 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
427
428 // Create java.lang.reflect.Proxy root
429 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
430 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
431
Brian Carlstrom1f870082011-08-23 16:02:11 -0700432 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700433 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
434 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700435 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700436 java_lang_ref_FinalizerReference->SetAccessFlags(
437 java_lang_ref_FinalizerReference->GetAccessFlags() |
438 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700439 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700440 java_lang_ref_PhantomReference->SetAccessFlags(
441 java_lang_ref_PhantomReference->GetAccessFlags() |
442 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700443 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700444 java_lang_ref_SoftReference->SetAccessFlags(
445 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700446 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700447 java_lang_ref_WeakReference->SetAccessFlags(
448 java_lang_ref_WeakReference->GetAccessFlags() |
449 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700450
Brian Carlstromaded5f72011-10-07 17:15:04 -0700451 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700452 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700453 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700454 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
455
456 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
457 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
458 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
459
460 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
461 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
462 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
463 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
464
465 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700466 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
467 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700468 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700469
Brian Carlstroma663ea52011-08-19 23:33:41 -0700470 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700471
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800472 VLOG(startup) << "ClassLinker::InitFrom exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700473}
474
475void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800476 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700477
478 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700479 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700480 // as the types of the field can't be resolved prior to the runtime being
481 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700482 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700483 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700484 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
485
Elliott Hughesadb460d2011-10-05 17:02:34 -0700486 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
487
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800488 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
489
Brian Carlstrom16192862011-09-12 17:50:06 -0700490 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800491 FieldHelper fh(pendingNext, this);
492 CHECK_STREQ(fh.GetName(), "pendingNext");
493 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
494 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700495
496 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800497 fh.ChangeField(queue);
498 CHECK_STREQ(fh.GetName(), "queue");
499 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
500 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700501
502 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800503 fh.ChangeField(queueNext);
504 CHECK_STREQ(fh.GetName(), "queueNext");
505 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
506 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700507
508 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800509 fh.ChangeField(referent);
510 CHECK_STREQ(fh.GetName(), "referent");
511 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
512 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700513
514 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800515 fh.ChangeField(zombie);
516 CHECK_STREQ(fh.GetName(), "zombie");
517 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
518 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700519
520 Heap::SetReferenceOffsets(referent->GetOffset(),
521 queue->GetOffset(),
522 queueNext->GetOffset(),
523 pendingNext->GetOffset(),
524 zombie->GetOffset());
525
Brian Carlstroma663ea52011-08-19 23:33:41 -0700526 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700527 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700528 ClassRoot class_root = static_cast<ClassRoot>(i);
529 Class* klass = GetClassRoot(class_root);
530 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700531 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700532 // note SetClassRoot does additional validation.
533 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700534 }
535
Elliott Hughes92f14b22011-10-06 12:29:54 -0700536 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700537
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700538 // disable the slow paths in FindClass and CreatePrimitiveClass now
539 // that Object, Class, and Object[] are setup
540 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700541
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800542 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700543}
544
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700545void ClassLinker::RunRootClinits() {
546 Thread* self = Thread::Current();
547 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
548 Class* c = GetClassRoot(ClassRoot(i));
549 if (!c->IsArrayClass() && !c->IsPrimitive()) {
550 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700551 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700552 }
553 }
554}
555
jeffhao262bf462011-10-20 18:36:32 -0700556const OatFile* ClassLinker::GenerateOatFile(const std::string& filename) {
557 std::string oat_filename(GetArtCacheFilenameOrDie(OatFile::DexFilenameToOatFilename(filename)));
558
559 // fork and exec dex2oat
560 pid_t pid = fork();
561 if (pid == 0) {
562 std::string boot_image_option("--boot-image=");
563 boot_image_option += Heap::GetSpaces()[0]->GetImageFilename();
564
565 std::string dex_file_option("--dex-file=");
566 dex_file_option += filename;
567
568 std::string oat_file_option("--oat=");
569 oat_file_option += oat_filename;
570
Elliott Hughes234da572011-11-03 22:13:06 -0700571 std::string dex2oat("/system/bin/dex2oat");
572#ifndef NDEBUG
573 dex2oat += 'd';
574#endif
575
576 execl(dex2oat.c_str(), dex2oat.c_str(),
jeffhao5d840402011-10-24 17:09:45 -0700577 "--runtime-arg", "-Xms64m",
578 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500579 "--runtime-arg", "-classpath",
580 "--runtime-arg", Runtime::Current()->GetClassPath().c_str(),
jeffhao262bf462011-10-20 18:36:32 -0700581 boot_image_option.c_str(),
582 dex_file_option.c_str(),
583 oat_file_option.c_str(),
584 NULL);
585
586 PLOG(FATAL) << "execl(dex2oatd) failed";
587 return NULL;
588 } else {
589 // wait for dex2oat to finish
590 int status;
591 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
592 if (got_pid != pid) {
593 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
594 return NULL;
595 }
596 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
597 LOG(ERROR) << "dex2oatd failed with dex-file=" << filename;
598 return NULL;
599 }
600 }
601 return OatFile::Open(oat_filename, "", NULL);
602}
603
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700604OatFile* ClassLinker::OpenOat(const Space* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700605 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700606 const Runtime* runtime = Runtime::Current();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800607 VLOG(startup) << "ClassLinker::OpenOat entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700608 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800609 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
610 // check the down cast
611 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700612 std::string oat_filename;
613 oat_filename += runtime->GetHostPrefix();
614 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma9f19782011-10-13 00:14:47 -0700615 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBaseAddr());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700616 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700617 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700618 return NULL;
619 }
620 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
621 uint32_t image_oat_checksum = image_header.GetOatChecksum();
622 if (oat_checksum != image_oat_checksum) {
623 LOG(ERROR) << "Failed to match oat filechecksum " << std::hex << oat_checksum
624 << " to expected oat checksum " << std::hex << oat_checksum
625 << " in image";
626 return NULL;
627 }
628 oat_files_.push_back(oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800629 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700630 return oat_file;
631}
632
Brian Carlstromae826982011-11-09 01:33:42 -0800633const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
634 for (size_t i = 0; i < oat_files_.size(); i++) {
635 const OatFile* oat_file = oat_files_[i];
636 DCHECK(oat_file != NULL);
Ian Rogers7fe2c692011-12-06 16:35:59 -0800637 if (oat_file->GetOatDexFile(dex_file.GetLocation(), false)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800638 return oat_file;
639 }
640 }
641 return NULL;
642}
643
644const OatFile* ClassLinker::FindOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700645 MutexLock mu(dex_lock_);
Brian Carlstromae826982011-11-09 01:33:42 -0800646 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
647 if (oat_file != NULL) {
648 return oat_file;
649 }
650
651 oat_file = FindOatFileFromOatLocation(OatFile::DexFilenameToOatFilename(dex_file.GetLocation()));
jeffhao262bf462011-10-20 18:36:32 -0700652 if (oat_file != NULL) {
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700653 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
654 if (dex_file.GetHeader().checksum_ == oat_dex_file->GetDexFileChecksum()) {
655 return oat_file;
656 }
657 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
658 << " is older than " << dex_file.GetLocation() << " --- regenerating";
Elliott Hughes234da572011-11-03 22:13:06 -0700659 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
660 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
661 }
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700662 // Fall through...
jeffhao262bf462011-10-20 18:36:32 -0700663 }
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700664 // Generate oat file if it wasn't found or was obsolete.
jeffhao262bf462011-10-20 18:36:32 -0700665 oat_file = GenerateOatFile(dex_file.GetLocation());
666 if (oat_file == NULL) {
667 LOG(ERROR) << "Failed to generate oat file from dex file " << dex_file.GetLocation();
668 return NULL;
669 }
670 oat_files_.push_back(oat_file);
671 return oat_file;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700672}
673
Brian Carlstromae826982011-11-09 01:33:42 -0800674const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700675 for (size_t i = 0; i < oat_files_.size(); i++) {
676 const OatFile* oat_file = oat_files_[i];
677 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800678 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700679 return oat_file;
680 }
681 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700682 return NULL;
683}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700684
Brian Carlstromae826982011-11-09 01:33:42 -0800685const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
686 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700687 if (oat_file != NULL) {
688 return oat_file;
689 }
690
Brian Carlstromae826982011-11-09 01:33:42 -0800691 oat_file = OatFile::Open(oat_location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700692 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800693 if (oat_location.empty() || oat_location[0] != '/') {
694 LOG(ERROR) << "Failed to open oat file from " << oat_location;
Brian Carlstroma9f19782011-10-13 00:14:47 -0700695 return NULL;
696 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700697
Brian Carlstroma9f19782011-10-13 00:14:47 -0700698 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Brian Carlstromae826982011-11-09 01:33:42 -0800699 std::string cache_location = GetArtCacheFilenameOrDie(oat_location);
700 oat_file = FindOpenedOatFileFromOatLocation(cache_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700701 if (oat_file != NULL) {
702 return oat_file;
703 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700704 oat_file = OatFile::Open(cache_location, "", NULL);
705 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800706 LOG(INFO) << "Failed to open oat file from " << oat_location << " or " << cache_location << ".";
Brian Carlstroma9f19782011-10-13 00:14:47 -0700707 return NULL;
708 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700709 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700710
Brian Carlstromae826982011-11-09 01:33:42 -0800711 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromfad71432011-10-16 20:25:10 -0700712 oat_files_.push_back(oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700713 return oat_file;
714}
715
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700716void ClassLinker::InitFromImage() {
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700717 const Runtime* runtime = Runtime::Current();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800718 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700719 CHECK(!init_done_);
720
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700721 const std::vector<Space*>& spaces = Heap::GetSpaces();
722 for (size_t i = 0; i < spaces.size(); i++) {
723 Space* space = spaces[i] ;
724 if (space->IsImageSpace()) {
725 OatFile* oat_file = OpenOat(space);
726 CHECK(oat_file != NULL) << "Failed to open oat file for image";
727 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
728 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
729
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800730 if (i == 0) {
731 // Special case of setting up the String class early so that we can test arbitrary objects
732 // as being Strings or not
733 Class* java_lang_String = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
734 ->AsObjectArray<Class>()->Get(kJavaLangString);
735 String::SetClass(java_lang_String);
736 }
737
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700738 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
739 static_cast<uint32_t>(dex_caches->GetLength()));
740 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700741 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700742 const std::string& dex_file_location = dex_cache->GetLocation()->ToModifiedUtf8();
743
744 std::string dex_filename;
745 dex_filename += runtime->GetHostPrefix();
746 dex_filename += dex_file_location;
747 const DexFile* dex_file = DexFile::Open(dex_filename, runtime->GetHostPrefix());
748 if (dex_file == NULL) {
749 LOG(FATAL) << "Failed to open dex file " << dex_filename
750 << " referenced from oat file as " << dex_file_location;
751 }
752
Brian Carlstromaded5f72011-10-07 17:15:04 -0700753 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
754 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700755
Brian Carlstromdf143242011-10-10 18:05:34 -0700756 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700757 }
758 }
759 }
760
Brian Carlstroma663ea52011-08-19 23:33:41 -0700761 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
762 DCHECK(heap_bitmap != NULL);
763
Brian Carlstroma663ea52011-08-19 23:33:41 -0700764 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700765 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700766
767 // reinit class_roots_
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700768 Object* class_roots_object = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
769 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700770
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800771 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700772 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
773 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800774 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700775 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700776 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700777 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
778 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
779 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
780 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
781 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
782 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
783 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
784 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700785 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700786 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700787
788 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700789
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800790 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700791}
792
Brian Carlstrom78128a62011-09-15 17:21:19 -0700793void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700794 DCHECK(obj != NULL);
795 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700796 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700797
Elliott Hughesdbb40792011-11-18 17:05:22 -0800798 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700799 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700800 return;
801 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700802 if (obj->IsClass()) {
803 // restore class to ClassLinker::classes_ table
804 Class* klass = obj->AsClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800805 std::string descriptor(ClassHelper(klass, class_linker).GetDescriptor());
Ian Rogers5d76c432011-10-31 21:42:49 -0700806 bool success = class_linker->InsertClass(descriptor, klass, true);
807 DCHECK(success);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700808 return;
809 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700810}
811
812// Keep in sync with InitCallback. Anything we visit, we need to
813// reinit references to when reinitializing a ClassLinker from a
814// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700815void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
816 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700817
818 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700819 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700820 }
821
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700822 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700823 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700824 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700825 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700826 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700827 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700828 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700829 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700830
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700831 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700832}
833
Elliott Hughesa2155262011-11-16 16:26:58 -0800834void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
835 MutexLock mu(classes_lock_);
836 typedef Table::const_iterator It; // TODO: C++0x auto
837 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
838 if (!visitor(it->second, arg)) {
839 return;
840 }
841 }
842 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
843 if (!visitor(it->second, arg)) {
844 return;
845 }
846 }
847}
848
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700849ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700850 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700851 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700852 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700853 BooleanArray::ResetArrayClass();
854 ByteArray::ResetArrayClass();
855 CharArray::ResetArrayClass();
856 DoubleArray::ResetArrayClass();
857 FloatArray::ResetArrayClass();
858 IntArray::ResetArrayClass();
859 LongArray::ResetArrayClass();
860 ShortArray::ResetArrayClass();
861 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700862 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700863 STLDeleteElements(&boot_class_path_);
864 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700865}
866
867DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700868 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
869 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700870 return NULL;
871 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700872 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
873 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700874 return NULL;
875 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700876 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
877 if (strings.get() == NULL) {
878 return NULL;
879 }
880 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
881 if (types.get() == NULL) {
882 return NULL;
883 }
884 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
885 if (methods.get() == NULL) {
886 return NULL;
887 }
888 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
889 if (fields.get() == NULL) {
890 return NULL;
891 }
892 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
893 if (code_and_direct_methods.get() == NULL) {
894 return NULL;
895 }
896 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
897 if (initialized_static_storage.get() == NULL) {
898 return NULL;
899 }
900
901 dex_cache->Init(location.get(),
902 strings.get(),
903 types.get(),
904 methods.get(),
905 fields.get(),
906 code_and_direct_methods.get(),
907 initialized_static_storage.get());
908 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -0700909}
910
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700911CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
912 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -0700913}
914
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700915InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
916 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700917 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
918 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700919 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700920 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700921}
922
Brian Carlstrom4873d462011-08-21 15:23:39 -0700923Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
924 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700925 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700926 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700927 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700928 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700929}
930
Brian Carlstrom4873d462011-08-21 15:23:39 -0700931Class* ClassLinker::AllocClass(size_t class_size) {
932 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -0700933}
934
Jesse Wilson35baaab2011-08-10 16:18:03 -0400935Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700936 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -0700937}
938
939Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -0700940 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700941}
942
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700943ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
944 return ObjectArray<StackTraceElement>::Alloc(
945 GetClassRoot(kJavaLangStackTraceElementArrayClass),
946 length);
947}
948
Brian Carlstromaded5f72011-10-07 17:15:04 -0700949Class* EnsureResolved(Class* klass) {
950 DCHECK(klass != NULL);
951 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -0700952 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700953 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700954 ObjectLock lock(klass);
955 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700956 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700957 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800958 PrettyDescriptor(klass).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700959 return NULL;
960 }
961 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700962 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700963 lock.Wait();
964 }
965 }
966 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700967 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700968 return NULL;
969 }
970 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -0700971 CHECK(klass->IsResolved()) << PrettyClass(klass);
972 CHECK(!self->IsExceptionPending())
973 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
974 return klass;
975}
976
977Class* ClassLinker::FindClass(const std::string& descriptor,
978 const ClassLoader* class_loader) {
979 CHECK_NE(descriptor.size(), 0U);
980 Thread* self = Thread::Current();
981 DCHECK(self != NULL);
982 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800983 if (descriptor.size() == 1) {
984 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
985 // for primitive classes that aren't backed by dex files.
986 return FindPrimitiveClass(descriptor[0]);
987 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700988 // Find the class in the loaded classes table.
989 Class* klass = LookupClass(descriptor, class_loader);
990 if (klass != NULL) {
991 return EnsureResolved(klass);
992 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700993 // Class is not yet loaded.
994 if (descriptor[0] == '[') {
995 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700996
Jesse Wilson47daf872011-11-23 11:42:45 -0500997 } else if (class_loader == NULL) {
998 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
999 if (pair.second != NULL) {
1000 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1001 }
1002
1003 } else if (ClassLoader::UseCompileTimeClassPath()) {
1004 // first try the boot class path
1005 Class* system_class = FindSystemClass(descriptor);
1006 if (system_class != NULL) {
1007 return system_class;
1008 }
1009 CHECK(self->IsExceptionPending());
1010 self->ClearException();
1011
1012 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001013 const std::vector<const DexFile*>& class_path
1014 = ClassLoader::GetCompileTimeClassPath(class_loader);
1015 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001016 if (pair.second != NULL) {
1017 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001018 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001019
1020 } else {
1021 std::string class_name_string = DescriptorToDot(descriptor);
1022 ScopedThreadStateChange(self, Thread::kNative);
1023 JNIEnv* env = self->GetJniEnv();
1024 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1025 CHECK(c.get() != NULL);
1026 // TODO: cache method?
1027 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1028 CHECK(mid != NULL);
1029 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1030 if (class_name_object.get() == NULL) {
1031 return NULL;
1032 }
1033 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
1034 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid, class_name_object.get()));
1035 return Decode<Class*>(env, result.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001036 }
1037
Jesse Wilson47daf872011-11-23 11:42:45 -05001038 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
1039 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001040}
1041
1042Class* ClassLinker::DefineClass(const std::string& descriptor,
1043 const ClassLoader* class_loader,
1044 const DexFile& dex_file,
1045 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001046 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001047 // Load the class from the dex file.
1048 if (!init_done_) {
1049 // finish up init of hand crafted class_roots_
1050 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001051 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001052 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001053 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001054 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001055 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001056 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001057 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001058 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001059 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001060 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001061 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001062 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001063 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001064 }
1065 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001066 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001067 }
1068 klass->SetDexCache(FindDexCache(dex_file));
1069 LoadClass(dex_file, dex_class_def, klass, class_loader);
1070 // Check for a pending exception during load
1071 Thread* self = Thread::Current();
1072 if (self->IsExceptionPending()) {
1073 return NULL;
1074 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001075 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001076 klass->SetClinitThreadId(self->GetTid());
1077 // Add the newly loaded class to the loaded classes table.
Ian Rogers5d76c432011-10-31 21:42:49 -07001078 bool success = InsertClass(descriptor, klass.get(), false); // TODO: just return collision
Brian Carlstromaded5f72011-10-07 17:15:04 -07001079 if (!success) {
1080 // We may fail to insert if we raced with another thread.
1081 klass->SetClinitThreadId(0);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001082 klass.reset(LookupClass(descriptor, class_loader));
1083 CHECK(klass.get() != NULL);
1084 return klass.get();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001085 }
1086 // Finish loading (if necessary) by finding parents
1087 CHECK(!klass->IsLoaded());
1088 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1089 // Loading failed.
1090 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001091 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001092 lock.NotifyAll();
1093 return NULL;
1094 }
1095 CHECK(klass->IsLoaded());
1096 // Link the class (if necessary)
1097 CHECK(!klass->IsResolved());
1098 if (!LinkClass(klass)) {
1099 // Linking failed.
1100 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001101 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001102 lock.NotifyAll();
1103 return NULL;
1104 }
1105 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001106
1107 /*
1108 * We send CLASS_PREPARE events to the debugger from here. The
1109 * definition of "preparation" is creating the static fields for a
1110 * class and initializing them to the standard default values, but not
1111 * executing any code (that comes later, during "initialization").
1112 *
1113 * We did the static preparation in LinkClass.
1114 *
1115 * The class has been prepared and resolved but possibly not yet verified
1116 * at this point.
1117 */
1118 Dbg::PostClassPrepare(klass.get());
1119
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001120 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001121}
1122
Brian Carlstrom4873d462011-08-21 15:23:39 -07001123// Precomputes size that will be needed for Class, matching LinkStaticFields
1124size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1125 const DexFile::ClassDef& dex_class_def) {
1126 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001127 size_t num_ref = 0;
1128 size_t num_32 = 0;
1129 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001130 if (class_data != NULL) {
1131 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1132 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001133 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001134 char c = descriptor[0];
1135 if (c == 'L' || c == '[') {
1136 num_ref++;
1137 } else if (c == 'J' || c == 'D') {
1138 num_64++;
1139 } else {
1140 num_32++;
1141 }
1142 }
1143 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001144 // start with generic class data
1145 size_t size = sizeof(Class);
1146 // follow with reference fields which must be contiguous at start
1147 size += (num_ref * sizeof(uint32_t));
1148 // if there are 64-bit fields to add, make sure they are aligned
1149 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1150 if (num_32 != 0) {
1151 // use an available 32-bit field for padding
1152 num_32--;
1153 }
1154 size += sizeof(uint32_t); // either way, we are adding a word
1155 DCHECK_EQ(size, RoundUp(size, 8));
1156 }
1157 // tack on any 64-bit fields now that alignment is assured
1158 size += (num_64 * sizeof(uint64_t));
1159 // tack on any remaining 32-bit fields
1160 size += (num_32 * sizeof(uint32_t));
1161 return size;
1162}
1163
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001164void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001165 // Every kind of method should at least get an invoke stub from the oat_method.
1166 // non-abstract methods also get their code pointers.
1167 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001168 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001169
1170 if (method->IsAbstract()) {
1171 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1172 return;
1173 }
1174 if (method->IsNative()) {
1175 // unregistering restores the dlsym lookup stub
1176 method->UnregisterNative();
1177 return;
1178 }
1179}
1180
Brian Carlstromf615a612011-07-23 12:50:34 -07001181void ClassLinker::LoadClass(const DexFile& dex_file,
1182 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001183 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001184 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001185 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001186 CHECK(klass->GetDexCache() != NULL);
1187 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001188 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001189 CHECK(descriptor != NULL);
1190
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001191 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001192 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001193 // Make sure that none of our runtime-only flags are set.
1194 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001195 klass->SetAccessFlags(access_flags);
1196 klass->SetClassLoader(class_loader);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001197 DCHECK(klass->GetPrimitiveType() == Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001198 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001199
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001200 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001201
Ian Rogers0571d352011-11-03 19:51:38 -07001202 // Load fields fields.
1203 const byte* class_data = dex_file.GetClassData(dex_class_def);
1204 if (class_data == NULL) {
1205 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001206 }
Ian Rogers0571d352011-11-03 19:51:38 -07001207 ClassDataItemIterator it(dex_file, class_data);
1208 if (it.NumStaticFields() != 0) {
1209 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1210 }
1211 if (it.NumInstanceFields() != 0) {
1212 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1213 }
1214 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1215 SirtRef<Field> sfield(AllocField());
1216 klass->SetStaticField(i, sfield.get());
1217 LoadField(dex_file, it, klass, sfield);
1218 }
1219 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1220 SirtRef<Field> ifield(AllocField());
1221 klass->SetInstanceField(i, ifield.get());
1222 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001223 }
1224
Brian Carlstromaded5f72011-10-07 17:15:04 -07001225 UniquePtr<const OatFile::OatClass> oat_class;
1226 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001227 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001228 if (oat_file != NULL) {
1229 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1230 if (oat_dex_file != NULL) {
1231 uint32_t class_def_index;
1232 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1233 CHECK(found) << descriptor;
1234 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001235 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001236 }
1237 }
1238 }
Ian Rogers0571d352011-11-03 19:51:38 -07001239 // Load methods.
1240 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001241 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001242 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001243 }
Ian Rogers0571d352011-11-03 19:51:38 -07001244 if (it.NumVirtualMethods() != 0) {
1245 // TODO: append direct methods to class object
1246 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001247 }
Ian Rogers0571d352011-11-03 19:51:38 -07001248 size_t method_index = 0;
1249 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1250 SirtRef<Method> method(AllocMethod());
1251 klass->SetDirectMethod(i, method.get());
1252 LoadMethod(dex_file, it, klass, method);
1253 if (oat_class.get() != NULL) {
1254 LinkCode(method, oat_class.get(), method_index);
1255 }
1256 method_index++;
1257 }
1258 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1259 SirtRef<Method> method(AllocMethod());
1260 klass->SetVirtualMethod(i, method.get());
1261 LoadMethod(dex_file, it, klass, method);
1262 if (oat_class.get() != NULL) {
1263 LinkCode(method, oat_class.get(), method_index);
1264 }
1265 method_index++;
1266 }
1267 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001268}
1269
Ian Rogers0571d352011-11-03 19:51:38 -07001270void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1271 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001272 uint32_t field_idx = it.GetMemberIndex();
1273 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001274 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001275 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001276}
1277
Ian Rogers0571d352011-11-03 19:51:38 -07001278void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1279 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001280 uint32_t method_idx = it.GetMemberIndex();
1281 dst->SetDexMethodIndex(method_idx);
1282 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001283 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001284
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001285
1286 StringPiece method_name(dex_file.GetMethodName(method_id));
1287 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001288 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1289 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001290
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001291 if (method_name == "finalize") {
1292 // Create the prototype for a signature of "()V"
1293 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1294 if (void_string_id != NULL) {
1295 const DexFile::TypeId* void_type_id =
1296 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1297 if (void_type_id != NULL) {
1298 std::vector<uint16_t> no_args;
1299 const DexFile::ProtoId* finalizer_proto =
1300 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1301 if (finalizer_proto != NULL) {
1302 // We have the prototype in the dex file
1303 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1304 klass->SetFinalizable();
1305 } else {
1306 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1307 // The Enum class declares a "final" finalize() method to prevent subclasses from
1308 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1309 // subclasses, so we exclude it here.
1310 // We also want to avoid setting the flag on Object, where we know that finalize() is
1311 // empty.
1312 if (klass_descriptor != "Ljava/lang/Object;" &&
1313 klass_descriptor != "Ljava/lang/Enum;") {
1314 klass->SetFinalizable();
1315 }
1316 }
1317 }
1318 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001319 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001320 }
Ian Rogers0571d352011-11-03 19:51:38 -07001321 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001322 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001323
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001324 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1325 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1326 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1327 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1328 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1329 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001330
Brian Carlstrom934486c2011-07-12 23:42:50 -07001331 // TODO: check for finalize method
Brian Carlstrom934486c2011-07-12 23:42:50 -07001332}
1333
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001334void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001335 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1336 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001337}
1338
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001339void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1340 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001341 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001342 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001343}
1344
Brian Carlstromaded5f72011-10-07 17:15:04 -07001345bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001346 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001347 for (size_t i = 0; i != dex_files_.size(); ++i) {
1348 if (dex_files_[i] == &dex_file) {
1349 return true;
1350 }
1351 }
1352 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001353}
1354
Brian Carlstromaded5f72011-10-07 17:15:04 -07001355bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001356 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001357 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001358}
1359
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001360void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001361 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001362 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001363 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001364 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001365 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001366}
1367
Brian Carlstromaded5f72011-10-07 17:15:04 -07001368void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001369 {
1370 MutexLock mu(dex_lock_);
1371 if (IsDexFileRegisteredLocked(dex_file)) {
1372 return;
1373 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001374 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001375 // Don't alloc while holding the lock, since allocation may need to
1376 // suspend all threads and another thread may need the dex_lock_ to
1377 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001378 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001379 {
1380 MutexLock mu(dex_lock_);
1381 if (IsDexFileRegisteredLocked(dex_file)) {
1382 return;
1383 }
1384 RegisterDexFileLocked(dex_file, dex_cache);
1385 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001386}
1387
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001388void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001389 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001390 RegisterDexFileLocked(dex_file, dex_cache);
1391}
1392
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001393const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001394 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001395 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001396 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1397 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001398 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001399 }
1400 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001401 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001402 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001403}
1404
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001405DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001406 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001407 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001408 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001409 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001410 }
1411 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001412 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001413 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001414}
1415
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001416Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1417 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001418 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001419 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001420 CHECK(primitive_class != NULL);
1421 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001422 primitive_class->SetPrimitiveType(type);
1423 primitive_class->SetStatus(Class::kStatusInitialized);
Ian Rogers5d76c432011-10-31 21:42:49 -07001424 bool success = InsertClass(descriptor, primitive_class, false);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001425 CHECK(success) << "InitPrimitiveClass(" << descriptor << ") failed";
1426 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001427}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001428
Brian Carlstrombe977852011-07-19 14:54:54 -07001429// Create an array class (i.e. the class object for the array, not the
1430// array itself). "descriptor" looks like "[C" or "[[[[B" or
1431// "[Ljava/lang/String;".
1432//
1433// If "descriptor" refers to an array of primitives, look up the
1434// primitive type's internally-generated class object.
1435//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001436// "class_loader" is the class loader of the class that's referring to
1437// us. It's used to ensure that we're looking for the element type in
1438// the right context. It does NOT become the class loader for the
1439// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001440//
1441// Returns NULL with an exception raised on failure.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001442Class* ClassLinker::CreateArrayClass(const std::string& descriptor,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001443 const ClassLoader* class_loader) {
1444 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001445
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001446 // Identify the underlying component type
1447 Class* component_type = FindClass(descriptor.substr(1), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001448 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001449 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001450 return NULL;
1451 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001452
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001453 // See if the component type is already loaded. Array classes are
1454 // always associated with the class loader of their underlying
1455 // element type -- an array of Strings goes with the loader for
1456 // java/lang/String -- so we need to look for it there. (The
1457 // caller should have checked for the existence of the class
1458 // before calling here, but they did so with *their* class loader,
1459 // not the component type's loader.)
1460 //
1461 // If we find it, the caller adds "loader" to the class' initiating
1462 // loader list, which should prevent us from going through this again.
1463 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001464 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001465 // are the same, because our caller (FindClass) just did the
1466 // lookup. (Even if we get this wrong we still have correct behavior,
1467 // because we effectively do this lookup again when we add the new
1468 // class to the hash table --- necessary because of possible races with
1469 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001470 if (class_loader != component_type->GetClassLoader()) {
1471 Class* new_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001472 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001473 return new_class;
1474 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001475 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001476
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001477 // Fill out the fields in the Class.
1478 //
1479 // It is possible to execute some methods against arrays, because
1480 // all arrays are subclasses of java_lang_Object_, so we need to set
1481 // up a vtable. We can just point at the one in java_lang_Object_.
1482 //
1483 // Array classes are simple enough that we don't need to do a full
1484 // link step.
1485
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001486 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001487 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001488 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001489 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001490 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001491 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001492 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001493 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001494 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001495 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001496 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001497 }
1498 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001499 if (new_class.get() == NULL) {
1500 new_class.reset(AllocClass(sizeof(Class)));
1501 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001502 return NULL;
1503 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001504 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001505 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001506 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001507 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001508 new_class->SetSuperClass(java_lang_Object);
1509 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001510 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001511 new_class->SetClassLoader(component_type->GetClassLoader());
1512 new_class->SetStatus(Class::kStatusInitialized);
1513 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001514 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001515
1516
1517 // All arrays have java/lang/Cloneable and java/io/Serializable as
1518 // interfaces. We need to set that up here, so that stuff like
1519 // "instanceof" works right.
1520 //
1521 // Note: The GC could run during the call to FindSystemClass,
1522 // so we need to make sure the class object is GC-valid while we're in
1523 // there. Do this by clearing the interface list so the GC will just
1524 // think that the entries are null.
1525
1526
1527 // Use the single, global copies of "interfaces" and "iftable"
1528 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001529 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001530 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001531
1532 // Inherit access flags from the component type. Arrays can't be
1533 // used as a superclass or interface, so we want to add "final"
1534 // and remove "interface".
1535 //
1536 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001537 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001538 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001539 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1540 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001541
Ian Rogers5d76c432011-10-31 21:42:49 -07001542 if (InsertClass(descriptor, new_class.get(), false)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001543 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001544 }
1545 // Another thread must have loaded the class after we
1546 // started but before we finished. Abandon what we've
1547 // done.
1548 //
1549 // (Yes, this happens.)
1550
1551 // Grab the winning class.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001552 Class* other_class = LookupClass(descriptor, component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001553 DCHECK(other_class != NULL);
1554 return other_class;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001555}
1556
1557Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001558 switch (Primitive::GetType(type)) {
1559 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001560 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001561 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001562 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001563 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001564 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001565 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001566 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001567 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001568 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001569 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001570 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001571 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001572 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001573 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001574 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001575 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001576 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001577 case Primitive::kPrimNot:
1578 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001579 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001580 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001581 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001582 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001583}
1584
Ian Rogers5d76c432011-10-31 21:42:49 -07001585bool ClassLinker::InsertClass(const std::string& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001586 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001587 DexCache* dex_cache = klass->GetDexCache();
1588 std::string source;
1589 if (dex_cache != NULL) {
1590 source += " from ";
1591 source += dex_cache->GetLocation()->ToModifiedUtf8();
1592 }
1593 LOG(INFO) << "Loaded class " << descriptor << source;
1594 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001595 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001596 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001597 Table::iterator it;
1598 if (image_class) {
1599 // TODO: sanity check there's no match in classes_
1600 it = image_classes_.insert(std::make_pair(hash, klass));
1601 } else {
1602 // TODO: sanity check there's no match in image_classes_
1603 it = classes_.insert(std::make_pair(hash, klass));
1604 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001605 return ((*it).second == klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001606}
1607
Brian Carlstromae826982011-11-09 01:33:42 -08001608bool ClassLinker::RemoveClass(const std::string& descriptor, const ClassLoader* class_loader) {
1609 size_t hash = StringPieceHash()(descriptor);
1610 MutexLock mu(classes_lock_);
1611 typedef Table::const_iterator It; // TODO: C++0x auto
1612 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001613 ClassHelper kh;
Brian Carlstromae826982011-11-09 01:33:42 -08001614 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
1615 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001616 kh.ChangeClass(klass);
1617 if (kh.GetDescriptor() == descriptor && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001618 classes_.erase(it);
1619 return true;
1620 }
1621 }
1622 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1623 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001624 kh.ChangeClass(klass);
1625 if (kh.GetDescriptor() == descriptor && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001626 image_classes_.erase(it);
1627 return true;
1628 }
1629 }
1630 return false;
1631}
1632
Brian Carlstromaded5f72011-10-07 17:15:04 -07001633Class* ClassLinker::LookupClass(const std::string& descriptor, const ClassLoader* class_loader) {
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001634 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001635 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001636 typedef Table::const_iterator It; // TODO: C++0x auto
Ian Rogers5d76c432011-10-31 21:42:49 -07001637 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001638 ClassHelper kh(NULL, this);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001639 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001640 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001641 kh.ChangeClass(klass);
1642 if (descriptor == kh.GetDescriptor() && klass->GetClassLoader() == class_loader) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001643 return klass;
1644 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001645 }
Ian Rogers5d76c432011-10-31 21:42:49 -07001646 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1647 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001648 kh.ChangeClass(klass);
1649 if (descriptor == kh.GetDescriptor() && klass->GetClassLoader() == class_loader) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001650 return klass;
1651 }
1652 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001653 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001654}
1655
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001656void ClassLinker::LookupClasses(const std::string& descriptor, std::vector<Class*>& classes) {
1657 classes.clear();
1658 size_t hash = StringPieceHash()(descriptor);
1659 MutexLock mu(classes_lock_);
1660 typedef Table::const_iterator It; // TODO: C++0x auto
1661 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001662 ClassHelper kh(NULL, this);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001663 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001664 Class* klass = it->second;
1665 kh.ChangeClass(klass);
1666 if (descriptor == kh.GetDescriptor()) {
1667 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001668 }
1669 }
1670 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001671 Class* klass = it->second;
1672 kh.ChangeClass(klass);
1673 if (descriptor == kh.GetDescriptor()) {
1674 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001675 }
1676 }
1677}
1678
jeffhao98eacac2011-09-14 16:11:53 -07001679void ClassLinker::VerifyClass(Class* klass) {
1680 if (klass->IsVerified()) {
1681 return;
1682 }
1683
1684 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved);
jeffhao98eacac2011-09-14 16:11:53 -07001685 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001686
Ian Rogersd81871c2011-10-03 13:57:23 -07001687 if (verifier::DexVerifier::VerifyClass(klass)) {
jeffhao5cfd6fb2011-09-27 13:54:29 -07001688 klass->SetStatus(Class::kStatusVerified);
1689 } else {
1690 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001691 Thread* self = Thread::Current();
1692 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
1693 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001694 PrettyDescriptor(klass).c_str());
jeffhao5cfd6fb2011-09-27 13:54:29 -07001695 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001696 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001697 }
jeffhao98eacac2011-09-14 16:11:53 -07001698}
1699
Jesse Wilson95caa792011-10-12 18:14:17 -04001700Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001701 ClassLoader* loader, ObjectArray<Method>* methods,
1702 ObjectArray<ObjectArray<Class> >* throws) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001703 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(ProxyClass)));
1704 CHECK(klass.get() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001705 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001706 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001707 klass->SetClassLoader(loader);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001708 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07001709 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001710 klass->SetDexCache(proxy_class->GetDexCache());
1711 klass->SetDexTypeIndex(-1);
Ian Rogers466bb252011-10-14 03:29:56 -07001712 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001713 klass->SetStatus(Class::kStatusInitialized); // no loading or initializing necessary
Jesse Wilson95caa792011-10-12 18:14:17 -04001714
Ian Rogers466bb252011-10-14 03:29:56 -07001715 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001716 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001717 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04001718
Ian Rogers466bb252011-10-14 03:29:56 -07001719 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001720 size_t num_virtual_methods = methods->GetLength();
1721 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1722 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001723 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001724 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04001725 }
Ian Rogers466bb252011-10-14 03:29:56 -07001726 // Link the virtual methods, creating vtable and iftables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001727 if (!LinkMethods(klass, interfaces)) {
Jesse Wilson95caa792011-10-12 18:14:17 -04001728 DCHECK(Thread::Current()->IsExceptionPending());
1729 return NULL;
1730 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001731 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04001732}
1733
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001734std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
1735 DCHECK(proxy_class->IsProxyClass());
1736 String* name = proxy_class->GetName();
1737 DCHECK(name != NULL);
1738 return DotToDescriptor(name->ToModifiedUtf8().c_str());
1739}
1740
1741
1742Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07001743 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07001744 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04001745 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07001746 Method* proxy_constructor = proxy_direct_methods->Get(2);
1747 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
1748 // code_ too)
1749 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
1750 // Make this constructor public and fix the class to be our Proxy version
1751 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001752 constructor->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001753 // Sanity checks
1754 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001755 MethodHelper mh(constructor);
1756 CHECK_STREQ(mh.GetName(), "<init>");
1757 CHECK(mh.GetSignature() == "(Ljava/lang/reflect/InvocationHandler;)V");
Ian Rogers466bb252011-10-14 03:29:56 -07001758 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04001759 return constructor;
1760}
1761
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001762Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
1763 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
1764 // prototype method
1765 prototype->GetDexCacheResolvedMethods()->Set(prototype->GetDexMethodIndex(), prototype.get());
1766 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07001767 // as necessary
1768 Method* method = down_cast<Method*>(prototype->Clone());
1769
1770 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
1771 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001772 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001773 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001774
Ian Rogers466bb252011-10-14 03:29:56 -07001775 // At runtime the method looks like a reference and argument saving method, clone the code
1776 // related parameters from this method.
1777 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
1778 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
1779 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
1780 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
1781 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Jesse Wilson95caa792011-10-12 18:14:17 -04001782
Ian Rogers466bb252011-10-14 03:29:56 -07001783 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001784 CHECK(!prototype->IsFinal());
1785 CHECK(method->IsFinal());
1786 CHECK(!method->IsAbstract());
1787 MethodHelper mh(method);
1788 const char* method_name = mh.GetName();
1789 const char* method_shorty = mh.GetShorty();
1790 Class* method_return = mh.GetReturnType();
1791
1792 mh.ChangeMethod(prototype.get());
1793
1794 CHECK_STREQ(mh.GetName(), method_name);
1795 CHECK_STREQ(mh.GetShorty(), method_shorty);
Ian Rogers466bb252011-10-14 03:29:56 -07001796
1797 // More complex sanity - via dex cache
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001798 CHECK_EQ(mh.GetReturnType(), method_return);
Jesse Wilson95caa792011-10-12 18:14:17 -04001799
1800 return method;
1801}
1802
Brian Carlstrom25c33252011-09-18 15:58:35 -07001803bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001804 CHECK(klass->IsResolved() || klass->IsErroneous())
1805 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001806
Carl Shapirob5573532011-07-12 18:22:59 -07001807 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001808
Brian Carlstrom25c33252011-09-18 15:58:35 -07001809 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001810 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001811 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001812 ObjectLock lock(klass);
1813
Brian Carlstromd1422f82011-09-28 11:37:09 -07001814 if (klass->GetStatus() == Class::kStatusInitialized) {
1815 return true;
1816 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001817
Brian Carlstromd1422f82011-09-28 11:37:09 -07001818 if (klass->IsErroneous()) {
1819 ThrowEarlierClassFailure(klass);
1820 return false;
1821 }
1822
1823 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07001824 VerifyClass(klass);
1825 if (klass->GetStatus() != Class::kStatusVerified) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001826 return false;
1827 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001828 }
1829
Brian Carlstrom25c33252011-09-18 15:58:35 -07001830 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
1831 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001832 // if the class has a <clinit> but we can't run it during compilation,
1833 // don't bother going to kStatusInitializing
Brian Carlstrom25c33252011-09-18 15:58:35 -07001834 return false;
1835 }
1836
Brian Carlstromd1422f82011-09-28 11:37:09 -07001837 // If the class is kStatusInitializing, either this thread is
1838 // initializing higher up the stack or another thread has beat us
1839 // to initializing and we need to wait. Either way, this
1840 // invocation of InitializeClass will not be responsible for
1841 // running <clinit> and will return.
1842 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07001843 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07001844 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001845 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001846 return true;
1847 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07001848 // No. That's fine. Wait for another thread to finish initializing.
1849 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001850 }
1851
1852 if (!ValidateSuperClassDescriptors(klass)) {
1853 klass->SetStatus(Class::kStatusError);
1854 return false;
1855 }
1856
Brian Carlstromd1422f82011-09-28 11:37:09 -07001857 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001858
Elliott Hughesdcc24742011-09-07 14:02:44 -07001859 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001860 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001861 }
1862
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001863 uint64_t t0 = NanoTime();
1864
Brian Carlstrom25c33252011-09-18 15:58:35 -07001865 if (!InitializeSuperClass(klass, can_run_clinit)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001866 return false;
1867 }
1868
1869 InitializeStaticFields(klass);
1870
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001871 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07001872 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001873 }
1874
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001875 uint64_t t1 = NanoTime();
1876
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001877 {
1878 ObjectLock lock(klass);
1879
1880 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001881 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001882 klass->SetStatus(Class::kStatusError);
1883 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07001884 RuntimeStats* global_stats = Runtime::Current()->GetStats();
1885 RuntimeStats* thread_stats = self->GetStats();
1886 ++global_stats->class_init_count;
1887 ++thread_stats->class_init_count;
1888 global_stats->class_init_time_ns += (t1 - t0);
1889 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001890 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001891 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001892 ClassHelper kh(klass);
1893 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08001894 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001895 }
1896 lock.NotifyAll();
1897 }
1898
1899 return true;
1900}
1901
Brian Carlstromd1422f82011-09-28 11:37:09 -07001902bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
1903 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001904 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001905 lock.Wait();
1906
1907 // When we wake up, repeat the test for init-in-progress. If
1908 // there's an exception pending (only possible if
1909 // "interruptShouldThrow" was set), bail out.
1910 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07001911 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07001912 klass->SetStatus(Class::kStatusError);
1913 return false;
1914 }
1915 // Spurious wakeup? Go back to waiting.
1916 if (klass->GetStatus() == Class::kStatusInitializing) {
1917 continue;
1918 }
1919 if (klass->IsErroneous()) {
1920 // The caller wants an exception, but it was thrown in a
1921 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07001922 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001923 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07001924 return false;
1925 }
1926 if (klass->IsInitialized()) {
1927 return true;
1928 }
1929 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
1930 }
1931 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
1932}
1933
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001934bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
1935 if (klass->IsInterface()) {
1936 return true;
1937 }
1938 // begin with the methods local to the superclass
1939 if (klass->HasSuperClass() &&
1940 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
1941 const Class* super = klass->GetSuperClass();
1942 for (int i = super->NumVirtualMethods() - 1; i >= 0; --i) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07001943 const Method* method = super->GetVirtualMethod(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001944 if (method != super->GetVirtualMethod(i) &&
1945 !HasSameMethodDescriptorClasses(method, super, klass)) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001946 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1947
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001948 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
1949 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
1950 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001951 return false;
1952 }
1953 }
1954 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001955 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
1956 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
1957 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001958 if (klass->GetClassLoader() != interface->GetClassLoader()) {
1959 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001960 const Method* method = interface_entry->GetMethodArray()->Get(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001961 if (!HasSameMethodDescriptorClasses(method, interface,
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001962 method->GetDeclaringClass())) {
Elliott Hughes4681c802011-09-25 18:04:37 -07001963 klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
1964
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001965 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
1966 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
1967 PrettyMethod(method).c_str(),
1968 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001969 return false;
1970 }
1971 }
1972 }
1973 }
1974 return true;
1975}
1976
1977bool ClassLinker::HasSameMethodDescriptorClasses(const Method* method,
Brian Carlstrom934486c2011-07-12 23:42:50 -07001978 const Class* klass1,
1979 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07001980 if (klass1 == klass2) {
1981 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07001982 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07001983 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001984 const DexFile::ProtoId& proto_id =
1985 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07001986 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
1987 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001988 if (descriptor == NULL) {
1989 break;
1990 }
1991 if (descriptor[0] == 'L' || descriptor[0] == '[') {
1992 // Found a non-primitive type.
1993 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
1994 return false;
1995 }
1996 }
1997 }
1998 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001999 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002000 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Brian Carlstrome10b6972011-09-26 13:49:03 -07002001 if (!HasSameDescriptorClasses(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002002 return false;
2003 }
2004 }
2005 return true;
2006}
2007
2008// Returns true if classes referenced by the descriptor are the
2009// same classes in klass1 as they are in klass2.
2010bool ClassLinker::HasSameDescriptorClasses(const char* descriptor,
Brian Carlstrom934486c2011-07-12 23:42:50 -07002011 const Class* klass1,
2012 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002013 CHECK(descriptor != NULL);
2014 CHECK(klass1 != NULL);
2015 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002016 if (klass1 == klass2) {
2017 return true;
2018 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002019 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002020 // TODO: found1 == NULL
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002021 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002022 // TODO: found2 == NULL
2023 // TODO: lookup found1 in initiating loader list
2024 if (found1 == NULL || found2 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002025 Thread::Current()->ClearException();
Ian Rogers9074b992011-10-26 17:41:55 -07002026 return found1 == found2;
2027 } else {
2028 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002029 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002030}
2031
Brian Carlstrom25c33252011-09-18 15:58:35 -07002032bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002033 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002034 if (!klass->IsInterface() && klass->HasSuperClass()) {
2035 Class* super_class = klass->GetSuperClass();
2036 if (super_class->GetStatus() != Class::kStatusInitialized) {
2037 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002038 Thread* self = Thread::Current();
2039 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002040 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002041 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002042 // TODO: check for a pending exception
2043 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002044 if (!can_run_clinit) {
2045 // Don't set status to error when we can't run <clinit>.
2046 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing);
2047 klass->SetStatus(Class::kStatusVerified);
2048 return false;
2049 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002050 klass->SetStatus(Class::kStatusError);
2051 klass->NotifyAll();
2052 return false;
2053 }
2054 }
2055 }
2056 return true;
2057}
2058
Brian Carlstrom25c33252011-09-18 15:58:35 -07002059bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002060 CHECK(c != NULL);
2061 if (c->IsInitialized()) {
2062 return true;
2063 }
2064
Elliott Hughes5f791332011-09-15 17:45:30 -07002065 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002066 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002067 InitializeClass(c, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002068 return !self->IsExceptionPending();
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002069}
2070
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002071void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002072 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002073 const ClassLoader* cl = c->GetClassLoader();
2074 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002075 ClassDataItemIterator it(dex_file, class_data);
2076 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2077 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002078 }
2079}
2080
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002081void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002082 size_t num_static_fields = klass->NumStaticFields();
2083 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002084 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002085 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002086 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002087 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002088 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002089 return;
2090 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002091 ClassHelper kh(klass);
2092 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002093 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002094 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002095 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002096
Ian Rogers0571d352011-11-03 19:51:38 -07002097 if (it.HasNext()) {
2098 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2099 std::map<uint32_t, Field*> field_map;
2100 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2101 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2102 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002103 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002104 }
2105}
2106
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002107bool ClassLinker::LinkClass(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002108 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002109 if (!LinkSuperClass(klass)) {
2110 return false;
2111 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002112 if (!LinkMethods(klass, NULL)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002113 return false;
2114 }
2115 if (!LinkInstanceFields(klass)) {
2116 return false;
2117 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002118 if (!LinkStaticFields(klass)) {
2119 return false;
2120 }
2121 CreateReferenceInstanceOffsets(klass);
2122 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002123 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2124 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002125 return true;
2126}
2127
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002128bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002129 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002130 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2131 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
2132 if (class_def == NULL) {
2133 return false;
2134 }
2135 uint16_t super_class_idx = class_def->superclass_idx_;
2136 if (super_class_idx != DexFile::kDexNoIndex16) {
2137 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002138 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002139 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002140 return false;
2141 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002142 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002143 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002144 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2145 if (interfaces != NULL) {
2146 for (size_t i = 0; i < interfaces->Size(); i++) {
2147 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2148 Class* interface = ResolveType(dex_file, idx, klass.get());
2149 if (interface == NULL) {
2150 DCHECK(Thread::Current()->IsExceptionPending());
2151 return false;
2152 }
2153 // Verify
2154 if (!klass->CanAccess(interface)) {
2155 // TODO: the RI seemed to ignore this in my testing.
2156 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2157 "Interface %s implemented by class %s is inaccessible",
2158 PrettyDescriptor(interface).c_str(),
2159 PrettyDescriptor(klass.get()).c_str());
2160 return false;
2161 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002162 }
2163 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002164 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002165 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002166 return true;
2167}
2168
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002169bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002170 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002171 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002172 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002173 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002174 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002175 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002176 return false;
2177 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002178 return true;
2179 }
2180 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002181 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002182 return false;
2183 }
2184 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002185 if (super->IsFinal() || super->IsInterface()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002186 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002187 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002188 PrettyDescriptor(super).c_str(),
2189 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002190 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002191 return false;
2192 }
2193 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002194 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002195 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002196 PrettyDescriptor(super).c_str(),
2197 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002198 return false;
2199 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002200
2201 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2202 if (super->IsFinalizable()) {
2203 klass->SetFinalizable();
2204 }
2205
Elliott Hughes2da50362011-10-10 16:57:08 -07002206 // Inherit reference flags (if any) from the superclass.
2207 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2208 if (reference_flags != 0) {
2209 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2210 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002211 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002212 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002213 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002214 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002215 return false;
2216 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002217
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002218#ifndef NDEBUG
2219 // Ensure super classes are fully resolved prior to resolving fields..
2220 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002221 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002222 super = super->GetSuperClass();
2223 }
2224#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002225 return true;
2226}
2227
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002228// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002229bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002230 if (klass->IsInterface()) {
2231 // No vtable.
2232 size_t count = klass->NumVirtualMethods();
2233 if (!IsUint(16, count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002234 ThrowClassFormatError("Too many methods on interface: %d", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002235 return false;
2236 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002237 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002238 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002239 }
jeffhaobdb76512011-09-07 11:43:16 -07002240 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002241 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002242 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002243 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002244 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002245 }
2246 return true;
2247}
2248
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002249bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002250 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002251 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2252 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002253 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002254 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002255 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002256 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002257 MethodHelper local_mh(NULL, this);
2258 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002259 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002260 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002261 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002262 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002263 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002264 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002265 super_mh.ChangeMethod(super_method);
2266 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002267 // Verify
2268 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002269 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002270 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002271 PrettyDescriptor(klass.get()).c_str(),
2272 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002273 return false;
2274 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002275 vtable->Set(j, local_method);
2276 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002277 break;
2278 }
2279 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002280 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002281 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002282 vtable->Set(actual_count, local_method);
2283 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002284 actual_count += 1;
2285 }
2286 }
2287 if (!IsUint(16, actual_count)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002288 ThrowClassFormatError("Too many methods defined on class: %d", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002289 return false;
2290 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002291 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002292 CHECK_LE(actual_count, max_count);
2293 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002294 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002295 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002296 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002297 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002298 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002299 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002300 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002301 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002302 return false;
2303 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002304 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002305 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002306 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2307 vtable->Set(i, virtual_method);
2308 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002309 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002310 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002311 }
2312 return true;
2313}
2314
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002315bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002316 size_t super_ifcount;
2317 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002318 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002319 } else {
2320 super_ifcount = 0;
2321 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002322 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002323 ClassHelper kh(klass.get(), this);
2324 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2325 ifcount += num_interfaces;
2326 for (size_t i = 0; i < num_interfaces; i++) {
2327 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2328 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002329 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002330 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002331 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002332 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002333 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002334 return true;
2335 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002336 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002337 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002338 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2339 for (size_t i = 0; i < super_ifcount; i++) {
2340 iftable->Set(i, AllocInterfaceEntry(super_iftable->Get(i)->GetInterface()));
2341 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002342 }
2343 // Flatten the interface inheritance hierarchy.
2344 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002345 for (size_t i = 0; i < num_interfaces; i++) {
2346 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002347 DCHECK(interface != NULL);
2348 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002349 ClassHelper ih(interface);
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002350 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002351 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002352 PrettyDescriptor(klass.get()).c_str(),
2353 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002354 return false;
2355 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002356 // Add this interface.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002357 iftable->Set(idx++, AllocInterfaceEntry(interface));
Elliott Hughes4681c802011-09-25 18:04:37 -07002358 // Add this interface's superinterfaces.
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002359 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2360 iftable->Set(idx++, AllocInterfaceEntry(interface->GetIfTable()->Get(j)->GetInterface()));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002361 }
2362 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002363 klass->SetIfTable(iftable.get());
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002364 CHECK_EQ(idx, ifcount);
Elliott Hughes4681c802011-09-25 18:04:37 -07002365
2366 // If we're an interface, we don't need the vtable pointers, so we're done.
2367 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002368 return true;
2369 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002370 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002371 MethodHelper vtable_mh(NULL, this);
2372 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002373 for (size_t i = 0; i < ifcount; ++i) {
2374 InterfaceEntry* interface_entry = iftable->Get(i);
2375 Class* interface = interface_entry->GetInterface();
2376 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2377 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002378 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002379 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2380 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002381 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002382 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002383 // For each method listed in the interface's method list, find the
2384 // matching method in our class's method list. We want to favor the
2385 // subclass over the superclass, which just requires walking
2386 // back from the end of the vtable. (This only matters if the
2387 // superclass defines a private method and this class redefines
2388 // it -- otherwise it would use the same vtable slot. In .dex files
2389 // those don't end up in the virtual method table, so it shouldn't
2390 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002391 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2392 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002393 vtable_mh.ChangeMethod(vtable_method);
2394 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002395 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002396 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002397 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002398 return false;
2399 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002400 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002401 break;
2402 }
2403 }
2404 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002405 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002406 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002407 Method* mir_method = miranda_list[mir];
2408 vtable_mh.ChangeMethod(mir_method);
2409 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002410 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002411 break;
2412 }
2413 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002414 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002415 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002416 miranda_method.reset(AllocMethod());
2417 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2418 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002419 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002420 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002421 }
2422 }
2423 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002424 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002425 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002426 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002427 klass->SetVirtualMethods((old_method_count == 0)
2428 ? AllocObjectArray<Method>(new_method_count)
2429 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002430
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002431 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2432 CHECK(vtable != NULL);
2433 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002434 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002435 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002436 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002437 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002438 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002439 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2440 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2441 klass->SetVirtualMethod(old_method_count + i, method);
2442 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002443 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002444 // TODO: do not assign to the vtable field until it is fully constructed.
2445 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002446 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002447
2448 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2449 for (int i = 0; i < vtable->GetLength(); ++i) {
2450 CHECK(vtable->Get(i) != NULL);
2451 }
2452
2453// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2454
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002455 return true;
2456}
2457
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002458bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2459 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002460 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002461}
2462
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002463bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2464 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002465 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002466 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002467 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002468 return success;
2469}
2470
Brian Carlstromdbc05252011-09-09 01:59:59 -07002471struct LinkFieldsComparator {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002472 LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002473 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002474 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002475 fh_->ChangeField(field1);
2476 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
2477 fh_->ChangeField(field2);
2478 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002479 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2480 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2481 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2482 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002483 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2484 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2485 if (order1 != order2) {
2486 return order1 < order2;
2487 }
2488
2489 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002490 fh_->ChangeField(field1);
2491 StringPiece name1(fh_->GetName());
2492 fh_->ChangeField(field2);
2493 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07002494 return name1 < name2;
2495 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002496
2497 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002498};
2499
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002500bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002501 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002502 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002503
2504 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002505 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002506
2507 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002508 size_t size;
2509 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002510 if (is_static) {
2511 size = klass->GetClassSize();
2512 field_offset = Class::FieldsOffset();
2513 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002514 Class* super_class = klass->GetSuperClass();
2515 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002516 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002517 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002518 }
2519 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002520 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002521
Brian Carlstromdbc05252011-09-09 01:59:59 -07002522 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002523
Brian Carlstromdbc05252011-09-09 01:59:59 -07002524 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002525 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002526 std::deque<Field*> grouped_and_sorted_fields;
2527 for (size_t i = 0; i < num_fields; i++) {
2528 grouped_and_sorted_fields.push_back(fields->Get(i));
2529 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002530 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002531 std::sort(grouped_and_sorted_fields.begin(),
2532 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002533 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002534
2535 // References should be at the front.
2536 size_t current_field = 0;
2537 size_t num_reference_fields = 0;
2538 for (; current_field < num_fields; current_field++) {
2539 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002540 fh.ChangeField(field);
2541 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002542 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002543 if (isPrimitive) {
2544 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002545 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002546 grouped_and_sorted_fields.pop_front();
2547 num_reference_fields++;
2548 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002549 field->SetOffset(field_offset);
2550 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002551 }
2552
2553 // Now we want to pack all of the double-wide fields together. If
2554 // we're not aligned, though, we want to shuffle one 32-bit field
2555 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002556 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002557 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2558 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002559 fh.ChangeField(field);
2560 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002561 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2562 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002563 continue;
2564 }
2565 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002566 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002567 // drop the consumed field
2568 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2569 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002570 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002571 // whether we found a 32-bit field for padding or not, we advance
2572 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002573 }
2574
2575 // Alignment is good, shuffle any double-wide fields forward, and
2576 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002577 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002578 while (!grouped_and_sorted_fields.empty()) {
2579 Field* field = grouped_and_sorted_fields.front();
2580 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002581 fh.ChangeField(field);
2582 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002583 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002584 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002585 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002586 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002587 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002588 ? sizeof(uint64_t)
2589 : sizeof(uint32_t)));
2590 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002591 }
2592
Elliott Hughesadb460d2011-10-05 17:02:34 -07002593 // We lie to the GC about the java.lang.ref.Reference.referent field, so it doesn't scan it.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002594 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
2595 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002596 // We know there are no non-reference fields in the Reference classes, and we know
2597 // that 'referent' is alphabetically last, so this is easy...
2598 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002599 fh.ChangeField(fields->Get(num_fields - 1));
2600 StringPiece name(fh.GetName());
2601 CHECK(name == "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07002602 --num_reference_fields;
2603 }
2604
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002605#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002606 // Make sure that all reference fields appear before
2607 // non-reference fields, and all double-wide fields are aligned.
2608 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002609 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002610 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002611 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002612 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002613 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002614 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002615 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2616 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002617 fh.ChangeField(field);
2618 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002619 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002620 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002621 is_primitive = true; // We lied above, so we have to expect a lie here.
2622 }
2623 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002624 if (!seen_non_ref) {
2625 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002626 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002627 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002628 } else {
2629 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002630 }
2631 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002632 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002633 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002634 }
2635#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002636 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002637 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002638 if (is_static) {
2639 klass->SetNumReferenceStaticFields(num_reference_fields);
2640 klass->SetClassSize(size);
2641 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002642 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002643 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002644 klass->SetObjectSize(size);
2645 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002646 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002647 return true;
2648}
2649
2650// Set the bitmap of reference offsets, refOffsets, from the ifields
2651// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002652void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002653 uint32_t reference_offsets = 0;
2654 Class* super_class = klass->GetSuperClass();
2655 if (super_class != NULL) {
2656 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002657 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002658 if (reference_offsets == CLASS_WALK_SUPER) {
2659 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002660 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002661 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002662 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002663 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002664}
2665
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002666void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002667 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002668}
2669
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002670void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002671 uint32_t reference_offsets) {
2672 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002673 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
2674 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002675 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002676 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002677 // All of the fields that contain object references are guaranteed
2678 // to be at the beginning of the fields list.
2679 for (size_t i = 0; i < num_reference_fields; ++i) {
2680 // Note that byte_offset is the offset from the beginning of
2681 // object, not the offset into instance data
2682 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002683 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002684 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
2685 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
2686 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002687 CHECK_NE(new_bit, 0U);
2688 reference_offsets |= new_bit;
2689 } else {
2690 reference_offsets = CLASS_WALK_SUPER;
2691 break;
2692 }
2693 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002694 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002695 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002696 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002697 } else {
2698 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002699 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002700}
2701
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002702String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002703 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002704 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002705 if (resolved != NULL) {
2706 return resolved;
2707 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002708 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
2709 int32_t utf16_length = dex_file.GetStringLength(string_id);
2710 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07002711 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002712 dex_cache->SetResolvedString(string_idx, string);
2713 return string;
2714}
2715
2716Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002717 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002718 DexCache* dex_cache,
2719 const ClassLoader* class_loader) {
2720 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002721 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07002722 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002723 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002724 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05002725 // TODO: we used to throw here if resolved's class loader was not the
2726 // boot class loader. This was to permit different classes with the
2727 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002728 dex_cache->SetResolvedType(type_idx, resolved);
2729 } else {
2730 DCHECK(Thread::Current()->IsExceptionPending());
2731 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002732 }
2733 return resolved;
2734}
2735
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002736Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
2737 uint32_t method_idx,
2738 DexCache* dex_cache,
2739 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002740 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002741 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
2742 if (resolved != NULL) {
2743 return resolved;
2744 }
2745 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2746 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
2747 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002748 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002749 return NULL;
2750 }
2751
Ian Rogers0571d352011-11-03 19:51:38 -07002752 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
2753 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002754 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002755 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002756 } else if (klass->IsInterface()) {
2757 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002758 } else {
2759 resolved = klass->FindVirtualMethod(name, signature);
2760 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002761 if (resolved != NULL) {
2762 dex_cache->SetResolvedMethod(method_idx, resolved);
2763 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08002764 ThrowNoSuchMethodError(is_direct, klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002765 }
2766 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002767}
2768
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002769Field* ClassLinker::ResolveField(const DexFile& dex_file,
2770 uint32_t field_idx,
2771 DexCache* dex_cache,
2772 const ClassLoader* class_loader,
2773 bool is_static) {
2774 Field* resolved = dex_cache->GetResolvedField(field_idx);
2775 if (resolved != NULL) {
2776 return resolved;
2777 }
2778 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
2779 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
2780 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08002781 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002782 return NULL;
2783 }
2784
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002785 const char* name = dex_file.GetFieldName(field_id);
2786 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002787 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002788 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002789 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002790 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002791 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002792 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002793 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002794 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08002795 ThrowNoSuchFieldError(is_static, klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002796 }
2797 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002798}
2799
Ian Rogersad25ac52011-10-04 19:13:33 -07002800const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
2801 Class* declaring_class = referrer->GetDeclaringClass();
2802 DexCache* dex_cache = declaring_class->GetDexCache();
2803 const DexFile& dex_file = FindDexFile(dex_cache);
2804 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2805 return dex_file.GetShorty(method_id.proto_idx_);
2806}
2807
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002808void ClassLinker::DumpAllClasses(int flags) const {
2809 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
2810 // lock held, because it might need to resolve a field's type, which would try to take the lock.
2811 std::vector<Class*> all_classes;
2812 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002813 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002814 typedef Table::const_iterator It; // TODO: C++0x auto
2815 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
2816 all_classes.push_back(it->second);
2817 }
Ian Rogers5d76c432011-10-31 21:42:49 -07002818 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
2819 all_classes.push_back(it->second);
2820 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07002821 }
2822
2823 for (size_t i = 0; i < all_classes.size(); ++i) {
2824 all_classes[i]->DumpClass(std::cerr, flags);
2825 }
2826}
2827
Elliott Hughescac6cc72011-11-03 20:31:21 -07002828void ClassLinker::DumpForSigQuit(std::ostream& os) const {
2829 MutexLock mu(classes_lock_);
2830 os << "Loaded classes: " << image_classes_.size() << " image classes; "
2831 << classes_.size() << " allocated classes\n";
2832}
2833
Elliott Hughese27955c2011-08-26 15:21:24 -07002834size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002835 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07002836 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07002837}
2838
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002839pid_t ClassLinker::GetClassesLockOwner() {
2840 return classes_lock_.GetOwner();
2841}
2842
2843pid_t ClassLinker::GetDexLockOwner() {
2844 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07002845}
2846
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002847void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
2848 DCHECK(!init_done_);
2849
2850 DCHECK(klass != NULL);
2851 DCHECK(klass->GetClassLoader() == NULL);
2852
2853 DCHECK(class_roots_ != NULL);
2854 DCHECK(class_roots_->Get(class_root) == NULL);
2855 class_roots_->Set(class_root, klass);
2856}
2857
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002858} // namespace art