blob: 5ff229339f5dc5a223fe24ebdc732e1ce4273241 [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 Carlstromd601af82012-01-06 10:15:19 -08005#include <fcntl.h>
6#include <sys/file.h>
7#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -08008#include <sys/types.h>
9#include <sys/wait.h>
10
Brian Carlstromdbc05252011-09-09 01:59:59 -070011#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070012#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070013#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070014#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070015
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070016#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070017#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080018#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070019#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070020#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070021#include "dex_verifier.h"
22#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070023#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070024#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070025#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070026#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080028#include "object_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070029#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070030#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070031#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070032#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070033#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070034#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070036#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070037#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070038
39namespace art {
40
Elliott Hughes4a2b4172011-09-20 17:08:25 -070041namespace {
42
Elliott Hughes362f9bc2011-10-17 18:56:41 -070043void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070044void ThrowNoClassDefFoundError(const char* fmt, ...) {
45 va_list args;
46 va_start(args, fmt);
47 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
48 va_end(args);
49}
50
Elliott Hughes362f9bc2011-10-17 18:56:41 -070051void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070052void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070053 va_list args;
54 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070055 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070056 va_end(args);
57}
58
Elliott Hughes362f9bc2011-10-17 18:56:41 -070059void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070060void ThrowLinkageError(const char* fmt, ...) {
61 va_list args;
62 va_start(args, fmt);
63 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
64 va_end(args);
65}
66
Ian Rogers9f1ab122011-12-12 08:52:43 -080067void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
68 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080069 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070070 std::ostringstream msg;
Ian Rogers9f1ab122011-12-12 08:52:43 -080071 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << "." << signature
72 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080073 std::string location(kh.GetLocation());
74 if (!location.empty()) {
75 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070076 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070077 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070078}
79
Ian Rogersb067ac22011-12-13 18:05:09 -080080void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers9f1ab122011-12-12 08:52:43 -080081 const StringPiece& name) {
82 ClassHelper kh(c);
83 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -080084 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080085 << " in class " << kh.GetDescriptor() << " or its superclasses";
86 std::string location(kh.GetLocation());
87 if (!location.empty()) {
88 msg << " (defined in " << location << ")";
89 }
90 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
91}
92
Ian Rogerscab01012012-01-10 17:35:46 -080093void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
94void ThrowNullPointerException(const char* fmt, ...) {
95 va_list args;
96 va_start(args, fmt);
97 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
98 va_end(args);
99}
100
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700101void ThrowEarlierClassFailure(Class* c) {
102 /*
103 * The class failed to initialize on a previous attempt, so we want to throw
104 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
105 * failed in verification, in which case v2 5.4.1 says we need to re-throw
106 * the previous error.
107 */
108 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
109
110 if (c->GetVerifyErrorClass() != NULL) {
111 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800112 ClassHelper ve_ch(c->GetVerifyErrorClass());
113 std::string error_descriptor(ve_ch.GetDescriptor());
114 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700115 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800116 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700117 }
118}
119
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700120void WrapExceptionInInitializer() {
121 JNIEnv* env = Thread::Current()->GetJniEnv();
122
123 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
124 CHECK(cause.get() != NULL);
125
126 env->ExceptionClear();
127
128 // TODO: add java.lang.Error to JniConstants?
129 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
130 CHECK(error_class.get() != NULL);
131 if (env->IsInstanceOf(cause.get(), error_class.get())) {
132 // We only wrap non-Error exceptions; an Error can just be used as-is.
133 env->Throw(cause.get());
134 return;
135 }
136
137 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
138 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
139 CHECK(eiie_class.get() != NULL);
140
141 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
142 CHECK(mid != NULL);
143
144 ScopedLocalRef<jthrowable> eiie(env,
145 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
146 env->Throw(eiie.get());
147}
148
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800149static size_t Hash(const char* s) {
150 // This is the java.lang.String hashcode for convenience, not interoperability.
151 size_t hash = 0;
152 for (; *s != '\0'; ++s) {
153 hash = hash * 31 + *s;
154 }
155 return hash;
156}
157
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700158} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700159
Elliott Hughes418d20f2011-09-22 14:00:39 -0700160const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700161 "Ljava/lang/Class;",
162 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700163 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700164 "[Ljava/lang/Object;",
165 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700166 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700167 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700168 "Ljava/lang/reflect/Field;",
169 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700170 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700171 "Ljava/lang/ClassLoader;",
172 "Ldalvik/system/BaseDexClassLoader;",
173 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700174 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700175 "Z",
176 "B",
177 "C",
178 "D",
179 "F",
180 "I",
181 "J",
182 "S",
183 "V",
184 "[Z",
185 "[B",
186 "[C",
187 "[D",
188 "[F",
189 "[I",
190 "[J",
191 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700192 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700193};
194
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800195ClassLinker* ClassLinker::Create(const std::string& boot_class_path, InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700196 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800197 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700198 class_linker->Init(boot_class_path);
199 return class_linker.release();
200}
201
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800202ClassLinker* ClassLinker::Create(InternTable* intern_table) {
203 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700204 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700205 return class_linker.release();
206}
207
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800208ClassLinker::ClassLinker(InternTable* intern_table)
209 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700210 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700211 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700212 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700213 init_done_(false),
214 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700215 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700216}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700217
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700218void CreateClassPath(const std::string& class_path,
219 std::vector<const DexFile*>& class_path_vector) {
220 std::vector<std::string> parsed;
221 Split(class_path, ':', parsed);
222 for (size_t i = 0; i < parsed.size(); ++i) {
223 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700224 if (dex_file == NULL) {
225 LOG(WARNING) << "Failed to open dex file " << parsed[i];
226 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700227 class_path_vector.push_back(dex_file);
228 }
229 }
230}
231
232void ClassLinker::Init(const std::string& boot_class_path) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800233 VLOG(startup) << "ClassLinker::InitFrom entering boot_class_path=" << boot_class_path;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700234
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700235 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700236
Elliott Hughes30646832011-10-13 16:59:46 -0700237 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700238 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
239 CHECK(java_lang_Class.get() != NULL);
240 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700241 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700242 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700243
Elliott Hughes418d20f2011-09-22 14:00:39 -0700244 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700245 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
246 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700247
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700248 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700249 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
250 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700251 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700253 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700254
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700255 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700256 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
257 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700258
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700259 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700260 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700261
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700262 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700263 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
264 char_array_class->SetComponentType(char_class.get());
265 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700266
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700267 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700268 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
269 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700270 java_lang_String->SetObjectSize(sizeof(String));
271 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400272
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 // Create storage for root classes, save away our work so far (requires
274 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700275 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700276 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700277 SetClassRoot(kJavaLangClass, java_lang_Class.get());
278 SetClassRoot(kJavaLangObject, java_lang_Object.get());
279 SetClassRoot(kClassArrayClass, class_array_class.get());
280 SetClassRoot(kObjectArrayClass, object_array_class.get());
281 SetClassRoot(kCharArrayClass, char_array_class.get());
282 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700283
284 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700285 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
286 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
287 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
288 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
289 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
290 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
291 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
292 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700293
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700295 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296
297 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700298 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700300 IntArray::SetArrayClass(int_array_class.get());
301 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700303 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700304
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700305 // setup boot_class_path_ and register class_path now that we can
306 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700307 std::vector<const DexFile*> boot_class_path_vector;
308 CreateClassPath(boot_class_path, boot_class_path_vector);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700309 CHECK_NE(0U, boot_class_path_vector.size());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700310 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
311 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700312 CHECK(dex_file != NULL);
313 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700314 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700315
Elliott Hughes80609252011-09-23 17:24:51 -0700316 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700317 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700319 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700321 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
322
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700323 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
324 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700325 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700326 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700327 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700328 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700329
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336
337 // now we can use FindSystemClass
338
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700339 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700340 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700341 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700342
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700343 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344 java_lang_Object->SetStatus(Class::kStatusNotReady);
345 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700346 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700347 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
348 java_lang_String->SetStatus(Class::kStatusNotReady);
349 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700350 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
352
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700353 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700354 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
355 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
356
357 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
358 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
359
360 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700361 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700362
363 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
364 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
365
366 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700367 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700368
369 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
370 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
371
372 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
373 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
374
375 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
376 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
377
Elliott Hughes418d20f2011-09-22 14:00:39 -0700378 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700379 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700380
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700381 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700382 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700383
384 // Setup the single, global copies of "interfaces" and "iftable"
385 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
386 CHECK(java_lang_Cloneable != NULL);
387 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
388 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700389 // We assume that Cloneable/Serializable don't have superinterfaces --
390 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700391 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800392 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
393 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700394
Elliott Hughes418d20f2011-09-22 14:00:39 -0700395 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800396 ClassHelper kh(class_array_class.get(), this);
397 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
398 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
399 kh.ChangeClass(object_array_class.get());
400 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
401 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700402 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700403 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700404 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700405 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700406
Elliott Hughes80609252011-09-23 17:24:51 -0700407 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
408 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700409 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700410
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700411 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700412 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700413 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700414
415 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700416 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700417 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700418
Ian Rogers466bb252011-10-14 03:29:56 -0700419 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
420
421 // Create java.lang.reflect.Proxy root
422 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
423 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
424
Brian Carlstrom1f870082011-08-23 16:02:11 -0700425 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700426 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
427 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700428 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700429 java_lang_ref_FinalizerReference->SetAccessFlags(
430 java_lang_ref_FinalizerReference->GetAccessFlags() |
431 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700432 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700433 java_lang_ref_PhantomReference->SetAccessFlags(
434 java_lang_ref_PhantomReference->GetAccessFlags() |
435 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700436 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 java_lang_ref_SoftReference->SetAccessFlags(
438 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700439 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700440 java_lang_ref_WeakReference->SetAccessFlags(
441 java_lang_ref_WeakReference->GetAccessFlags() |
442 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700443
Brian Carlstromaded5f72011-10-07 17:15:04 -0700444 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700445 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700446 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700447 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
448
449 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
450 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
451 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
452
453 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
454 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
455 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
456 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
457
458 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700459 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
460 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700461 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700462
Brian Carlstroma663ea52011-08-19 23:33:41 -0700463 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700464
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800465 VLOG(startup) << "ClassLinker::InitFrom exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700466}
467
468void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800469 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700470
471 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700472 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700473 // as the types of the field can't be resolved prior to the runtime being
474 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700475 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700476 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700477 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
478
Elliott Hughesadb460d2011-10-05 17:02:34 -0700479 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
480
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800481 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
482
Brian Carlstrom16192862011-09-12 17:50:06 -0700483 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800484 FieldHelper fh(pendingNext, this);
485 CHECK_STREQ(fh.GetName(), "pendingNext");
486 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
487 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700488
489 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800490 fh.ChangeField(queue);
491 CHECK_STREQ(fh.GetName(), "queue");
492 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
493 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700494
495 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 fh.ChangeField(queueNext);
497 CHECK_STREQ(fh.GetName(), "queueNext");
498 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
499 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700500
501 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800502 fh.ChangeField(referent);
503 CHECK_STREQ(fh.GetName(), "referent");
504 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
505 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700506
507 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800508 fh.ChangeField(zombie);
509 CHECK_STREQ(fh.GetName(), "zombie");
510 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
511 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700512
513 Heap::SetReferenceOffsets(referent->GetOffset(),
514 queue->GetOffset(),
515 queueNext->GetOffset(),
516 pendingNext->GetOffset(),
517 zombie->GetOffset());
518
Brian Carlstroma663ea52011-08-19 23:33:41 -0700519 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700520 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700521 ClassRoot class_root = static_cast<ClassRoot>(i);
522 Class* klass = GetClassRoot(class_root);
523 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700524 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700525 // note SetClassRoot does additional validation.
526 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700527 }
528
Elliott Hughes92f14b22011-10-06 12:29:54 -0700529 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700530
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700531 // disable the slow paths in FindClass and CreatePrimitiveClass now
532 // that Object, Class, and Object[] are setup
533 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700534
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800535 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700536}
537
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700538void ClassLinker::RunRootClinits() {
539 Thread* self = Thread::Current();
540 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
541 Class* c = GetClassRoot(ClassRoot(i));
542 if (!c->IsArrayClass() && !c->IsPrimitive()) {
543 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700544 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700545 }
546 }
547}
548
Brian Carlstromd601af82012-01-06 10:15:19 -0800549bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
550 int oat_fd,
551 const std::string& oat_cache_filename) {
jeffhao262bf462011-10-20 18:36:32 -0700552
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800553 std::string dex2oat_string("/system/bin/dex2oat");
554#ifndef NDEBUG
555 dex2oat_string += 'd';
556#endif
557 const char* dex2oat = dex2oat_string.c_str();
558
559 const char* class_path = Runtime::Current()->GetClassPath().c_str();
560
561 std::string boot_image_option_string("--boot-image=");
562 boot_image_option_string += Heap::GetSpaces()[0]->GetImageFilename();
563 const char* boot_image_option = boot_image_option_string.c_str();
564
565 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800566 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800567 const char* dex_file_option = dex_file_option_string.c_str();
568
Brian Carlstromd601af82012-01-06 10:15:19 -0800569 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800570 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800571 const char* oat_fd_option = oat_fd_option_string.c_str();
572
573 std::string oat_name_option_string("--oat-name=");
574 oat_name_option_string += oat_cache_filename;
575 const char* oat_name_option = oat_name_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800576
jeffhao262bf462011-10-20 18:36:32 -0700577 // fork and exec dex2oat
578 pid_t pid = fork();
579 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800580 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800581
582 // change process groups, so we don't get reaped by ProcessManager
583 setpgid(0, 0);
584
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800585 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700586 "--runtime-arg", "-Xms64m",
587 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500588 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800589 "--runtime-arg", class_path,
590 boot_image_option,
591 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800592 oat_fd_option,
593 oat_name_option,
jeffhao262bf462011-10-20 18:36:32 -0700594 NULL);
595
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800596 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800597 return false;
jeffhao262bf462011-10-20 18:36:32 -0700598 } else {
599 // wait for dex2oat to finish
600 int status;
601 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
602 if (got_pid != pid) {
603 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800604 return false;
jeffhao262bf462011-10-20 18:36:32 -0700605 }
606 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800607 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
608 return false;
jeffhao262bf462011-10-20 18:36:32 -0700609 }
610 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800611 return true;
jeffhao262bf462011-10-20 18:36:32 -0700612}
613
Brian Carlstrom866c8622012-01-06 16:35:13 -0800614void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
615 MutexLock mu(dex_lock_);
616 RegisterOatFileLocked(oat_file);
617}
618
619void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
620 dex_lock_.AssertHeld();
621 oat_files_.push_back(&oat_file);
622}
623
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700624OatFile* ClassLinker::OpenOat(const Space* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700625 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700626 const Runtime* runtime = Runtime::Current();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800627 VLOG(startup) << "ClassLinker::OpenOat entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700628 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800629 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
630 // check the down cast
631 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700632 std::string oat_filename;
633 oat_filename += runtime->GetHostPrefix();
634 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma9f19782011-10-13 00:14:47 -0700635 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBaseAddr());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700636 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700637 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700638 return NULL;
639 }
640 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
641 uint32_t image_oat_checksum = image_header.GetOatChecksum();
642 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800643 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700644 << " to expected oat checksum " << std::hex << oat_checksum
645 << " in image";
646 return NULL;
647 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800648 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800649 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700650 return oat_file;
651}
652
Brian Carlstromae826982011-11-09 01:33:42 -0800653const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
654 for (size_t i = 0; i < oat_files_.size(); i++) {
655 const OatFile* oat_file = oat_files_[i];
656 DCHECK(oat_file != NULL);
Ian Rogers7fe2c692011-12-06 16:35:59 -0800657 if (oat_file->GetOatDexFile(dex_file.GetLocation(), false)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800658 return oat_file;
659 }
660 }
661 return NULL;
662}
663
Brian Carlstromd601af82012-01-06 10:15:19 -0800664class LockedFd {
665 public:
666 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
667 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
668 if (fd == -1) {
669 PLOG(ERROR) << "Failed to open file '" << name << "'";
670 return NULL;
671 }
672 fchmod(fd, mode);
673
674 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
675 // try to lock non-blocking so we can log if we need may need to block
676 int result = flock(fd, LOCK_EX | LOCK_NB);
677 if (result == -1) {
678 LOG(WARNING) << "sleeping while locking file " << name;
679 // retry blocking
680 result = flock(fd, LOCK_EX);
681 }
682 if (result == -1) {
683 PLOG(ERROR) << "Failed to lock file '" << name << "'";
684 close(fd);
685 return NULL;
686 }
687 return new LockedFd(fd);
688 }
689
690 int GetFd() const {
691 return fd_;
692 }
693
694 ~LockedFd() {
695 if (fd_ != -1) {
696 int result = flock(fd_, LOCK_UN);
697 if (result == -1) {
698 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
699 }
700 close(fd_);
701 }
702 }
703
704 private:
705 explicit LockedFd(int fd) : fd_(fd) {}
706
707 int fd_;
708};
709
Brian Carlstromae826982011-11-09 01:33:42 -0800710const OatFile* ClassLinker::FindOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700711 MutexLock mu(dex_lock_);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800712 const OatFile* open_oat_file = FindOpenedOatFileForDexFile(dex_file);
713 if (open_oat_file != NULL) {
714 return open_oat_file;
Brian Carlstromae826982011-11-09 01:33:42 -0800715 }
716
Brian Carlstromd601af82012-01-06 10:15:19 -0800717 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_file.GetLocation()));
Brian Carlstrom866c8622012-01-06 16:35:13 -0800718 open_oat_file = FindOpenedOatFileFromOatLocation(oat_filename);
719 if (open_oat_file != NULL) {
720 return open_oat_file;
721 }
722
Brian Carlstromd601af82012-01-06 10:15:19 -0800723 while (true) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800724 UniquePtr<const OatFile> oat_file(FindOatFileFromOatLocation(oat_filename));
725 if (oat_file.get() != NULL) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800726 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
727 if (dex_file.GetHeader().checksum_ == oat_dex_file->GetDexFileChecksum()) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800728 RegisterOatFileLocked(*oat_file.get());
729 return oat_file.release();
Brian Carlstromd601af82012-01-06 10:15:19 -0800730 }
731 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
732 << " checksum mismatch with " << dex_file.GetLocation() << " --- regenerating";
733 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
734 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
735 }
736 // Fall through...
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700737 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800738 // Try to generate oat file if it wasn't found or was obsolete.
739 // Note we can be racing with another runtime to do this.
740 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
741 UniquePtr<LockedFd> locked_fd(LockedFd::CreateAndLock(oat_cache_filename, 0644));
742 if (locked_fd.get() == NULL) {
743 LOG(ERROR) << "Failed to create and lock oat file " << oat_cache_filename;
744 return NULL;
Elliott Hughes234da572011-11-03 22:13:06 -0700745 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800746 // Check to see if the fd we opened and locked matches the file in
747 // the filesystem. If they don't, then somebody else unlinked ours
748 // and created a new file, and we need to use that one instead. (If
749 // we caught them between the unlink and the create, we'll get an
750 // ENOENT from the file stat.)
751 struct stat fd_stat;
752 int fd_stat_result = fstat(locked_fd->GetFd(), &fd_stat);
753 if (fd_stat_result != 0) {
754 PLOG(ERROR) << "Failed to fstat file descriptor of oat file " << oat_cache_filename;
755 return NULL;
756 }
757 struct stat file_stat;
758 int file_stat_result = stat(oat_cache_filename.c_str(), &file_stat);
759 if (file_stat_result != 0
760 || fd_stat.st_dev != file_stat.st_dev
761 || fd_stat.st_ino != file_stat.st_ino) {
762 LOG(INFO) << "Opened oat file " << oat_cache_filename << " is stale; sleeping and retrying";
763 usleep(250 * 1000); // if something is hosed, don't peg machine
764 continue;
765 }
766
767 // We have the correct file open and locked. If the file size is
768 // zero, then it was just created by us and we can generate its
769 // contents. If not, someone else created it. Either way, we'll
770 // loop to retry opening the file.
771 if (fd_stat.st_size == 0) {
772 bool success = GenerateOatFile(dex_file.GetLocation(),
773 locked_fd->GetFd(),
774 oat_cache_filename);
775 if (!success) {
776 LOG(ERROR) << "Failed to generate oat file " << oat_cache_filename;
777 return NULL;
778 }
779 }
jeffhao262bf462011-10-20 18:36:32 -0700780 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800781 // Not reached
Brian Carlstromaded5f72011-10-07 17:15:04 -0700782}
783
Brian Carlstromae826982011-11-09 01:33:42 -0800784const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700785 for (size_t i = 0; i < oat_files_.size(); i++) {
786 const OatFile* oat_file = oat_files_[i];
787 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800788 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700789 return oat_file;
790 }
791 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700792 return NULL;
793}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700794
Brian Carlstromae826982011-11-09 01:33:42 -0800795const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800796 const OatFile* oat_file = OatFile::Open(oat_location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700797 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800798 if (oat_location.empty() || oat_location[0] != '/') {
799 LOG(ERROR) << "Failed to open oat file from " << oat_location;
Brian Carlstroma9f19782011-10-13 00:14:47 -0700800 return NULL;
801 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700802
Brian Carlstroma9f19782011-10-13 00:14:47 -0700803 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Elliott Hughes95572412011-12-13 18:14:20 -0800804 std::string cache_location(GetArtCacheFilenameOrDie(oat_location));
Brian Carlstromae826982011-11-09 01:33:42 -0800805 oat_file = FindOpenedOatFileFromOatLocation(cache_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700806 if (oat_file != NULL) {
807 return oat_file;
808 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700809 oat_file = OatFile::Open(cache_location, "", NULL);
810 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800811 LOG(INFO) << "Failed to open oat file from " << oat_location << " or " << cache_location << ".";
Brian Carlstroma9f19782011-10-13 00:14:47 -0700812 return NULL;
813 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700814 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700815
Brian Carlstromae826982011-11-09 01:33:42 -0800816 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700817 return oat_file;
818}
819
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700820void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800821 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700822 CHECK(!init_done_);
823
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700824 const std::vector<Space*>& spaces = Heap::GetSpaces();
825 for (size_t i = 0; i < spaces.size(); i++) {
826 Space* space = spaces[i] ;
827 if (space->IsImageSpace()) {
828 OatFile* oat_file = OpenOat(space);
829 CHECK(oat_file != NULL) << "Failed to open oat file for image";
830 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
831 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
832
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800833 if (i == 0) {
834 // Special case of setting up the String class early so that we can test arbitrary objects
835 // as being Strings or not
836 Class* java_lang_String = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
837 ->AsObjectArray<Class>()->Get(kJavaLangString);
838 String::SetClass(java_lang_String);
839 }
840
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700841 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
842 static_cast<uint32_t>(dex_caches->GetLength()));
843 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700844 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Elliott Hughes95572412011-12-13 18:14:20 -0800845 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Brian Carlstrom89521892011-12-07 22:05:07 -0800846 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
847 const DexFile* dex_file = oat_dex_file->OpenDexFile();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700848 if (dex_file == NULL) {
Brian Carlstrom89521892011-12-07 22:05:07 -0800849 LOG(FATAL) << "Failed to open dex file " << dex_file_location
850 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700851 }
852
Brian Carlstromaded5f72011-10-07 17:15:04 -0700853 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700854
Brian Carlstromdf143242011-10-10 18:05:34 -0700855 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700856 }
857 }
858 }
859
Brian Carlstroma663ea52011-08-19 23:33:41 -0700860 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
861 DCHECK(heap_bitmap != NULL);
862
Brian Carlstroma663ea52011-08-19 23:33:41 -0700863 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700864 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700865
866 // reinit class_roots_
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700867 Object* class_roots_object = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
868 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700869
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800870 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700871 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
872 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800873 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700874 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700875 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700876 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
877 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
878 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
879 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
880 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
881 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
882 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
883 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700884 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700885 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700886
887 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700888
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800889 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700890}
891
Brian Carlstrom78128a62011-09-15 17:21:19 -0700892void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700893 DCHECK(obj != NULL);
894 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700895 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700896
Elliott Hughesdbb40792011-11-18 17:05:22 -0800897 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700898 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700899 return;
900 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700901 if (obj->IsClass()) {
902 // restore class to ClassLinker::classes_ table
903 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800904 ClassHelper kh(klass, class_linker);
905 bool success = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
Ian Rogers5d76c432011-10-31 21:42:49 -0700906 DCHECK(success);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700907 return;
908 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700909}
910
911// Keep in sync with InitCallback. Anything we visit, we need to
912// reinit references to when reinitializing a ClassLinker from a
913// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700914void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
915 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700916
917 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700918 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700919 }
920
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700921 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700922 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700923 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700924 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700925 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700926 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700927 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700928 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700929
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700930 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700931}
932
Elliott Hughesa2155262011-11-16 16:26:58 -0800933void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
934 MutexLock mu(classes_lock_);
935 typedef Table::const_iterator It; // TODO: C++0x auto
936 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
937 if (!visitor(it->second, arg)) {
938 return;
939 }
940 }
941 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
942 if (!visitor(it->second, arg)) {
943 return;
944 }
945 }
946}
947
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700948ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700949 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700950 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700951 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700952 BooleanArray::ResetArrayClass();
953 ByteArray::ResetArrayClass();
954 CharArray::ResetArrayClass();
955 DoubleArray::ResetArrayClass();
956 FloatArray::ResetArrayClass();
957 IntArray::ResetArrayClass();
958 LongArray::ResetArrayClass();
959 ShortArray::ResetArrayClass();
960 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700961 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700962 STLDeleteElements(&boot_class_path_);
963 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700964}
965
966DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700967 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
968 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700969 return NULL;
970 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700971 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
972 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700973 return NULL;
974 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700975 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
976 if (strings.get() == NULL) {
977 return NULL;
978 }
979 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
980 if (types.get() == NULL) {
981 return NULL;
982 }
983 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
984 if (methods.get() == NULL) {
985 return NULL;
986 }
987 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
988 if (fields.get() == NULL) {
989 return NULL;
990 }
991 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
992 if (code_and_direct_methods.get() == NULL) {
993 return NULL;
994 }
995 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
996 if (initialized_static_storage.get() == NULL) {
997 return NULL;
998 }
999
1000 dex_cache->Init(location.get(),
1001 strings.get(),
1002 types.get(),
1003 methods.get(),
1004 fields.get(),
1005 code_and_direct_methods.get(),
1006 initialized_static_storage.get());
1007 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001008}
1009
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001010CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
1011 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -07001012}
1013
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001014InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1015 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001016 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1017 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001018 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001019 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001020}
1021
Brian Carlstrom4873d462011-08-21 15:23:39 -07001022Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1023 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001024 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001025 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001026 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001027 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001028}
1029
Brian Carlstrom4873d462011-08-21 15:23:39 -07001030Class* ClassLinker::AllocClass(size_t class_size) {
1031 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001032}
1033
Jesse Wilson35baaab2011-08-10 16:18:03 -04001034Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001035 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001036}
1037
1038Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001039 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001040}
1041
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001042ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1043 return ObjectArray<StackTraceElement>::Alloc(
1044 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1045 length);
1046}
1047
Brian Carlstromaded5f72011-10-07 17:15:04 -07001048Class* EnsureResolved(Class* klass) {
1049 DCHECK(klass != NULL);
1050 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001051 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001052 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001053 ObjectLock lock(klass);
1054 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001055 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001056 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001057 PrettyDescriptor(klass).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001058 return NULL;
1059 }
1060 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001061 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001062 lock.Wait();
1063 }
1064 }
1065 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001066 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001067 return NULL;
1068 }
1069 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001070 CHECK(klass->IsResolved()) << PrettyClass(klass);
1071 CHECK(!self->IsExceptionPending())
1072 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1073 return klass;
1074}
1075
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001076Class* ClassLinker::FindSystemClass(const char* descriptor) {
1077 return FindClass(descriptor, NULL);
1078}
1079
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001080Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
1081 DCHECK(*descriptor != '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001082 Thread* self = Thread::Current();
1083 DCHECK(self != NULL);
1084 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001085 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001086 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1087 // for primitive classes that aren't backed by dex files.
1088 return FindPrimitiveClass(descriptor[0]);
1089 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001090 // Find the class in the loaded classes table.
1091 Class* klass = LookupClass(descriptor, class_loader);
1092 if (klass != NULL) {
1093 return EnsureResolved(klass);
1094 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001095 // Class is not yet loaded.
1096 if (descriptor[0] == '[') {
1097 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001098
Jesse Wilson47daf872011-11-23 11:42:45 -05001099 } else if (class_loader == NULL) {
1100 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1101 if (pair.second != NULL) {
1102 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1103 }
1104
1105 } else if (ClassLoader::UseCompileTimeClassPath()) {
1106 // first try the boot class path
1107 Class* system_class = FindSystemClass(descriptor);
1108 if (system_class != NULL) {
1109 return system_class;
1110 }
1111 CHECK(self->IsExceptionPending());
1112 self->ClearException();
1113
1114 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001115 const std::vector<const DexFile*>& class_path
1116 = ClassLoader::GetCompileTimeClassPath(class_loader);
1117 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001118 if (pair.second != NULL) {
1119 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001120 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001121
1122 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001123 std::string class_name_string(DescriptorToDot(descriptor));
Jesse Wilson47daf872011-11-23 11:42:45 -05001124 ScopedThreadStateChange(self, Thread::kNative);
1125 JNIEnv* env = self->GetJniEnv();
1126 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1127 CHECK(c.get() != NULL);
1128 // TODO: cache method?
1129 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1130 CHECK(mid != NULL);
1131 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1132 if (class_name_object.get() == NULL) {
1133 return NULL;
1134 }
1135 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001136 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1137 class_name_object.get()));
1138 if (env->ExceptionOccurred()) {
1139 env->ExceptionClear(); // Failed to find class fall-through to NCDFE
1140 // TODO: initialize the cause of the NCDFE to this exception
1141 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001142 // broken loader - throw NPE to be compatible with Dalvik
1143 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1144 class_name_string.c_str());
1145 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001146 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001147 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001148 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001149 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001150 }
1151
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001152 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001153 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001154}
1155
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001156Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001157 const ClassLoader* class_loader,
1158 const DexFile& dex_file,
1159 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001160 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001161 // Load the class from the dex file.
1162 if (!init_done_) {
1163 // finish up init of hand crafted class_roots_
1164 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001165 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001166 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001167 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001168 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001169 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001170 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001171 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001172 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001173 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001174 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001175 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001176 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001177 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001178 }
1179 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001180 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001181 }
1182 klass->SetDexCache(FindDexCache(dex_file));
1183 LoadClass(dex_file, dex_class_def, klass, class_loader);
1184 // Check for a pending exception during load
1185 Thread* self = Thread::Current();
1186 if (self->IsExceptionPending()) {
1187 return NULL;
1188 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001189 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001190 klass->SetClinitThreadId(self->GetTid());
1191 // Add the newly loaded class to the loaded classes table.
Ian Rogers5d76c432011-10-31 21:42:49 -07001192 bool success = InsertClass(descriptor, klass.get(), false); // TODO: just return collision
Brian Carlstromaded5f72011-10-07 17:15:04 -07001193 if (!success) {
1194 // We may fail to insert if we raced with another thread.
1195 klass->SetClinitThreadId(0);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001196 klass.reset(LookupClass(descriptor.data(), class_loader));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001197 CHECK(klass.get() != NULL);
1198 return klass.get();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001199 }
1200 // Finish loading (if necessary) by finding parents
1201 CHECK(!klass->IsLoaded());
1202 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1203 // Loading failed.
1204 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001205 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001206 lock.NotifyAll();
1207 return NULL;
1208 }
1209 CHECK(klass->IsLoaded());
1210 // Link the class (if necessary)
1211 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001212 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001213 // Linking failed.
1214 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001215 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001216 lock.NotifyAll();
1217 return NULL;
1218 }
1219 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001220
1221 /*
1222 * We send CLASS_PREPARE events to the debugger from here. The
1223 * definition of "preparation" is creating the static fields for a
1224 * class and initializing them to the standard default values, but not
1225 * executing any code (that comes later, during "initialization").
1226 *
1227 * We did the static preparation in LinkClass.
1228 *
1229 * The class has been prepared and resolved but possibly not yet verified
1230 * at this point.
1231 */
1232 Dbg::PostClassPrepare(klass.get());
1233
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001234 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001235}
1236
Brian Carlstrom4873d462011-08-21 15:23:39 -07001237// Precomputes size that will be needed for Class, matching LinkStaticFields
1238size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1239 const DexFile::ClassDef& dex_class_def) {
1240 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001241 size_t num_ref = 0;
1242 size_t num_32 = 0;
1243 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001244 if (class_data != NULL) {
1245 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1246 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001247 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001248 char c = descriptor[0];
1249 if (c == 'L' || c == '[') {
1250 num_ref++;
1251 } else if (c == 'J' || c == 'D') {
1252 num_64++;
1253 } else {
1254 num_32++;
1255 }
1256 }
1257 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001258 // start with generic class data
1259 size_t size = sizeof(Class);
1260 // follow with reference fields which must be contiguous at start
1261 size += (num_ref * sizeof(uint32_t));
1262 // if there are 64-bit fields to add, make sure they are aligned
1263 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1264 if (num_32 != 0) {
1265 // use an available 32-bit field for padding
1266 num_32--;
1267 }
1268 size += sizeof(uint32_t); // either way, we are adding a word
1269 DCHECK_EQ(size, RoundUp(size, 8));
1270 }
1271 // tack on any 64-bit fields now that alignment is assured
1272 size += (num_64 * sizeof(uint64_t));
1273 // tack on any remaining 32-bit fields
1274 size += (num_32 * sizeof(uint32_t));
1275 return size;
1276}
1277
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001278void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001279 // Every kind of method should at least get an invoke stub from the oat_method.
1280 // non-abstract methods also get their code pointers.
1281 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001282 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001283
1284 if (method->IsAbstract()) {
1285 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1286 return;
1287 }
1288 if (method->IsNative()) {
1289 // unregistering restores the dlsym lookup stub
1290 method->UnregisterNative();
jeffhao26c0a1a2012-01-17 16:28:33 -08001291 }
1292
1293 if (Runtime::Current()->IsMethodTracingActive()) {
1294#if defined(__arm__)
1295 Trace* tracer = Runtime::Current()->GetTracer();
1296 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
1297 tracer->SaveAndUpdateCode(method.get(), trace_stub);
1298#else
1299 UNIMPLEMENTED(WARNING);
1300#endif
Brian Carlstrom92827a52011-10-10 15:50:01 -07001301 }
1302}
1303
Brian Carlstromf615a612011-07-23 12:50:34 -07001304void ClassLinker::LoadClass(const DexFile& dex_file,
1305 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001306 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001307 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001308 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001309 CHECK(klass->GetDexCache() != NULL);
1310 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001311 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001312 CHECK(descriptor != NULL);
1313
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001314 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001315 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001316 // Make sure that none of our runtime-only flags are set.
1317 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001318 klass->SetAccessFlags(access_flags);
1319 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001320 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001321 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001322
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001323 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001324
Ian Rogers0571d352011-11-03 19:51:38 -07001325 // Load fields fields.
1326 const byte* class_data = dex_file.GetClassData(dex_class_def);
1327 if (class_data == NULL) {
1328 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001329 }
Ian Rogers0571d352011-11-03 19:51:38 -07001330 ClassDataItemIterator it(dex_file, class_data);
1331 if (it.NumStaticFields() != 0) {
1332 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1333 }
1334 if (it.NumInstanceFields() != 0) {
1335 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1336 }
1337 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1338 SirtRef<Field> sfield(AllocField());
1339 klass->SetStaticField(i, sfield.get());
1340 LoadField(dex_file, it, klass, sfield);
1341 }
1342 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1343 SirtRef<Field> ifield(AllocField());
1344 klass->SetInstanceField(i, ifield.get());
1345 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001346 }
1347
Brian Carlstromaded5f72011-10-07 17:15:04 -07001348 UniquePtr<const OatFile::OatClass> oat_class;
1349 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001350 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001351 if (oat_file != NULL) {
1352 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1353 if (oat_dex_file != NULL) {
1354 uint32_t class_def_index;
1355 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1356 CHECK(found) << descriptor;
1357 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001358 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001359 }
1360 }
1361 }
Ian Rogers0571d352011-11-03 19:51:38 -07001362 // Load methods.
1363 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001364 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001365 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001366 }
Ian Rogers0571d352011-11-03 19:51:38 -07001367 if (it.NumVirtualMethods() != 0) {
1368 // TODO: append direct methods to class object
1369 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001370 }
Ian Rogers0571d352011-11-03 19:51:38 -07001371 size_t method_index = 0;
1372 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1373 SirtRef<Method> method(AllocMethod());
1374 klass->SetDirectMethod(i, method.get());
1375 LoadMethod(dex_file, it, klass, method);
1376 if (oat_class.get() != NULL) {
1377 LinkCode(method, oat_class.get(), method_index);
1378 }
1379 method_index++;
1380 }
1381 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1382 SirtRef<Method> method(AllocMethod());
1383 klass->SetVirtualMethod(i, method.get());
1384 LoadMethod(dex_file, it, klass, method);
1385 if (oat_class.get() != NULL) {
1386 LinkCode(method, oat_class.get(), method_index);
1387 }
1388 method_index++;
1389 }
1390 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001391}
1392
Ian Rogers0571d352011-11-03 19:51:38 -07001393void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1394 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001395 uint32_t field_idx = it.GetMemberIndex();
1396 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001397 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001398 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001399}
1400
Ian Rogers0571d352011-11-03 19:51:38 -07001401void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1402 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001403 uint32_t method_idx = it.GetMemberIndex();
1404 dst->SetDexMethodIndex(method_idx);
1405 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001406 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001407
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001408
1409 StringPiece method_name(dex_file.GetMethodName(method_id));
1410 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001411 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1412 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001413
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001414 if (method_name == "finalize") {
1415 // Create the prototype for a signature of "()V"
1416 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1417 if (void_string_id != NULL) {
1418 const DexFile::TypeId* void_type_id =
1419 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1420 if (void_type_id != NULL) {
1421 std::vector<uint16_t> no_args;
1422 const DexFile::ProtoId* finalizer_proto =
1423 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1424 if (finalizer_proto != NULL) {
1425 // We have the prototype in the dex file
1426 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1427 klass->SetFinalizable();
1428 } else {
1429 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1430 // The Enum class declares a "final" finalize() method to prevent subclasses from
1431 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1432 // subclasses, so we exclude it here.
1433 // We also want to avoid setting the flag on Object, where we know that finalize() is
1434 // empty.
1435 if (klass_descriptor != "Ljava/lang/Object;" &&
1436 klass_descriptor != "Ljava/lang/Enum;") {
1437 klass->SetFinalizable();
1438 }
1439 }
1440 }
1441 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001442 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001443 }
Ian Rogers0571d352011-11-03 19:51:38 -07001444 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001445 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001446
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001447 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1448 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1449 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1450 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1451 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1452 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001453
Brian Carlstrom934486c2011-07-12 23:42:50 -07001454 // TODO: check for finalize method
Brian Carlstrom934486c2011-07-12 23:42:50 -07001455}
1456
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001457void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001458 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1459 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001460}
1461
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001462void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1463 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001464 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001465 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001466}
1467
Brian Carlstromaded5f72011-10-07 17:15:04 -07001468bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001469 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001470 for (size_t i = 0; i != dex_files_.size(); ++i) {
1471 if (dex_files_[i] == &dex_file) {
1472 return true;
1473 }
1474 }
1475 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001476}
1477
Brian Carlstromaded5f72011-10-07 17:15:04 -07001478bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001479 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001480 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001481}
1482
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001483void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001484 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001485 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001486 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001487 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001488 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001489}
1490
Brian Carlstromaded5f72011-10-07 17:15:04 -07001491void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001492 {
1493 MutexLock mu(dex_lock_);
1494 if (IsDexFileRegisteredLocked(dex_file)) {
1495 return;
1496 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001497 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001498 // Don't alloc while holding the lock, since allocation may need to
1499 // suspend all threads and another thread may need the dex_lock_ to
1500 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001501 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001502 {
1503 MutexLock mu(dex_lock_);
1504 if (IsDexFileRegisteredLocked(dex_file)) {
1505 return;
1506 }
1507 RegisterDexFileLocked(dex_file, dex_cache);
1508 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001509}
1510
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001511void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001512 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001513 RegisterDexFileLocked(dex_file, dex_cache);
1514}
1515
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001516const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001517 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001518 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001519 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1520 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001521 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001522 }
1523 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001524 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001525 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001526}
1527
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001528DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001529 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001530 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001531 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001532 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001533 }
1534 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001535 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001536 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001537}
1538
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001539Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1540 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001541 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001542 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001543 CHECK(primitive_class != NULL);
1544 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001545 primitive_class->SetPrimitiveType(type);
1546 primitive_class->SetStatus(Class::kStatusInitialized);
Ian Rogers5d76c432011-10-31 21:42:49 -07001547 bool success = InsertClass(descriptor, primitive_class, false);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001548 CHECK(success) << "InitPrimitiveClass(" << descriptor << ") failed";
1549 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001550}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001551
Brian Carlstrombe977852011-07-19 14:54:54 -07001552// Create an array class (i.e. the class object for the array, not the
1553// array itself). "descriptor" looks like "[C" or "[[[[B" or
1554// "[Ljava/lang/String;".
1555//
1556// If "descriptor" refers to an array of primitives, look up the
1557// primitive type's internally-generated class object.
1558//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001559// "class_loader" is the class loader of the class that's referring to
1560// us. It's used to ensure that we're looking for the element type in
1561// the right context. It does NOT become the class loader for the
1562// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001563//
1564// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001565Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001566 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001567
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001568 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001569 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001570 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001571 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001572 return NULL;
1573 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001574
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001575 // See if the component type is already loaded. Array classes are
1576 // always associated with the class loader of their underlying
1577 // element type -- an array of Strings goes with the loader for
1578 // java/lang/String -- so we need to look for it there. (The
1579 // caller should have checked for the existence of the class
1580 // before calling here, but they did so with *their* class loader,
1581 // not the component type's loader.)
1582 //
1583 // If we find it, the caller adds "loader" to the class' initiating
1584 // loader list, which should prevent us from going through this again.
1585 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001586 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001587 // are the same, because our caller (FindClass) just did the
1588 // lookup. (Even if we get this wrong we still have correct behavior,
1589 // because we effectively do this lookup again when we add the new
1590 // class to the hash table --- necessary because of possible races with
1591 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001592 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001593 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001594 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001595 return new_class;
1596 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001597 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001598
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001599 // Fill out the fields in the Class.
1600 //
1601 // It is possible to execute some methods against arrays, because
1602 // all arrays are subclasses of java_lang_Object_, so we need to set
1603 // up a vtable. We can just point at the one in java_lang_Object_.
1604 //
1605 // Array classes are simple enough that we don't need to do a full
1606 // link step.
1607
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001608 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001609 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001610 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001611 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001612 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001613 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001614 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001615 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001616 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001617 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001618 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001619 }
1620 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001621 if (new_class.get() == NULL) {
1622 new_class.reset(AllocClass(sizeof(Class)));
1623 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001624 return NULL;
1625 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001626 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001627 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001628 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001629 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001630 new_class->SetSuperClass(java_lang_Object);
1631 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001632 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001633 new_class->SetClassLoader(component_type->GetClassLoader());
1634 new_class->SetStatus(Class::kStatusInitialized);
1635 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001636 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001637
1638
1639 // All arrays have java/lang/Cloneable and java/io/Serializable as
1640 // interfaces. We need to set that up here, so that stuff like
1641 // "instanceof" works right.
1642 //
1643 // Note: The GC could run during the call to FindSystemClass,
1644 // so we need to make sure the class object is GC-valid while we're in
1645 // there. Do this by clearing the interface list so the GC will just
1646 // think that the entries are null.
1647
1648
1649 // Use the single, global copies of "interfaces" and "iftable"
1650 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001651 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001652 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001653
1654 // Inherit access flags from the component type. Arrays can't be
1655 // used as a superclass or interface, so we want to add "final"
1656 // and remove "interface".
1657 //
1658 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001659 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001660 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001661 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1662 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001663
Ian Rogers5d76c432011-10-31 21:42:49 -07001664 if (InsertClass(descriptor, new_class.get(), false)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001665 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001666 }
1667 // Another thread must have loaded the class after we
1668 // started but before we finished. Abandon what we've
1669 // done.
1670 //
1671 // (Yes, this happens.)
1672
1673 // Grab the winning class.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001674 Class* other_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001675 DCHECK(other_class != NULL);
1676 return other_class;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001677}
1678
1679Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001680 switch (Primitive::GetType(type)) {
1681 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001682 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001683 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001684 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001685 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001686 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001687 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001688 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001689 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001690 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001691 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001692 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001693 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001694 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001695 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001696 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001697 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001698 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001699 case Primitive::kPrimNot:
1700 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001701 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001702 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001703 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001704 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001705}
1706
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001707bool ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001708 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001709 DexCache* dex_cache = klass->GetDexCache();
1710 std::string source;
1711 if (dex_cache != NULL) {
1712 source += " from ";
1713 source += dex_cache->GetLocation()->ToModifiedUtf8();
1714 }
1715 LOG(INFO) << "Loaded class " << descriptor << source;
1716 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001717 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001718 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001719 Table::iterator it;
1720 if (image_class) {
1721 // TODO: sanity check there's no match in classes_
1722 it = image_classes_.insert(std::make_pair(hash, klass));
1723 } else {
1724 // TODO: sanity check there's no match in image_classes_
1725 it = classes_.insert(std::make_pair(hash, klass));
1726 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001727 return ((*it).second == klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001728}
1729
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001730bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1731 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001732 MutexLock mu(classes_lock_);
1733 typedef Table::const_iterator It; // TODO: C++0x auto
1734 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001735 ClassHelper kh;
Brian Carlstromae826982011-11-09 01:33:42 -08001736 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
1737 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001738 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001739 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001740 classes_.erase(it);
1741 return true;
1742 }
1743 }
1744 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1745 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001746 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001747 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001748 image_classes_.erase(it);
1749 return true;
1750 }
1751 }
1752 return false;
1753}
1754
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001755Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1756 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001757 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001758 typedef Table::const_iterator It; // TODO: C++0x auto
Ian Rogers5d76c432011-10-31 21:42:49 -07001759 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001760 ClassHelper kh(NULL, this);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001761 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001762 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001763 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001764 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001765 return klass;
1766 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001767 }
Ian Rogers5d76c432011-10-31 21:42:49 -07001768 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1769 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001770 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001771 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001772 return klass;
1773 }
1774 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001775 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001776}
1777
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001778void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001779 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001780 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001781 MutexLock mu(classes_lock_);
1782 typedef Table::const_iterator It; // TODO: C++0x auto
1783 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001784 ClassHelper kh(NULL, this);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001785 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001786 Class* klass = it->second;
1787 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001788 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001789 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001790 }
1791 }
1792 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001793 Class* klass = it->second;
1794 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001795 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001796 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001797 }
1798 }
1799}
1800
jeffhao98eacac2011-09-14 16:11:53 -07001801void ClassLinker::VerifyClass(Class* klass) {
1802 if (klass->IsVerified()) {
1803 return;
1804 }
1805
1806 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved);
jeffhao98eacac2011-09-14 16:11:53 -07001807 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001808
Ian Rogersd81871c2011-10-03 13:57:23 -07001809 if (verifier::DexVerifier::VerifyClass(klass)) {
jeffhao5cfd6fb2011-09-27 13:54:29 -07001810 klass->SetStatus(Class::kStatusVerified);
1811 } else {
1812 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001813 Thread* self = Thread::Current();
1814 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
1815 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001816 PrettyDescriptor(klass).c_str());
jeffhao5cfd6fb2011-09-27 13:54:29 -07001817 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001818 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001819 }
jeffhao98eacac2011-09-14 16:11:53 -07001820}
1821
Ian Rogersc2b44472011-12-14 21:17:17 -08001822static void CheckProxyConstructor(Method* constructor);
1823static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
1824
Jesse Wilson95caa792011-10-12 18:14:17 -04001825Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001826 ClassLoader* loader, ObjectArray<Method>* methods,
1827 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08001828 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001829 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08001830 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001831 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001832 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001833 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001834 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001835 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07001836 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001837 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08001838
1839 klass->SetStatus(Class::kStatusIdx);
1840
1841 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
1842
1843 // Create static field that holds throws, instance fields are inherited
1844 klass->SetSFields(AllocObjectArray<Field>(1));
1845 SirtRef<Field> sfield(AllocField());
1846 klass->SetStaticField(0, sfield.get());
1847 sfield->SetDexFieldIndex(-1);
1848 sfield->SetDeclaringClass(klass.get());
1849 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001850
Ian Rogers466bb252011-10-14 03:29:56 -07001851 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001852 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001853 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04001854
Ian Rogers466bb252011-10-14 03:29:56 -07001855 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001856 size_t num_virtual_methods = methods->GetLength();
1857 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1858 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001859 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001860 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04001861 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001862
1863 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1864 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
1865 DCHECK(!Thread::Current()->IsExceptionPending());
1866
1867 // Link the fields and virtual methods, creating vtable and iftables
1868 if (!LinkClass(klass, interfaces)) {
Jesse Wilson95caa792011-10-12 18:14:17 -04001869 DCHECK(Thread::Current()->IsExceptionPending());
1870 return NULL;
1871 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001872 sfield->SetObject(NULL, throws); // initialize throws field
1873 klass->SetStatus(Class::kStatusInitialized);
1874
1875 // sanity checks
1876#ifndef NDEBUG
1877 bool debug = true;
1878#else
1879 bool debug = false;
1880#endif
1881 if (debug) {
1882 CHECK(klass->GetIFields() == NULL);
1883 CheckProxyConstructor(klass->GetDirectMethod(0));
1884 for (size_t i = 0; i < num_virtual_methods; ++i) {
1885 SirtRef<Method> prototype(methods->Get(i));
1886 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
1887 }
Brian Carlstrom89521892011-12-07 22:05:07 -08001888 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08001889 throws_field_name += name->ToModifiedUtf8();
1890 throws_field_name += ".throws";
1891 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
1892
1893 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
1894 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
1895 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001896 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04001897}
1898
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001899std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
1900 DCHECK(proxy_class->IsProxyClass());
1901 String* name = proxy_class->GetName();
1902 DCHECK(name != NULL);
1903 return DotToDescriptor(name->ToModifiedUtf8().c_str());
1904}
1905
1906
1907Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07001908 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07001909 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04001910 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07001911 Method* proxy_constructor = proxy_direct_methods->Get(2);
1912 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
1913 // code_ too)
1914 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
1915 // Make this constructor public and fix the class to be our Proxy version
1916 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001917 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08001918 return constructor;
1919}
1920
1921static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07001922 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001923 MethodHelper mh(constructor);
1924 CHECK_STREQ(mh.GetName(), "<init>");
1925 CHECK(mh.GetSignature() == "(Ljava/lang/reflect/InvocationHandler;)V");
Ian Rogers466bb252011-10-14 03:29:56 -07001926 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04001927}
1928
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001929Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
1930 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
1931 // prototype method
1932 prototype->GetDexCacheResolvedMethods()->Set(prototype->GetDexMethodIndex(), prototype.get());
1933 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07001934 // as necessary
1935 Method* method = down_cast<Method*>(prototype->Clone());
1936
1937 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
1938 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001939 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001940 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001941
Ian Rogers466bb252011-10-14 03:29:56 -07001942 // At runtime the method looks like a reference and argument saving method, clone the code
1943 // related parameters from this method.
1944 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
1945 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
1946 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
1947 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
1948 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogersc2b44472011-12-14 21:17:17 -08001949 return method;
1950}
Jesse Wilson95caa792011-10-12 18:14:17 -04001951
Ian Rogersc2b44472011-12-14 21:17:17 -08001952static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07001953 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001954 CHECK(!prototype->IsFinal());
1955 CHECK(method->IsFinal());
1956 CHECK(!method->IsAbstract());
1957 MethodHelper mh(method);
1958 const char* method_name = mh.GetName();
1959 const char* method_shorty = mh.GetShorty();
1960 Class* method_return = mh.GetReturnType();
1961
1962 mh.ChangeMethod(prototype.get());
1963
1964 CHECK_STREQ(mh.GetName(), method_name);
1965 CHECK_STREQ(mh.GetShorty(), method_shorty);
Ian Rogers466bb252011-10-14 03:29:56 -07001966
1967 // More complex sanity - via dex cache
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001968 CHECK_EQ(mh.GetReturnType(), method_return);
Jesse Wilson95caa792011-10-12 18:14:17 -04001969}
1970
Brian Carlstrom25c33252011-09-18 15:58:35 -07001971bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001972 CHECK(klass->IsResolved() || klass->IsErroneous())
1973 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001974
Carl Shapirob5573532011-07-12 18:22:59 -07001975 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001976
Brian Carlstrom25c33252011-09-18 15:58:35 -07001977 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001978 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001979 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001980 ObjectLock lock(klass);
1981
Brian Carlstromd1422f82011-09-28 11:37:09 -07001982 if (klass->GetStatus() == Class::kStatusInitialized) {
1983 return true;
1984 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001985
Brian Carlstromd1422f82011-09-28 11:37:09 -07001986 if (klass->IsErroneous()) {
1987 ThrowEarlierClassFailure(klass);
1988 return false;
1989 }
1990
1991 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07001992 VerifyClass(klass);
1993 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08001994 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001995 return false;
1996 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001997 }
1998
Brian Carlstrom25c33252011-09-18 15:58:35 -07001999 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2000 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002001 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers595799e2012-01-11 17:32:51 -08002002 // don't bother going to kStatusInitializing. We return true to maintain
2003 // the invariant that a false result implies there is a pending exception.
2004 return true;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002005 }
2006
Brian Carlstromd1422f82011-09-28 11:37:09 -07002007 // If the class is kStatusInitializing, either this thread is
2008 // initializing higher up the stack or another thread has beat us
2009 // to initializing and we need to wait. Either way, this
2010 // invocation of InitializeClass will not be responsible for
2011 // running <clinit> and will return.
2012 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002013 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002014 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002015 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002016 return true;
2017 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002018 // No. That's fine. Wait for another thread to finish initializing.
2019 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002020 }
2021
2022 if (!ValidateSuperClassDescriptors(klass)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002023 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002024 klass->SetStatus(Class::kStatusError);
2025 return false;
2026 }
2027
Brian Carlstromd1422f82011-09-28 11:37:09 -07002028 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002029
Elliott Hughesdcc24742011-09-07 14:02:44 -07002030 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002031 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002032 }
2033
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002034 uint64_t t0 = NanoTime();
2035
Brian Carlstrom25c33252011-09-18 15:58:35 -07002036 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002037 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002038 return false;
2039 }
2040
2041 InitializeStaticFields(klass);
2042
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002043 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002044 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002045 }
2046
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002047 uint64_t t1 = NanoTime();
2048
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002049 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002050 {
2051 ObjectLock lock(klass);
2052
2053 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002054 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002055 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002056 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002057 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002058 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2059 RuntimeStats* thread_stats = self->GetStats();
2060 ++global_stats->class_init_count;
2061 ++thread_stats->class_init_count;
2062 global_stats->class_init_time_ns += (t1 - t0);
2063 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002064 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002065 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002066 ClassHelper kh(klass);
2067 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002068 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002069 }
2070 lock.NotifyAll();
2071 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002072 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002073}
2074
Brian Carlstromd1422f82011-09-28 11:37:09 -07002075bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2076 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002077 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002078 lock.Wait();
2079
2080 // When we wake up, repeat the test for init-in-progress. If
2081 // there's an exception pending (only possible if
2082 // "interruptShouldThrow" was set), bail out.
2083 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002084 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002085 klass->SetStatus(Class::kStatusError);
2086 return false;
2087 }
2088 // Spurious wakeup? Go back to waiting.
2089 if (klass->GetStatus() == Class::kStatusInitializing) {
2090 continue;
2091 }
2092 if (klass->IsErroneous()) {
2093 // The caller wants an exception, but it was thrown in a
2094 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002095 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002096 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002097 return false;
2098 }
2099 if (klass->IsInitialized()) {
2100 return true;
2101 }
2102 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2103 }
2104 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2105}
2106
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002107bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2108 if (klass->IsInterface()) {
2109 return true;
2110 }
2111 // begin with the methods local to the superclass
2112 if (klass->HasSuperClass() &&
2113 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2114 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002115 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2116 const Method* method = klass->GetVTable()->Get(i);
2117 if (method != super->GetVTable()->Get(i) &&
2118 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002119 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2120 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2121 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002122 return false;
2123 }
2124 }
2125 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002126 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2127 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2128 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002129 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2130 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002131 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002132 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2133 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002134 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2135 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2136 PrettyMethod(method).c_str(),
2137 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002138 return false;
2139 }
2140 }
2141 }
2142 }
2143 return true;
2144}
2145
Ian Rogers595799e2012-01-11 17:32:51 -08002146// Returns true if classes referenced by the signature of the method are the
2147// same classes in klass1 as they are in klass2.
2148bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2149 const Class* klass1,
2150 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002151 if (klass1 == klass2) {
2152 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002153 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002154 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002155 const DexFile::ProtoId& proto_id =
2156 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002157 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2158 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002159 if (descriptor == NULL) {
2160 break;
2161 }
2162 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2163 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002164 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002165 return false;
2166 }
2167 }
2168 }
2169 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002170 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002171 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002172 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002173 return false;
2174 }
2175 }
2176 return true;
2177}
2178
Ian Rogers595799e2012-01-11 17:32:51 -08002179// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2180bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2181 const Class* klass1,
2182 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002183 CHECK(descriptor != NULL);
2184 CHECK(klass1 != NULL);
2185 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002186 if (klass1 == klass2) {
2187 return true;
2188 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002189 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002190 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002191 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002192 }
Ian Rogers595799e2012-01-11 17:32:51 -08002193 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2194 if (found2 == NULL) {
2195 Thread::Current()->ClearException();
2196 }
2197 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002198}
2199
Brian Carlstrom25c33252011-09-18 15:58:35 -07002200bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002201 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002202 if (!klass->IsInterface() && klass->HasSuperClass()) {
2203 Class* super_class = klass->GetSuperClass();
2204 if (super_class->GetStatus() != Class::kStatusInitialized) {
2205 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002206 Thread* self = Thread::Current();
2207 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002208 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002209 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002210 // TODO: check for a pending exception
2211 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002212 if (!can_run_clinit) {
2213 // Don't set status to error when we can't run <clinit>.
2214 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing);
2215 klass->SetStatus(Class::kStatusVerified);
2216 return false;
2217 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002218 klass->SetStatus(Class::kStatusError);
2219 klass->NotifyAll();
2220 return false;
2221 }
2222 }
2223 }
2224 return true;
2225}
2226
Brian Carlstrom25c33252011-09-18 15:58:35 -07002227bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002228 CHECK(c != NULL);
2229 if (c->IsInitialized()) {
2230 return true;
2231 }
2232
Elliott Hughes5f791332011-09-15 17:45:30 -07002233 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002234 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002235 bool success = InitializeClass(c, can_run_clinit);
2236 if (!success) {
2237 CHECK(self->IsExceptionPending());
2238 }
2239 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002240}
2241
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002242void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002243 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002244 const ClassLoader* cl = c->GetClassLoader();
2245 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002246 ClassDataItemIterator it(dex_file, class_data);
2247 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2248 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002249 }
2250}
2251
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002252void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002253 size_t num_static_fields = klass->NumStaticFields();
2254 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002255 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002256 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002257 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002258 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002259 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002260 return;
2261 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002262 ClassHelper kh(klass);
2263 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002264 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002265 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002266 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002267
Ian Rogers0571d352011-11-03 19:51:38 -07002268 if (it.HasNext()) {
2269 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2270 std::map<uint32_t, Field*> field_map;
2271 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2272 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2273 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002274 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002275 }
2276}
2277
Ian Rogersc2b44472011-12-14 21:17:17 -08002278bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002279 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002280 if (!LinkSuperClass(klass)) {
2281 return false;
2282 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002283 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002284 return false;
2285 }
2286 if (!LinkInstanceFields(klass)) {
2287 return false;
2288 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002289 if (!LinkStaticFields(klass)) {
2290 return false;
2291 }
2292 CreateReferenceInstanceOffsets(klass);
2293 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002294 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2295 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002296 return true;
2297}
2298
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002299bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002300 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002301 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2302 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002303 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002304 uint16_t super_class_idx = class_def->superclass_idx_;
2305 if (super_class_idx != DexFile::kDexNoIndex16) {
2306 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002307 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002308 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002309 return false;
2310 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002311 // Verify
2312 if (!klass->CanAccess(super_class)) {
2313 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2314 "Class %s extended by class %s is inaccessible",
2315 PrettyDescriptor(super_class).c_str(),
2316 PrettyDescriptor(klass.get()).c_str());
2317 return false;
2318 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002319 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002320 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002321 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2322 if (interfaces != NULL) {
2323 for (size_t i = 0; i < interfaces->Size(); i++) {
2324 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2325 Class* interface = ResolveType(dex_file, idx, klass.get());
2326 if (interface == NULL) {
2327 DCHECK(Thread::Current()->IsExceptionPending());
2328 return false;
2329 }
2330 // Verify
2331 if (!klass->CanAccess(interface)) {
2332 // TODO: the RI seemed to ignore this in my testing.
2333 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2334 "Interface %s implemented by class %s is inaccessible",
2335 PrettyDescriptor(interface).c_str(),
2336 PrettyDescriptor(klass.get()).c_str());
2337 return false;
2338 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002339 }
2340 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002341 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002342 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002343 return true;
2344}
2345
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002346bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002347 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002348 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002349 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002350 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002351 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002352 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002353 return false;
2354 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002355 return true;
2356 }
2357 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002358 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002359 return false;
2360 }
2361 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002362 if (super->IsFinal() || super->IsInterface()) {
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002363 Thread* thread = Thread::Current();
2364 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002365 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002366 PrettyDescriptor(super).c_str(),
2367 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002368 super->IsFinal() ? "declared final" : "an interface");
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002369 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002370 return false;
2371 }
2372 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002373 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002374 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002375 PrettyDescriptor(super).c_str(),
2376 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002377 return false;
2378 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002379
2380 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2381 if (super->IsFinalizable()) {
2382 klass->SetFinalizable();
2383 }
2384
Elliott Hughes2da50362011-10-10 16:57:08 -07002385 // Inherit reference flags (if any) from the superclass.
2386 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2387 if (reference_flags != 0) {
2388 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2389 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002390 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002391 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002392 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002393 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002394 return false;
2395 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002396
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002397#ifndef NDEBUG
2398 // Ensure super classes are fully resolved prior to resolving fields..
2399 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002400 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002401 super = super->GetSuperClass();
2402 }
2403#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002404 return true;
2405}
2406
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002407// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002408bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002409 if (klass->IsInterface()) {
2410 // No vtable.
2411 size_t count = klass->NumVirtualMethods();
2412 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002413 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002414 return false;
2415 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002416 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002417 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002418 }
jeffhaobdb76512011-09-07 11:43:16 -07002419 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002420 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002421 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002422 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002423 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002424 }
2425 return true;
2426}
2427
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002428bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002429 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002430 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2431 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002432 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002433 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002434 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002435 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002436 MethodHelper local_mh(NULL, this);
2437 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002438 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002439 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002440 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002441 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002442 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002443 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002444 super_mh.ChangeMethod(super_method);
2445 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002446 // Verify
2447 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002448 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002449 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002450 PrettyDescriptor(klass.get()).c_str(),
2451 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002452 return false;
2453 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002454 vtable->Set(j, local_method);
2455 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002456 break;
2457 }
2458 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002459 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002460 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002461 vtable->Set(actual_count, local_method);
2462 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002463 actual_count += 1;
2464 }
2465 }
2466 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002467 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002468 return false;
2469 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002470 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002471 CHECK_LE(actual_count, max_count);
2472 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002473 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002474 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002475 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002476 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002477 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002478 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002479 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002480 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002481 return false;
2482 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002483 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002484 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002485 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2486 vtable->Set(i, virtual_method);
2487 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002488 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002489 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002490 }
2491 return true;
2492}
2493
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002494bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002495 size_t super_ifcount;
2496 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002497 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002498 } else {
2499 super_ifcount = 0;
2500 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002501 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002502 ClassHelper kh(klass.get(), this);
2503 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2504 ifcount += num_interfaces;
2505 for (size_t i = 0; i < num_interfaces; i++) {
2506 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2507 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002508 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002509 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002510 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002511 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002512 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002513 return true;
2514 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002515 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002516 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002517 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2518 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002519 Class* super_interface = super_iftable->Get(i)->GetInterface();
2520 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002521 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002522 }
2523 // Flatten the interface inheritance hierarchy.
2524 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002525 for (size_t i = 0; i < num_interfaces; i++) {
2526 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002527 DCHECK(interface != NULL);
2528 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002529 ClassHelper ih(interface);
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002530 Thread* thread = Thread::Current();
2531 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002532 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002533 PrettyDescriptor(klass.get()).c_str(),
2534 PrettyDescriptor(ih.GetDescriptor()).c_str());
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002535 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002536 return false;
2537 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002538 // Check if interface is already in iftable
2539 bool duplicate = false;
2540 for (size_t j = 0; j < idx; j++) {
2541 Class* existing_interface = iftable->Get(j)->GetInterface();
2542 if (existing_interface == interface) {
2543 duplicate = true;
2544 break;
2545 }
2546 }
2547 if (!duplicate) {
2548 // Add this non-duplicate interface.
2549 iftable->Set(idx++, AllocInterfaceEntry(interface));
2550 // Add this interface's non-duplicate super-interfaces.
2551 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2552 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2553 bool super_duplicate = false;
2554 for (size_t k = 0; k < idx; k++) {
2555 Class* existing_interface = iftable->Get(k)->GetInterface();
2556 if (existing_interface == super_interface) {
2557 super_duplicate = true;
2558 break;
2559 }
2560 }
2561 if (!super_duplicate) {
2562 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2563 }
2564 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002565 }
2566 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002567 // Shrink iftable in case duplicates were found
2568 if (idx < ifcount) {
2569 iftable.reset(iftable->CopyOf(idx));
2570 ifcount = idx;
2571 } else {
2572 CHECK_EQ(idx, ifcount);
2573 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002574 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002575
2576 // If we're an interface, we don't need the vtable pointers, so we're done.
2577 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002578 return true;
2579 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002580 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002581 MethodHelper vtable_mh(NULL, this);
2582 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002583 for (size_t i = 0; i < ifcount; ++i) {
2584 InterfaceEntry* interface_entry = iftable->Get(i);
2585 Class* interface = interface_entry->GetInterface();
2586 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2587 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002588 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002589 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2590 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002591 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002592 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002593 // For each method listed in the interface's method list, find the
2594 // matching method in our class's method list. We want to favor the
2595 // subclass over the superclass, which just requires walking
2596 // back from the end of the vtable. (This only matters if the
2597 // superclass defines a private method and this class redefines
2598 // it -- otherwise it would use the same vtable slot. In .dex files
2599 // those don't end up in the virtual method table, so it shouldn't
2600 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002601 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2602 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002603 vtable_mh.ChangeMethod(vtable_method);
2604 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002605 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002606 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002607 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002608 return false;
2609 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002610 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002611 break;
2612 }
2613 }
2614 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002615 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002616 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002617 Method* mir_method = miranda_list[mir];
2618 vtable_mh.ChangeMethod(mir_method);
2619 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002620 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002621 break;
2622 }
2623 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002624 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002625 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002626 miranda_method.reset(AllocMethod());
2627 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2628 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002629 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002630 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002631 }
2632 }
2633 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002634 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002635 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002636 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002637 klass->SetVirtualMethods((old_method_count == 0)
2638 ? AllocObjectArray<Method>(new_method_count)
2639 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002640
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002641 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2642 CHECK(vtable != NULL);
2643 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002644 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002645 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002646 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002647 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002648 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002649 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2650 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2651 klass->SetVirtualMethod(old_method_count + i, method);
2652 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002653 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002654 // TODO: do not assign to the vtable field until it is fully constructed.
2655 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002656 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002657
2658 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2659 for (int i = 0; i < vtable->GetLength(); ++i) {
2660 CHECK(vtable->Get(i) != NULL);
2661 }
2662
2663// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2664
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002665 return true;
2666}
2667
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002668bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2669 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002670 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002671}
2672
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002673bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2674 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002675 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002676 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002677 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002678 return success;
2679}
2680
Brian Carlstromdbc05252011-09-09 01:59:59 -07002681struct LinkFieldsComparator {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002682 LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002683 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002684 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002685 fh_->ChangeField(field1);
2686 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
2687 fh_->ChangeField(field2);
2688 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002689 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2690 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2691 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2692 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002693 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2694 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2695 if (order1 != order2) {
2696 return order1 < order2;
2697 }
2698
2699 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002700 fh_->ChangeField(field1);
2701 StringPiece name1(fh_->GetName());
2702 fh_->ChangeField(field2);
2703 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07002704 return name1 < name2;
2705 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002706
2707 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002708};
2709
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002710bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002711 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002712 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002713
2714 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002715 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002716
2717 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002718 size_t size;
2719 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002720 if (is_static) {
2721 size = klass->GetClassSize();
2722 field_offset = Class::FieldsOffset();
2723 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002724 Class* super_class = klass->GetSuperClass();
2725 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002726 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002727 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002728 }
2729 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002730 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002731
Brian Carlstromdbc05252011-09-09 01:59:59 -07002732 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002733
Brian Carlstromdbc05252011-09-09 01:59:59 -07002734 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002735 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002736 std::deque<Field*> grouped_and_sorted_fields;
2737 for (size_t i = 0; i < num_fields; i++) {
2738 grouped_and_sorted_fields.push_back(fields->Get(i));
2739 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002740 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002741 std::sort(grouped_and_sorted_fields.begin(),
2742 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002743 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002744
2745 // References should be at the front.
2746 size_t current_field = 0;
2747 size_t num_reference_fields = 0;
2748 for (; current_field < num_fields; current_field++) {
2749 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002750 fh.ChangeField(field);
2751 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002752 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002753 if (isPrimitive) {
2754 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002755 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002756 grouped_and_sorted_fields.pop_front();
2757 num_reference_fields++;
2758 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002759 field->SetOffset(field_offset);
2760 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002761 }
2762
2763 // Now we want to pack all of the double-wide fields together. If
2764 // we're not aligned, though, we want to shuffle one 32-bit field
2765 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002766 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002767 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2768 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002769 fh.ChangeField(field);
2770 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002771 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2772 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002773 continue;
2774 }
2775 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002776 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002777 // drop the consumed field
2778 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2779 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002780 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002781 // whether we found a 32-bit field for padding or not, we advance
2782 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002783 }
2784
2785 // Alignment is good, shuffle any double-wide fields forward, and
2786 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002787 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002788 while (!grouped_and_sorted_fields.empty()) {
2789 Field* field = grouped_and_sorted_fields.front();
2790 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002791 fh.ChangeField(field);
2792 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002793 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002794 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002795 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002796 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002797 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002798 ? sizeof(uint64_t)
2799 : sizeof(uint32_t)));
2800 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002801 }
2802
Elliott Hughesadb460d2011-10-05 17:02:34 -07002803 // 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 -08002804 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
2805 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002806 // We know there are no non-reference fields in the Reference classes, and we know
2807 // that 'referent' is alphabetically last, so this is easy...
2808 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002809 fh.ChangeField(fields->Get(num_fields - 1));
2810 StringPiece name(fh.GetName());
2811 CHECK(name == "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07002812 --num_reference_fields;
2813 }
2814
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002815#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002816 // Make sure that all reference fields appear before
2817 // non-reference fields, and all double-wide fields are aligned.
2818 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002819 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002820 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002821 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002822 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002823 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002824 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002825 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2826 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002827 fh.ChangeField(field);
2828 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002829 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002830 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002831 is_primitive = true; // We lied above, so we have to expect a lie here.
2832 }
2833 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002834 if (!seen_non_ref) {
2835 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002836 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002837 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002838 } else {
2839 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002840 }
2841 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002842 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002843 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002844 }
2845#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002846 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002847 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002848 if (is_static) {
2849 klass->SetNumReferenceStaticFields(num_reference_fields);
2850 klass->SetClassSize(size);
2851 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002852 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002853 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002854 klass->SetObjectSize(size);
2855 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002856 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002857 return true;
2858}
2859
2860// Set the bitmap of reference offsets, refOffsets, from the ifields
2861// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002862void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002863 uint32_t reference_offsets = 0;
2864 Class* super_class = klass->GetSuperClass();
2865 if (super_class != NULL) {
2866 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002867 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002868 if (reference_offsets == CLASS_WALK_SUPER) {
2869 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002870 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002871 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002872 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002873 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002874}
2875
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002876void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002877 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002878}
2879
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002880void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002881 uint32_t reference_offsets) {
2882 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002883 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
2884 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002885 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002886 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002887 // All of the fields that contain object references are guaranteed
2888 // to be at the beginning of the fields list.
2889 for (size_t i = 0; i < num_reference_fields; ++i) {
2890 // Note that byte_offset is the offset from the beginning of
2891 // object, not the offset into instance data
2892 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002893 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002894 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
2895 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
2896 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002897 CHECK_NE(new_bit, 0U);
2898 reference_offsets |= new_bit;
2899 } else {
2900 reference_offsets = CLASS_WALK_SUPER;
2901 break;
2902 }
2903 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002904 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002905 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002906 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002907 } else {
2908 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002909 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002910}
2911
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002912String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002913 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002914 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002915 if (resolved != NULL) {
2916 return resolved;
2917 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002918 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
2919 int32_t utf16_length = dex_file.GetStringLength(string_id);
2920 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07002921 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002922 dex_cache->SetResolvedString(string_idx, string);
2923 return string;
2924}
2925
2926Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002927 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002928 DexCache* dex_cache,
2929 const ClassLoader* class_loader) {
2930 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002931 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07002932 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002933 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002934 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05002935 // TODO: we used to throw here if resolved's class loader was not the
2936 // boot class loader. This was to permit different classes with the
2937 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002938 dex_cache->SetResolvedType(type_idx, resolved);
2939 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08002940 CHECK(Thread::Current()->IsExceptionPending())
2941 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002942 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002943 }
2944 return resolved;
2945}
2946
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002947Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
2948 uint32_t method_idx,
2949 DexCache* dex_cache,
2950 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002951 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002952 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
2953 if (resolved != NULL) {
2954 return resolved;
2955 }
2956 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2957 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
2958 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002959 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002960 return NULL;
2961 }
2962
Ian Rogers0571d352011-11-03 19:51:38 -07002963 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
2964 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002965 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002966 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002967 } else if (klass->IsInterface()) {
2968 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002969 } else {
2970 resolved = klass->FindVirtualMethod(name, signature);
2971 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002972 if (resolved != NULL) {
2973 dex_cache->SetResolvedMethod(method_idx, resolved);
2974 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08002975 ThrowNoSuchMethodError(is_direct, klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002976 }
2977 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002978}
2979
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002980Field* ClassLinker::ResolveField(const DexFile& dex_file,
2981 uint32_t field_idx,
2982 DexCache* dex_cache,
2983 const ClassLoader* class_loader,
2984 bool is_static) {
2985 Field* resolved = dex_cache->GetResolvedField(field_idx);
2986 if (resolved != NULL) {
2987 return resolved;
2988 }
2989 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
2990 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
2991 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08002992 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002993 return NULL;
2994 }
2995
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002996 const char* name = dex_file.GetFieldName(field_id);
2997 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002998 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002999 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003000 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003001 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003002 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003003 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003004 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003005 } else {
Ian Rogersb067ac22011-12-13 18:05:09 -08003006 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3007 }
3008 return resolved;
3009}
3010
3011Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3012 uint32_t field_idx,
3013 DexCache* dex_cache,
3014 const ClassLoader* class_loader) {
3015 Field* resolved = dex_cache->GetResolvedField(field_idx);
3016 if (resolved != NULL) {
3017 return resolved;
3018 }
3019 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3020 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3021 if (klass == NULL) {
3022 DCHECK(Thread::Current()->IsExceptionPending());
3023 return NULL;
3024 }
3025
3026 const char* name = dex_file.GetFieldName(field_id);
3027 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3028 resolved = klass->FindField(name, type);
3029 if (resolved != NULL) {
3030 dex_cache->SetResolvedField(field_idx, resolved);
3031 } else {
3032 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003033 }
3034 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003035}
3036
Ian Rogersad25ac52011-10-04 19:13:33 -07003037const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
3038 Class* declaring_class = referrer->GetDeclaringClass();
3039 DexCache* dex_cache = declaring_class->GetDexCache();
3040 const DexFile& dex_file = FindDexFile(dex_cache);
3041 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3042 return dex_file.GetShorty(method_id.proto_idx_);
3043}
3044
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003045void ClassLinker::DumpAllClasses(int flags) const {
3046 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3047 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3048 std::vector<Class*> all_classes;
3049 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003050 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003051 typedef Table::const_iterator It; // TODO: C++0x auto
3052 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3053 all_classes.push_back(it->second);
3054 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003055 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3056 all_classes.push_back(it->second);
3057 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003058 }
3059
3060 for (size_t i = 0; i < all_classes.size(); ++i) {
3061 all_classes[i]->DumpClass(std::cerr, flags);
3062 }
3063}
3064
Elliott Hughescac6cc72011-11-03 20:31:21 -07003065void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3066 MutexLock mu(classes_lock_);
3067 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3068 << classes_.size() << " allocated classes\n";
3069}
3070
Elliott Hughese27955c2011-08-26 15:21:24 -07003071size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003072 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003073 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003074}
3075
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003076pid_t ClassLinker::GetClassesLockOwner() {
3077 return classes_lock_.GetOwner();
3078}
3079
3080pid_t ClassLinker::GetDexLockOwner() {
3081 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003082}
3083
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003084void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3085 DCHECK(!init_done_);
3086
3087 DCHECK(klass != NULL);
3088 DCHECK(klass->GetClassLoader() == NULL);
3089
3090 DCHECK(class_roots_ != NULL);
3091 DCHECK(class_roots_->Get(class_root) == NULL);
3092 class_roots_->Set(class_root, klass);
3093}
3094
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003095} // namespace art