blob: c14f6bd8a5b8990e13a9bf438f17e28db441fb84 [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) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800552 std::string dex2oat_string("/system/bin/dex2oat");
553#ifndef NDEBUG
554 dex2oat_string += 'd';
555#endif
556 const char* dex2oat = dex2oat_string.c_str();
557
558 const char* class_path = Runtime::Current()->GetClassPath().c_str();
559
560 std::string boot_image_option_string("--boot-image=");
Ian Rogers30fab402012-01-23 15:43:46 -0800561 boot_image_option_string += Heap::GetSpaces()[0]->AsImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800562 const char* boot_image_option = boot_image_option_string.c_str();
563
564 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800565 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800566 const char* dex_file_option = dex_file_option_string.c_str();
567
Brian Carlstromd601af82012-01-06 10:15:19 -0800568 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800569 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800570 const char* oat_fd_option = oat_fd_option_string.c_str();
571
572 std::string oat_name_option_string("--oat-name=");
573 oat_name_option_string += oat_cache_filename;
574 const char* oat_name_option = oat_name_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800575
jeffhao262bf462011-10-20 18:36:32 -0700576 // fork and exec dex2oat
577 pid_t pid = fork();
578 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800579 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800580
581 // change process groups, so we don't get reaped by ProcessManager
582 setpgid(0, 0);
583
jeffhao10037c82012-01-23 15:06:23 -0800584 VLOG(class_linker) << dex2oat
585 << " --runtime-arg -Xms64m"
586 << " --runtime-arg -Xmx64m"
587 << " --runtime-arg -classpath"
588 << " --runtime-arg " << class_path
589 << " " << boot_image_option
590 << " " << dex_file_option
591 << " " << oat_fd_option
592 << " " << oat_name_option;
593
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800594 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700595 "--runtime-arg", "-Xms64m",
596 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500597 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800598 "--runtime-arg", class_path,
599 boot_image_option,
600 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800601 oat_fd_option,
602 oat_name_option,
jeffhao262bf462011-10-20 18:36:32 -0700603 NULL);
604
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800605 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800606 return false;
jeffhao262bf462011-10-20 18:36:32 -0700607 } else {
608 // wait for dex2oat to finish
609 int status;
610 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
611 if (got_pid != pid) {
612 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800613 return false;
jeffhao262bf462011-10-20 18:36:32 -0700614 }
615 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800616 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
617 return false;
jeffhao262bf462011-10-20 18:36:32 -0700618 }
619 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800620 return true;
jeffhao262bf462011-10-20 18:36:32 -0700621}
622
Brian Carlstrom866c8622012-01-06 16:35:13 -0800623void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
624 MutexLock mu(dex_lock_);
625 RegisterOatFileLocked(oat_file);
626}
627
628void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
629 dex_lock_.AssertHeld();
630 oat_files_.push_back(&oat_file);
631}
632
Ian Rogers30fab402012-01-23 15:43:46 -0800633OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700634 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700635 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700636 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800637 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
638 // check the down cast
639 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700640 std::string oat_filename;
641 oat_filename += runtime->GetHostPrefix();
642 oat_filename += oat_location->ToModifiedUtf8();
Ian Rogers30fab402012-01-23 15:43:46 -0800643 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBegin());
644 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700645 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700646 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700647 return NULL;
648 }
649 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
650 uint32_t image_oat_checksum = image_header.GetOatChecksum();
651 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800652 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700653 << " to expected oat checksum " << std::hex << oat_checksum
654 << " in image";
655 return NULL;
656 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800657 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800658 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700659 return oat_file;
660}
661
Brian Carlstromae826982011-11-09 01:33:42 -0800662const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
663 for (size_t i = 0; i < oat_files_.size(); i++) {
664 const OatFile* oat_file = oat_files_[i];
665 DCHECK(oat_file != NULL);
Ian Rogers7fe2c692011-12-06 16:35:59 -0800666 if (oat_file->GetOatDexFile(dex_file.GetLocation(), false)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800667 return oat_file;
668 }
669 }
670 return NULL;
671}
672
Brian Carlstromd601af82012-01-06 10:15:19 -0800673class LockedFd {
674 public:
675 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
676 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
677 if (fd == -1) {
678 PLOG(ERROR) << "Failed to open file '" << name << "'";
679 return NULL;
680 }
681 fchmod(fd, mode);
682
683 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
684 // try to lock non-blocking so we can log if we need may need to block
685 int result = flock(fd, LOCK_EX | LOCK_NB);
686 if (result == -1) {
687 LOG(WARNING) << "sleeping while locking file " << name;
688 // retry blocking
689 result = flock(fd, LOCK_EX);
690 }
691 if (result == -1) {
692 PLOG(ERROR) << "Failed to lock file '" << name << "'";
693 close(fd);
694 return NULL;
695 }
696 return new LockedFd(fd);
697 }
698
699 int GetFd() const {
700 return fd_;
701 }
702
703 ~LockedFd() {
704 if (fd_ != -1) {
705 int result = flock(fd_, LOCK_UN);
706 if (result == -1) {
707 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
708 }
709 close(fd_);
710 }
711 }
712
713 private:
714 explicit LockedFd(int fd) : fd_(fd) {}
715
716 int fd_;
717};
718
Brian Carlstromae826982011-11-09 01:33:42 -0800719const OatFile* ClassLinker::FindOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700720 MutexLock mu(dex_lock_);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800721 const OatFile* open_oat_file = FindOpenedOatFileForDexFile(dex_file);
722 if (open_oat_file != NULL) {
723 return open_oat_file;
Brian Carlstromae826982011-11-09 01:33:42 -0800724 }
725
Brian Carlstromd601af82012-01-06 10:15:19 -0800726 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_file.GetLocation()));
Brian Carlstrom866c8622012-01-06 16:35:13 -0800727 open_oat_file = FindOpenedOatFileFromOatLocation(oat_filename);
728 if (open_oat_file != NULL) {
729 return open_oat_file;
730 }
731
Brian Carlstromd601af82012-01-06 10:15:19 -0800732 while (true) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800733 UniquePtr<const OatFile> oat_file(FindOatFileFromOatLocation(oat_filename));
734 if (oat_file.get() != NULL) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800735 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
736 if (dex_file.GetHeader().checksum_ == oat_dex_file->GetDexFileChecksum()) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800737 RegisterOatFileLocked(*oat_file.get());
738 return oat_file.release();
Brian Carlstromd601af82012-01-06 10:15:19 -0800739 }
740 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
741 << " checksum mismatch with " << dex_file.GetLocation() << " --- regenerating";
742 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
743 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
744 }
745 // Fall through...
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700746 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800747 // Try to generate oat file if it wasn't found or was obsolete.
748 // Note we can be racing with another runtime to do this.
749 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
750 UniquePtr<LockedFd> locked_fd(LockedFd::CreateAndLock(oat_cache_filename, 0644));
751 if (locked_fd.get() == NULL) {
752 LOG(ERROR) << "Failed to create and lock oat file " << oat_cache_filename;
753 return NULL;
Elliott Hughes234da572011-11-03 22:13:06 -0700754 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800755 // Check to see if the fd we opened and locked matches the file in
756 // the filesystem. If they don't, then somebody else unlinked ours
757 // and created a new file, and we need to use that one instead. (If
758 // we caught them between the unlink and the create, we'll get an
759 // ENOENT from the file stat.)
760 struct stat fd_stat;
761 int fd_stat_result = fstat(locked_fd->GetFd(), &fd_stat);
762 if (fd_stat_result != 0) {
763 PLOG(ERROR) << "Failed to fstat file descriptor of oat file " << oat_cache_filename;
764 return NULL;
765 }
766 struct stat file_stat;
767 int file_stat_result = stat(oat_cache_filename.c_str(), &file_stat);
768 if (file_stat_result != 0
769 || fd_stat.st_dev != file_stat.st_dev
770 || fd_stat.st_ino != file_stat.st_ino) {
771 LOG(INFO) << "Opened oat file " << oat_cache_filename << " is stale; sleeping and retrying";
772 usleep(250 * 1000); // if something is hosed, don't peg machine
773 continue;
774 }
775
776 // We have the correct file open and locked. If the file size is
777 // zero, then it was just created by us and we can generate its
778 // contents. If not, someone else created it. Either way, we'll
779 // loop to retry opening the file.
780 if (fd_stat.st_size == 0) {
781 bool success = GenerateOatFile(dex_file.GetLocation(),
782 locked_fd->GetFd(),
783 oat_cache_filename);
784 if (!success) {
785 LOG(ERROR) << "Failed to generate oat file " << oat_cache_filename;
786 return NULL;
787 }
788 }
jeffhao262bf462011-10-20 18:36:32 -0700789 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800790 // Not reached
Brian Carlstromaded5f72011-10-07 17:15:04 -0700791}
792
Brian Carlstromae826982011-11-09 01:33:42 -0800793const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700794 for (size_t i = 0; i < oat_files_.size(); i++) {
795 const OatFile* oat_file = oat_files_[i];
796 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800797 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700798 return oat_file;
799 }
800 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700801 return NULL;
802}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700803
Brian Carlstromae826982011-11-09 01:33:42 -0800804const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800805 const OatFile* oat_file = OatFile::Open(oat_location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700806 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800807 if (oat_location.empty() || oat_location[0] != '/') {
808 LOG(ERROR) << "Failed to open oat file from " << oat_location;
Brian Carlstroma9f19782011-10-13 00:14:47 -0700809 return NULL;
810 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700811
Brian Carlstroma9f19782011-10-13 00:14:47 -0700812 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Elliott Hughes95572412011-12-13 18:14:20 -0800813 std::string cache_location(GetArtCacheFilenameOrDie(oat_location));
Brian Carlstromae826982011-11-09 01:33:42 -0800814 oat_file = FindOpenedOatFileFromOatLocation(cache_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700815 if (oat_file != NULL) {
816 return oat_file;
817 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700818 oat_file = OatFile::Open(cache_location, "", NULL);
819 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800820 LOG(INFO) << "Failed to open oat file from " << oat_location << " or " << cache_location << ".";
Brian Carlstroma9f19782011-10-13 00:14:47 -0700821 return NULL;
822 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700823 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700824
Brian Carlstromae826982011-11-09 01:33:42 -0800825 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700826 return oat_file;
827}
828
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700829void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800830 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700831 CHECK(!init_done_);
832
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700833 const std::vector<Space*>& spaces = Heap::GetSpaces();
834 for (size_t i = 0; i < spaces.size(); i++) {
Ian Rogers30fab402012-01-23 15:43:46 -0800835 if (spaces[i]->IsImageSpace()) {
836 ImageSpace* space = spaces[i]->AsImageSpace();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700837 OatFile* oat_file = OpenOat(space);
838 CHECK(oat_file != NULL) << "Failed to open oat file for image";
839 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
840 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
841
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800842 if (i == 0) {
843 // Special case of setting up the String class early so that we can test arbitrary objects
844 // as being Strings or not
Ian Rogers30fab402012-01-23 15:43:46 -0800845 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800846 ->AsObjectArray<Class>()->Get(kJavaLangString);
847 String::SetClass(java_lang_String);
848 }
849
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700850 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
851 static_cast<uint32_t>(dex_caches->GetLength()));
852 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700853 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Elliott Hughes95572412011-12-13 18:14:20 -0800854 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Brian Carlstrom89521892011-12-07 22:05:07 -0800855 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
856 const DexFile* dex_file = oat_dex_file->OpenDexFile();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700857 if (dex_file == NULL) {
Brian Carlstrom89521892011-12-07 22:05:07 -0800858 LOG(FATAL) << "Failed to open dex file " << dex_file_location
859 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700860 }
861
Brian Carlstromaded5f72011-10-07 17:15:04 -0700862 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700863
Brian Carlstromdf143242011-10-10 18:05:34 -0700864 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700865 }
866 }
867 }
868
Brian Carlstroma663ea52011-08-19 23:33:41 -0700869 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
870 DCHECK(heap_bitmap != NULL);
871
Brian Carlstroma663ea52011-08-19 23:33:41 -0700872 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700873 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700874
875 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800876 Object* class_roots_object =
877 spaces[0]->AsImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700878 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700879
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800880 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700881 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
882 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800883 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700884 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700885 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700886 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
887 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
888 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
889 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
890 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
891 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
892 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
893 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700894 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700895 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700896
897 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700898
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800899 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700900}
901
Brian Carlstrom78128a62011-09-15 17:21:19 -0700902void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700903 DCHECK(obj != NULL);
904 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700905 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700906
Elliott Hughesdbb40792011-11-18 17:05:22 -0800907 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700908 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700909 return;
910 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700911 if (obj->IsClass()) {
912 // restore class to ClassLinker::classes_ table
913 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800914 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800915 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
916 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700917 return;
918 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700919}
920
921// Keep in sync with InitCallback. Anything we visit, we need to
922// reinit references to when reinitializing a ClassLinker from a
923// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700924void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
925 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700926
927 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700928 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700929 }
930
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700931 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700932 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700933 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700934 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700935 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700936 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700937 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700938 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700939
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700940 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700941}
942
Elliott Hughesa2155262011-11-16 16:26:58 -0800943void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
944 MutexLock mu(classes_lock_);
945 typedef Table::const_iterator It; // TODO: C++0x auto
946 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
947 if (!visitor(it->second, arg)) {
948 return;
949 }
950 }
951 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
952 if (!visitor(it->second, arg)) {
953 return;
954 }
955 }
956}
957
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700958ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700959 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700960 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700961 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700962 BooleanArray::ResetArrayClass();
963 ByteArray::ResetArrayClass();
964 CharArray::ResetArrayClass();
965 DoubleArray::ResetArrayClass();
966 FloatArray::ResetArrayClass();
967 IntArray::ResetArrayClass();
968 LongArray::ResetArrayClass();
969 ShortArray::ResetArrayClass();
970 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700971 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700972 STLDeleteElements(&boot_class_path_);
973 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700974}
975
976DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700977 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
978 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700979 return NULL;
980 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700981 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
982 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700983 return NULL;
984 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700985 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
986 if (strings.get() == NULL) {
987 return NULL;
988 }
989 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
990 if (types.get() == NULL) {
991 return NULL;
992 }
993 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
994 if (methods.get() == NULL) {
995 return NULL;
996 }
997 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
998 if (fields.get() == NULL) {
999 return NULL;
1000 }
1001 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
1002 if (code_and_direct_methods.get() == NULL) {
1003 return NULL;
1004 }
1005 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1006 if (initialized_static_storage.get() == NULL) {
1007 return NULL;
1008 }
1009
1010 dex_cache->Init(location.get(),
1011 strings.get(),
1012 types.get(),
1013 methods.get(),
1014 fields.get(),
1015 code_and_direct_methods.get(),
1016 initialized_static_storage.get());
1017 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001018}
1019
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001020CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
1021 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -07001022}
1023
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001024InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1025 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001026 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1027 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001028 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001029 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001030}
1031
Brian Carlstrom4873d462011-08-21 15:23:39 -07001032Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1033 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001034 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001035 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001036 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001037 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001038}
1039
Brian Carlstrom4873d462011-08-21 15:23:39 -07001040Class* ClassLinker::AllocClass(size_t class_size) {
1041 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001042}
1043
Jesse Wilson35baaab2011-08-10 16:18:03 -04001044Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001045 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001046}
1047
1048Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001049 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001050}
1051
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001052ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1053 return ObjectArray<StackTraceElement>::Alloc(
1054 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1055 length);
1056}
1057
Brian Carlstromaded5f72011-10-07 17:15:04 -07001058Class* EnsureResolved(Class* klass) {
1059 DCHECK(klass != NULL);
1060 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001061 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001062 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001063 ObjectLock lock(klass);
1064 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001065 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001066 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001067 PrettyDescriptor(klass).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001068 return NULL;
1069 }
1070 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001071 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001072 lock.Wait();
1073 }
1074 }
1075 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001076 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001077 return NULL;
1078 }
1079 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001080 CHECK(klass->IsResolved()) << PrettyClass(klass);
1081 CHECK(!self->IsExceptionPending())
1082 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1083 return klass;
1084}
1085
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001086Class* ClassLinker::FindSystemClass(const char* descriptor) {
1087 return FindClass(descriptor, NULL);
1088}
1089
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001090Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001091 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001092 Thread* self = Thread::Current();
1093 DCHECK(self != NULL);
1094 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001095 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001096 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1097 // for primitive classes that aren't backed by dex files.
1098 return FindPrimitiveClass(descriptor[0]);
1099 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001100 // Find the class in the loaded classes table.
1101 Class* klass = LookupClass(descriptor, class_loader);
1102 if (klass != NULL) {
1103 return EnsureResolved(klass);
1104 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001105 // Class is not yet loaded.
1106 if (descriptor[0] == '[') {
1107 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001108
Jesse Wilson47daf872011-11-23 11:42:45 -05001109 } else if (class_loader == NULL) {
1110 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1111 if (pair.second != NULL) {
1112 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1113 }
1114
1115 } else if (ClassLoader::UseCompileTimeClassPath()) {
1116 // first try the boot class path
1117 Class* system_class = FindSystemClass(descriptor);
1118 if (system_class != NULL) {
1119 return system_class;
1120 }
1121 CHECK(self->IsExceptionPending());
1122 self->ClearException();
1123
1124 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001125 const std::vector<const DexFile*>& class_path
1126 = ClassLoader::GetCompileTimeClassPath(class_loader);
1127 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001128 if (pair.second != NULL) {
1129 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001130 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001131
1132 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001133 std::string class_name_string(DescriptorToDot(descriptor));
Jesse Wilson47daf872011-11-23 11:42:45 -05001134 ScopedThreadStateChange(self, Thread::kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001135 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001136 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1137 CHECK(c.get() != NULL);
1138 // TODO: cache method?
1139 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1140 CHECK(mid != NULL);
1141 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1142 if (class_name_object.get() == NULL) {
1143 return NULL;
1144 }
1145 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001146 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1147 class_name_object.get()));
Elliott Hughes748382f2012-01-26 18:07:38 -08001148 if (env->ExceptionOccurred()) {
1149 // If the ClassLoader threw, pass that exception up.
1150 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001151 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001152 // broken loader - throw NPE to be compatible with Dalvik
1153 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1154 class_name_string.c_str());
1155 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001156 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001157 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001158 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001159 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001160 }
1161
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001162 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001163 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001164}
1165
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001166Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001167 const ClassLoader* class_loader,
1168 const DexFile& dex_file,
1169 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001170 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001171 // Load the class from the dex file.
1172 if (!init_done_) {
1173 // finish up init of hand crafted class_roots_
1174 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001175 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001176 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001177 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001178 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001179 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001180 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001181 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001182 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001183 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001184 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001185 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001186 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001187 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001188 }
1189 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001190 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001191 }
1192 klass->SetDexCache(FindDexCache(dex_file));
1193 LoadClass(dex_file, dex_class_def, klass, class_loader);
1194 // Check for a pending exception during load
1195 Thread* self = Thread::Current();
1196 if (self->IsExceptionPending()) {
1197 return NULL;
1198 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001199 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001200 klass->SetClinitThreadId(self->GetTid());
1201 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001202 Class* existing = InsertClass(descriptor, klass.get(), false);
1203 if (existing != NULL) {
1204 // We failed to insert because we raced with another thread.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001205 klass->SetClinitThreadId(0);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001206 klass.reset(existing);
1207 return EnsureResolved(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001208 }
1209 // Finish loading (if necessary) by finding parents
1210 CHECK(!klass->IsLoaded());
1211 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1212 // Loading failed.
1213 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001214 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001215 lock.NotifyAll();
1216 return NULL;
1217 }
1218 CHECK(klass->IsLoaded());
1219 // Link the class (if necessary)
1220 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001221 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001222 // Linking failed.
1223 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001224 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001225 lock.NotifyAll();
1226 return NULL;
1227 }
1228 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001229
1230 /*
1231 * We send CLASS_PREPARE events to the debugger from here. The
1232 * definition of "preparation" is creating the static fields for a
1233 * class and initializing them to the standard default values, but not
1234 * executing any code (that comes later, during "initialization").
1235 *
1236 * We did the static preparation in LinkClass.
1237 *
1238 * The class has been prepared and resolved but possibly not yet verified
1239 * at this point.
1240 */
1241 Dbg::PostClassPrepare(klass.get());
1242
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001243 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001244}
1245
Brian Carlstrom4873d462011-08-21 15:23:39 -07001246// Precomputes size that will be needed for Class, matching LinkStaticFields
1247size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1248 const DexFile::ClassDef& dex_class_def) {
1249 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001250 size_t num_ref = 0;
1251 size_t num_32 = 0;
1252 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001253 if (class_data != NULL) {
1254 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1255 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001256 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001257 char c = descriptor[0];
1258 if (c == 'L' || c == '[') {
1259 num_ref++;
1260 } else if (c == 'J' || c == 'D') {
1261 num_64++;
1262 } else {
1263 num_32++;
1264 }
1265 }
1266 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001267 // start with generic class data
1268 size_t size = sizeof(Class);
1269 // follow with reference fields which must be contiguous at start
1270 size += (num_ref * sizeof(uint32_t));
1271 // if there are 64-bit fields to add, make sure they are aligned
1272 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1273 if (num_32 != 0) {
1274 // use an available 32-bit field for padding
1275 num_32--;
1276 }
1277 size += sizeof(uint32_t); // either way, we are adding a word
1278 DCHECK_EQ(size, RoundUp(size, 8));
1279 }
1280 // tack on any 64-bit fields now that alignment is assured
1281 size += (num_64 * sizeof(uint64_t));
1282 // tack on any remaining 32-bit fields
1283 size += (num_32 * sizeof(uint32_t));
1284 return size;
1285}
1286
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001287void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001288 // Every kind of method should at least get an invoke stub from the oat_method.
1289 // non-abstract methods also get their code pointers.
1290 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001291 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001292
1293 if (method->IsAbstract()) {
1294 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1295 return;
1296 }
1297 if (method->IsNative()) {
1298 // unregistering restores the dlsym lookup stub
1299 method->UnregisterNative();
jeffhao26c0a1a2012-01-17 16:28:33 -08001300 }
1301
1302 if (Runtime::Current()->IsMethodTracingActive()) {
1303#if defined(__arm__)
1304 Trace* tracer = Runtime::Current()->GetTracer();
1305 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
1306 tracer->SaveAndUpdateCode(method.get(), trace_stub);
1307#else
1308 UNIMPLEMENTED(WARNING);
1309#endif
Brian Carlstrom92827a52011-10-10 15:50:01 -07001310 }
1311}
1312
Brian Carlstromf615a612011-07-23 12:50:34 -07001313void ClassLinker::LoadClass(const DexFile& dex_file,
1314 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001315 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001316 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001317 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001318 CHECK(klass->GetDexCache() != NULL);
1319 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001320 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001321 CHECK(descriptor != NULL);
1322
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001323 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001324 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001325 // Make sure that none of our runtime-only flags are set.
1326 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001327 klass->SetAccessFlags(access_flags);
1328 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001329 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001330 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001331
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001332 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001333
Ian Rogers0571d352011-11-03 19:51:38 -07001334 // Load fields fields.
1335 const byte* class_data = dex_file.GetClassData(dex_class_def);
1336 if (class_data == NULL) {
1337 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001338 }
Ian Rogers0571d352011-11-03 19:51:38 -07001339 ClassDataItemIterator it(dex_file, class_data);
1340 if (it.NumStaticFields() != 0) {
1341 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1342 }
1343 if (it.NumInstanceFields() != 0) {
1344 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1345 }
1346 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1347 SirtRef<Field> sfield(AllocField());
1348 klass->SetStaticField(i, sfield.get());
1349 LoadField(dex_file, it, klass, sfield);
1350 }
1351 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1352 SirtRef<Field> ifield(AllocField());
1353 klass->SetInstanceField(i, ifield.get());
1354 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001355 }
1356
Brian Carlstromaded5f72011-10-07 17:15:04 -07001357 UniquePtr<const OatFile::OatClass> oat_class;
1358 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001359 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001360 if (oat_file != NULL) {
1361 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1362 if (oat_dex_file != NULL) {
1363 uint32_t class_def_index;
1364 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1365 CHECK(found) << descriptor;
1366 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001367 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001368 }
1369 }
1370 }
Ian Rogers0571d352011-11-03 19:51:38 -07001371 // Load methods.
1372 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001373 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001374 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001375 }
Ian Rogers0571d352011-11-03 19:51:38 -07001376 if (it.NumVirtualMethods() != 0) {
1377 // TODO: append direct methods to class object
1378 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001379 }
Ian Rogers0571d352011-11-03 19:51:38 -07001380 size_t method_index = 0;
1381 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1382 SirtRef<Method> method(AllocMethod());
1383 klass->SetDirectMethod(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 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1391 SirtRef<Method> method(AllocMethod());
1392 klass->SetVirtualMethod(i, method.get());
1393 LoadMethod(dex_file, it, klass, method);
1394 if (oat_class.get() != NULL) {
1395 LinkCode(method, oat_class.get(), method_index);
1396 }
1397 method_index++;
1398 }
1399 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001400}
1401
Ian Rogers0571d352011-11-03 19:51:38 -07001402void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1403 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001404 uint32_t field_idx = it.GetMemberIndex();
1405 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001406 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001407 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001408}
1409
Ian Rogers0571d352011-11-03 19:51:38 -07001410void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1411 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001412 uint32_t method_idx = it.GetMemberIndex();
1413 dst->SetDexMethodIndex(method_idx);
1414 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001415 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001416
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001417
1418 StringPiece method_name(dex_file.GetMethodName(method_id));
1419 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001420 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1421 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001422
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001423 if (method_name == "finalize") {
1424 // Create the prototype for a signature of "()V"
1425 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1426 if (void_string_id != NULL) {
1427 const DexFile::TypeId* void_type_id =
1428 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1429 if (void_type_id != NULL) {
1430 std::vector<uint16_t> no_args;
1431 const DexFile::ProtoId* finalizer_proto =
1432 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1433 if (finalizer_proto != NULL) {
1434 // We have the prototype in the dex file
1435 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1436 klass->SetFinalizable();
1437 } else {
1438 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1439 // The Enum class declares a "final" finalize() method to prevent subclasses from
1440 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1441 // subclasses, so we exclude it here.
1442 // We also want to avoid setting the flag on Object, where we know that finalize() is
1443 // empty.
1444 if (klass_descriptor != "Ljava/lang/Object;" &&
1445 klass_descriptor != "Ljava/lang/Enum;") {
1446 klass->SetFinalizable();
1447 }
1448 }
1449 }
1450 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001451 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001452 }
Ian Rogers0571d352011-11-03 19:51:38 -07001453 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001454 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001455
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001456 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1457 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1458 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1459 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1460 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1461 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001462}
1463
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001464void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001465 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1466 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001467}
1468
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001469void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1470 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001471 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001472 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001473}
1474
Brian Carlstromaded5f72011-10-07 17:15:04 -07001475bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001476 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001477 for (size_t i = 0; i != dex_files_.size(); ++i) {
1478 if (dex_files_[i] == &dex_file) {
1479 return true;
1480 }
1481 }
1482 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001483}
1484
Brian Carlstromaded5f72011-10-07 17:15:04 -07001485bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001486 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001487 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001488}
1489
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001490void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001491 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001492 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001493 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001494 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001495 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001496}
1497
Brian Carlstromaded5f72011-10-07 17:15:04 -07001498void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001499 {
1500 MutexLock mu(dex_lock_);
1501 if (IsDexFileRegisteredLocked(dex_file)) {
1502 return;
1503 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001504 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001505 // Don't alloc while holding the lock, since allocation may need to
1506 // suspend all threads and another thread may need the dex_lock_ to
1507 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001508 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001509 {
1510 MutexLock mu(dex_lock_);
1511 if (IsDexFileRegisteredLocked(dex_file)) {
1512 return;
1513 }
1514 RegisterDexFileLocked(dex_file, dex_cache);
1515 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001516}
1517
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001518void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001519 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001520 RegisterDexFileLocked(dex_file, dex_cache);
1521}
1522
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001523const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001524 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001525 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001526 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1527 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001528 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001529 }
1530 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001531 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001532 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001533}
1534
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001535DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001536 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001537 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001538 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001539 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001540 }
1541 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001542 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001543 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001544}
1545
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001546Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1547 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001548 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001549 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001550 CHECK(primitive_class != NULL);
1551 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001552 primitive_class->SetPrimitiveType(type);
1553 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001554 Class* existing = InsertClass(descriptor, primitive_class, false);
1555 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001556 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001557}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001558
Brian Carlstrombe977852011-07-19 14:54:54 -07001559// Create an array class (i.e. the class object for the array, not the
1560// array itself). "descriptor" looks like "[C" or "[[[[B" or
1561// "[Ljava/lang/String;".
1562//
1563// If "descriptor" refers to an array of primitives, look up the
1564// primitive type's internally-generated class object.
1565//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001566// "class_loader" is the class loader of the class that's referring to
1567// us. It's used to ensure that we're looking for the element type in
1568// the right context. It does NOT become the class loader for the
1569// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001570//
1571// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001572Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001573 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001574
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001575 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001576 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001577 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001578 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001579 return NULL;
1580 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001581
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001582 // See if the component type is already loaded. Array classes are
1583 // always associated with the class loader of their underlying
1584 // element type -- an array of Strings goes with the loader for
1585 // java/lang/String -- so we need to look for it there. (The
1586 // caller should have checked for the existence of the class
1587 // before calling here, but they did so with *their* class loader,
1588 // not the component type's loader.)
1589 //
1590 // If we find it, the caller adds "loader" to the class' initiating
1591 // loader list, which should prevent us from going through this again.
1592 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001593 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001594 // are the same, because our caller (FindClass) just did the
1595 // lookup. (Even if we get this wrong we still have correct behavior,
1596 // because we effectively do this lookup again when we add the new
1597 // class to the hash table --- necessary because of possible races with
1598 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001599 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001600 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001601 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001602 return new_class;
1603 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001604 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001605
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001606 // Fill out the fields in the Class.
1607 //
1608 // It is possible to execute some methods against arrays, because
1609 // all arrays are subclasses of java_lang_Object_, so we need to set
1610 // up a vtable. We can just point at the one in java_lang_Object_.
1611 //
1612 // Array classes are simple enough that we don't need to do a full
1613 // link step.
1614
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001615 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001616 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001617 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001618 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001619 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001620 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001621 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001622 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001623 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001624 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001625 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001626 }
1627 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001628 if (new_class.get() == NULL) {
1629 new_class.reset(AllocClass(sizeof(Class)));
1630 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001631 return NULL;
1632 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001633 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001634 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001635 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001636 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001637 new_class->SetSuperClass(java_lang_Object);
1638 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001639 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001640 new_class->SetClassLoader(component_type->GetClassLoader());
1641 new_class->SetStatus(Class::kStatusInitialized);
1642 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001643 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001644
1645
1646 // All arrays have java/lang/Cloneable and java/io/Serializable as
1647 // interfaces. We need to set that up here, so that stuff like
1648 // "instanceof" works right.
1649 //
1650 // Note: The GC could run during the call to FindSystemClass,
1651 // so we need to make sure the class object is GC-valid while we're in
1652 // there. Do this by clearing the interface list so the GC will just
1653 // think that the entries are null.
1654
1655
1656 // Use the single, global copies of "interfaces" and "iftable"
1657 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001658 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001659 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001660
1661 // Inherit access flags from the component type. Arrays can't be
1662 // used as a superclass or interface, so we want to add "final"
1663 // and remove "interface".
1664 //
1665 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001666 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001667 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001668 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1669 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001670
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001671 Class* existing = InsertClass(descriptor, new_class.get(), false);
1672 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001673 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001674 }
1675 // Another thread must have loaded the class after we
1676 // started but before we finished. Abandon what we've
1677 // done.
1678 //
1679 // (Yes, this happens.)
1680
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001681 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001682}
1683
1684Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001685 switch (Primitive::GetType(type)) {
1686 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001687 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001688 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001689 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001690 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001691 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001692 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001693 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001694 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001695 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001696 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001697 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001698 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001699 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001700 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001701 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001702 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001703 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001704 case Primitive::kPrimNot:
1705 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001706 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001707 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001708 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001709 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001710}
1711
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001712Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001713 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001714 DexCache* dex_cache = klass->GetDexCache();
1715 std::string source;
1716 if (dex_cache != NULL) {
1717 source += " from ";
1718 source += dex_cache->GetLocation()->ToModifiedUtf8();
1719 }
1720 LOG(INFO) << "Loaded class " << descriptor << source;
1721 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001722 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001723 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001724 Table& classes = image_class ? image_classes_ : classes_;
1725 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1726#ifndef NDEBUG
1727 // Check we don't have the class in the other table in error
1728 Table& other_classes = image_class ? classes_ : image_classes_;
1729 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1730#endif
1731 if (existing != NULL) {
1732 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001733 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001734 classes.insert(std::make_pair(hash, klass));
1735 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001736}
1737
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001738bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1739 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001740 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001741 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001742 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001743 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001744 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001745 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 classes_.erase(it);
1749 return true;
1750 }
1751 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001752 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001753 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001754 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001755 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001756 image_classes_.erase(it);
1757 return true;
1758 }
1759 }
1760 return false;
1761}
1762
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001763Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1764 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001765 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001766 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001767 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1768 if (klass != NULL) {
1769 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001770 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001771 return LookupClass(descriptor, class_loader, hash, image_classes_);
1772}
1773
1774Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1775 size_t hash, const Table& classes) {
1776 ClassHelper kh(NULL, this);
1777 typedef Table::const_iterator It; // TODO: C++0x auto
1778 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001779 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001780 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001781 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001782#ifndef NDEBUG
1783 for (++it; it != end && it->first == hash; ++it) {
1784 kh.ChangeClass(it->second);
1785 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader))
1786 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
1787 << PrettyClass(it->second) << " " << it->second << " " << it->second->GetClassLoader();
1788 }
1789#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001790 return klass;
1791 }
1792 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001793 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001794}
1795
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001796void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001797 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001798 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001799 MutexLock mu(classes_lock_);
1800 typedef Table::const_iterator It; // TODO: C++0x auto
1801 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001802 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001803 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001804 Class* klass = it->second;
1805 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001806 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001807 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001808 }
1809 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001810 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001811 Class* klass = it->second;
1812 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001813 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001814 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001815 }
1816 }
1817}
1818
Ian Rogersc20a83e2012-01-18 18:15:32 -08001819#ifndef NDEBUG
1820static void CheckMethodsHaveGcMaps(Class* klass) {
1821 if (!Runtime::Current()->IsStarted()) {
1822 return;
1823 }
1824 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1825 Method* method = klass->GetDirectMethod(i);
1826 if (!method->IsNative() && !method->IsAbstract()) {
1827 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1828 }
1829 }
1830 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1831 Method* method = klass->GetVirtualMethod(i);
1832 if (!method->IsNative() && !method->IsAbstract()) {
1833 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1834 }
1835 }
1836}
1837#else
1838static void CheckMethodsHaveGcMaps(Class* klass) {
1839}
1840#endif
1841
jeffhao98eacac2011-09-14 16:11:53 -07001842void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001843 // TODO: assert that the monitor on the Class is held
jeffhao98eacac2011-09-14 16:11:53 -07001844 if (klass->IsVerified()) {
1845 return;
1846 }
1847
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001848 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001849 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001850
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001851 // Try to use verification information from oat file, otherwise do runtime verification
1852 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
1853 if (VerifyClassUsingOatFile(dex_file, klass) || verifier::DexVerifier::VerifyClass(klass)) {
1854 // Make sure all classes referenced by catch blocks are resolved
1855 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001856 klass->SetStatus(Class::kStatusVerified);
Ian Rogersc20a83e2012-01-18 18:15:32 -08001857 // Sanity check that a verified class has GC maps on all methods
1858 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001859 } else {
1860 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001861 Thread* self = Thread::Current();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001862 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException()) << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001863 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001864 PrettyDescriptor(klass).c_str());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001865 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001866 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001867 }
jeffhao98eacac2011-09-14 16:11:53 -07001868}
1869
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001870bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass) {
1871 if (!Runtime::Current()->IsStarted()) {
1872 return false;
1873 }
1874 if (ClassLoader::UseCompileTimeClassPath()) {
1875 return false;
1876 }
1877 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
1878 if (oat_file == NULL) {
1879 return false;
1880 }
1881 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1882 CHECK(oat_dex_file != NULL) << PrettyClass(klass);
1883 const char* descriptor = ClassHelper(klass).GetDescriptor();
1884 uint32_t class_def_index;
1885 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1886 CHECK(found) << descriptor;
1887 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
1888 CHECK(oat_class.get() != NULL) << descriptor;
1889 Class::Status status = oat_class->GetStatus();
1890 if (status == Class::kStatusError) {
1891 ThrowEarlierClassFailure(klass);
1892 klass->SetVerifyErrorClass(Thread::Current()->GetException()->GetClass());
1893 klass->SetStatus(Class::kStatusError);
1894 return true;
1895 }
1896 if (status == Class::kStatusVerified || status == Class::kStatusInitialized) {
1897 return true;
1898 }
1899 if (status == Class::kStatusNotReady) {
1900 return false;
1901 }
1902 LOG(FATAL) << "Unexpected class status: " << status;
1903 return false;
1904}
1905
1906void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
1907 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1908 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
1909 }
1910 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1911 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
1912 }
1913}
1914
1915void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
1916 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
1917 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
1918 if (code_item == NULL) {
1919 return; // native or abstract method
1920 }
1921 if (code_item->tries_size_ == 0) {
1922 return; // nothing to process
1923 }
1924 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
1925 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
1926 ClassLinker* linker = Runtime::Current()->GetClassLinker();
1927 for (uint32_t idx = 0; idx < handlers_size; idx++) {
1928 CatchHandlerIterator iterator(handlers_ptr);
1929 for (; iterator.HasNext(); iterator.Next()) {
1930 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1931 // unresolved exception types will be ignored by exception delivery
1932 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
1933 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
1934 if (exception_type == NULL) {
1935 DCHECK(Thread::Current()->IsExceptionPending());
1936 Thread::Current()->ClearException();
1937 }
1938 }
1939 }
1940 handlers_ptr = iterator.EndDataPointer();
1941 }
1942}
1943
Ian Rogersc2b44472011-12-14 21:17:17 -08001944static void CheckProxyConstructor(Method* constructor);
1945static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
1946
Jesse Wilson95caa792011-10-12 18:14:17 -04001947Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001948 ClassLoader* loader, ObjectArray<Method>* methods,
1949 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08001950 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001951 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08001952 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001953 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001954 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001955 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001956 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001957 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07001958 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001959 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08001960
1961 klass->SetStatus(Class::kStatusIdx);
1962
1963 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
1964
1965 // Create static field that holds throws, instance fields are inherited
1966 klass->SetSFields(AllocObjectArray<Field>(1));
1967 SirtRef<Field> sfield(AllocField());
1968 klass->SetStaticField(0, sfield.get());
1969 sfield->SetDexFieldIndex(-1);
1970 sfield->SetDeclaringClass(klass.get());
1971 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001972
Ian Rogers466bb252011-10-14 03:29:56 -07001973 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001974 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001975 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04001976
Ian Rogers466bb252011-10-14 03:29:56 -07001977 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001978 size_t num_virtual_methods = methods->GetLength();
1979 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1980 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001981 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001982 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04001983 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001984
1985 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1986 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
1987 DCHECK(!Thread::Current()->IsExceptionPending());
1988
1989 // Link the fields and virtual methods, creating vtable and iftables
1990 if (!LinkClass(klass, interfaces)) {
Jesse Wilson95caa792011-10-12 18:14:17 -04001991 DCHECK(Thread::Current()->IsExceptionPending());
1992 return NULL;
1993 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001994 sfield->SetObject(NULL, throws); // initialize throws field
1995 klass->SetStatus(Class::kStatusInitialized);
1996
1997 // sanity checks
1998#ifndef NDEBUG
1999 bool debug = true;
2000#else
2001 bool debug = false;
2002#endif
2003 if (debug) {
2004 CHECK(klass->GetIFields() == NULL);
2005 CheckProxyConstructor(klass->GetDirectMethod(0));
2006 for (size_t i = 0; i < num_virtual_methods; ++i) {
2007 SirtRef<Method> prototype(methods->Get(i));
2008 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2009 }
Brian Carlstrom89521892011-12-07 22:05:07 -08002010 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08002011 throws_field_name += name->ToModifiedUtf8();
2012 throws_field_name += ".throws";
2013 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
2014
2015 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
2016 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2017 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002018 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002019}
2020
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002021std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2022 DCHECK(proxy_class->IsProxyClass());
2023 String* name = proxy_class->GetName();
2024 DCHECK(name != NULL);
2025 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2026}
2027
2028
2029Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002030 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002031 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002032 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002033 Method* proxy_constructor = proxy_direct_methods->Get(2);
2034 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2035 // code_ too)
2036 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2037 // Make this constructor public and fix the class to be our Proxy version
2038 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002039 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002040 return constructor;
2041}
2042
2043static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002044 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002045 MethodHelper mh(constructor);
2046 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002047 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002048 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002049}
2050
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002051Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2052 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2053 // prototype method
2054 prototype->GetDexCacheResolvedMethods()->Set(prototype->GetDexMethodIndex(), prototype.get());
2055 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002056 // as necessary
2057 Method* method = down_cast<Method*>(prototype->Clone());
2058
2059 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2060 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002061 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002062 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002063
Ian Rogers466bb252011-10-14 03:29:56 -07002064 // At runtime the method looks like a reference and argument saving method, clone the code
2065 // related parameters from this method.
2066 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2067 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2068 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2069 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
2070 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogersc2b44472011-12-14 21:17:17 -08002071 return method;
2072}
Jesse Wilson95caa792011-10-12 18:14:17 -04002073
Ian Rogersc2b44472011-12-14 21:17:17 -08002074static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002075 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002076 CHECK(!prototype->IsFinal());
2077 CHECK(method->IsFinal());
2078 CHECK(!method->IsAbstract());
2079 MethodHelper mh(method);
2080 const char* method_name = mh.GetName();
2081 const char* method_shorty = mh.GetShorty();
2082 Class* method_return = mh.GetReturnType();
2083
2084 mh.ChangeMethod(prototype.get());
2085
2086 CHECK_STREQ(mh.GetName(), method_name);
2087 CHECK_STREQ(mh.GetShorty(), method_shorty);
Ian Rogers466bb252011-10-14 03:29:56 -07002088
2089 // More complex sanity - via dex cache
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002090 CHECK_EQ(mh.GetReturnType(), method_return);
Jesse Wilson95caa792011-10-12 18:14:17 -04002091}
2092
Brian Carlstrom25c33252011-09-18 15:58:35 -07002093bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002094 CHECK(klass->IsResolved() || klass->IsErroneous())
2095 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002096
Carl Shapirob5573532011-07-12 18:22:59 -07002097 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002098
Brian Carlstrom25c33252011-09-18 15:58:35 -07002099 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002100 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002101 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002102 ObjectLock lock(klass);
2103
Brian Carlstromd1422f82011-09-28 11:37:09 -07002104 if (klass->GetStatus() == Class::kStatusInitialized) {
2105 return true;
2106 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002107
Brian Carlstromd1422f82011-09-28 11:37:09 -07002108 if (klass->IsErroneous()) {
2109 ThrowEarlierClassFailure(klass);
2110 return false;
2111 }
2112
2113 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002114 VerifyClass(klass);
2115 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002116 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002117 return false;
2118 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002119 }
2120
Brian Carlstrom25c33252011-09-18 15:58:35 -07002121 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2122 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002123 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers595799e2012-01-11 17:32:51 -08002124 // don't bother going to kStatusInitializing. We return true to maintain
2125 // the invariant that a false result implies there is a pending exception.
2126 return true;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002127 }
2128
Brian Carlstromd1422f82011-09-28 11:37:09 -07002129 // If the class is kStatusInitializing, either this thread is
2130 // initializing higher up the stack or another thread has beat us
2131 // to initializing and we need to wait. Either way, this
2132 // invocation of InitializeClass will not be responsible for
2133 // running <clinit> and will return.
2134 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002135 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002136 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002137 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002138 return true;
2139 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002140 // No. That's fine. Wait for another thread to finish initializing.
2141 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002142 }
2143
2144 if (!ValidateSuperClassDescriptors(klass)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002145 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002146 klass->SetStatus(Class::kStatusError);
2147 return false;
2148 }
2149
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002150 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002151
Elliott Hughesdcc24742011-09-07 14:02:44 -07002152 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002153 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002154 }
2155
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002156 uint64_t t0 = NanoTime();
2157
Brian Carlstrom25c33252011-09-18 15:58:35 -07002158 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002159 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002160 return false;
2161 }
2162
2163 InitializeStaticFields(klass);
2164
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002165 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002166 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002167 }
2168
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002169 uint64_t t1 = NanoTime();
2170
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002171 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002172 {
2173 ObjectLock lock(klass);
2174
2175 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002176 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002177 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002178 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002179 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002180 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2181 RuntimeStats* thread_stats = self->GetStats();
2182 ++global_stats->class_init_count;
2183 ++thread_stats->class_init_count;
2184 global_stats->class_init_time_ns += (t1 - t0);
2185 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002186 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002187 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002188 ClassHelper kh(klass);
2189 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002190 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002191 }
2192 lock.NotifyAll();
2193 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002194 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002195}
2196
Brian Carlstromd1422f82011-09-28 11:37:09 -07002197bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2198 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002199 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002200 lock.Wait();
2201
2202 // When we wake up, repeat the test for init-in-progress. If
2203 // there's an exception pending (only possible if
2204 // "interruptShouldThrow" was set), bail out.
2205 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002206 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002207 klass->SetStatus(Class::kStatusError);
2208 return false;
2209 }
2210 // Spurious wakeup? Go back to waiting.
2211 if (klass->GetStatus() == Class::kStatusInitializing) {
2212 continue;
2213 }
2214 if (klass->IsErroneous()) {
2215 // The caller wants an exception, but it was thrown in a
2216 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002217 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002218 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002219 return false;
2220 }
2221 if (klass->IsInitialized()) {
2222 return true;
2223 }
2224 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2225 }
2226 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2227}
2228
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002229bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2230 if (klass->IsInterface()) {
2231 return true;
2232 }
2233 // begin with the methods local to the superclass
2234 if (klass->HasSuperClass() &&
2235 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2236 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002237 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2238 const Method* method = klass->GetVTable()->Get(i);
2239 if (method != super->GetVTable()->Get(i) &&
2240 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002241 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2242 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2243 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002244 return false;
2245 }
2246 }
2247 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002248 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2249 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2250 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002251 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2252 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002253 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002254 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2255 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002256 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2257 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2258 PrettyMethod(method).c_str(),
2259 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002260 return false;
2261 }
2262 }
2263 }
2264 }
2265 return true;
2266}
2267
Ian Rogers595799e2012-01-11 17:32:51 -08002268// Returns true if classes referenced by the signature of the method are the
2269// same classes in klass1 as they are in klass2.
2270bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2271 const Class* klass1,
2272 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002273 if (klass1 == klass2) {
2274 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002275 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002276 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002277 const DexFile::ProtoId& proto_id =
2278 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002279 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2280 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002281 if (descriptor == NULL) {
2282 break;
2283 }
2284 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2285 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002286 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002287 return false;
2288 }
2289 }
2290 }
2291 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002292 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002293 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002294 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002295 return false;
2296 }
2297 }
2298 return true;
2299}
2300
Ian Rogers595799e2012-01-11 17:32:51 -08002301// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2302bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2303 const Class* klass1,
2304 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002305 CHECK(descriptor != NULL);
2306 CHECK(klass1 != NULL);
2307 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002308 if (klass1 == klass2) {
2309 return true;
2310 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002311 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002312 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002313 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002314 }
Ian Rogers595799e2012-01-11 17:32:51 -08002315 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2316 if (found2 == NULL) {
2317 Thread::Current()->ClearException();
2318 }
2319 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002320}
2321
Brian Carlstrom25c33252011-09-18 15:58:35 -07002322bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002323 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002324 if (!klass->IsInterface() && klass->HasSuperClass()) {
2325 Class* super_class = klass->GetSuperClass();
2326 if (super_class->GetStatus() != Class::kStatusInitialized) {
2327 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002328 Thread* self = Thread::Current();
2329 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002330 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002331 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002332 // TODO: check for a pending exception
2333 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002334 if (!can_run_clinit) {
2335 // Don't set status to error when we can't run <clinit>.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002336 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002337 klass->SetStatus(Class::kStatusVerified);
2338 return false;
2339 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002340 klass->SetStatus(Class::kStatusError);
2341 klass->NotifyAll();
2342 return false;
2343 }
2344 }
2345 }
2346 return true;
2347}
2348
Brian Carlstrom25c33252011-09-18 15:58:35 -07002349bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002350 CHECK(c != NULL);
2351 if (c->IsInitialized()) {
2352 return true;
2353 }
2354
Elliott Hughes5f791332011-09-15 17:45:30 -07002355 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002356 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002357 bool success = InitializeClass(c, can_run_clinit);
2358 if (!success) {
2359 CHECK(self->IsExceptionPending());
2360 }
2361 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002362}
2363
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002364void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002365 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002366 const ClassLoader* cl = c->GetClassLoader();
2367 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002368 ClassDataItemIterator it(dex_file, class_data);
2369 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2370 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002371 }
2372}
2373
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002374void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002375 size_t num_static_fields = klass->NumStaticFields();
2376 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002377 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002378 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002379 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002380 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002381 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002382 return;
2383 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002384 ClassHelper kh(klass);
2385 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002386 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002387 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002388 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002389
Ian Rogers0571d352011-11-03 19:51:38 -07002390 if (it.HasNext()) {
2391 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2392 std::map<uint32_t, Field*> field_map;
2393 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2394 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2395 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002396 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002397 }
2398}
2399
Ian Rogersc2b44472011-12-14 21:17:17 -08002400bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002401 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002402 if (!LinkSuperClass(klass)) {
2403 return false;
2404 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002405 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002406 return false;
2407 }
2408 if (!LinkInstanceFields(klass)) {
2409 return false;
2410 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002411 if (!LinkStaticFields(klass)) {
2412 return false;
2413 }
2414 CreateReferenceInstanceOffsets(klass);
2415 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002416 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2417 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002418 return true;
2419}
2420
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002421bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002422 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002423 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2424 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002425 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002426 uint16_t super_class_idx = class_def->superclass_idx_;
2427 if (super_class_idx != DexFile::kDexNoIndex16) {
2428 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002429 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002430 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002431 return false;
2432 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002433 // Verify
2434 if (!klass->CanAccess(super_class)) {
2435 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2436 "Class %s extended by class %s is inaccessible",
2437 PrettyDescriptor(super_class).c_str(),
2438 PrettyDescriptor(klass.get()).c_str());
2439 return false;
2440 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002441 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002442 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002443 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2444 if (interfaces != NULL) {
2445 for (size_t i = 0; i < interfaces->Size(); i++) {
2446 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2447 Class* interface = ResolveType(dex_file, idx, klass.get());
2448 if (interface == NULL) {
2449 DCHECK(Thread::Current()->IsExceptionPending());
2450 return false;
2451 }
2452 // Verify
2453 if (!klass->CanAccess(interface)) {
2454 // TODO: the RI seemed to ignore this in my testing.
2455 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2456 "Interface %s implemented by class %s is inaccessible",
2457 PrettyDescriptor(interface).c_str(),
2458 PrettyDescriptor(klass.get()).c_str());
2459 return false;
2460 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002461 }
2462 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002463 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002464 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002465 return true;
2466}
2467
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002468bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002469 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002470 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002471 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002472 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002473 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002474 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002475 return false;
2476 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002477 return true;
2478 }
2479 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002480 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002481 return false;
2482 }
2483 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002484 if (super->IsFinal() || super->IsInterface()) {
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002485 Thread* thread = Thread::Current();
2486 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002487 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002488 PrettyDescriptor(super).c_str(),
2489 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002490 super->IsFinal() ? "declared final" : "an interface");
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002491 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002492 return false;
2493 }
2494 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002495 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002496 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002497 PrettyDescriptor(super).c_str(),
2498 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002499 return false;
2500 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002501
2502 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2503 if (super->IsFinalizable()) {
2504 klass->SetFinalizable();
2505 }
2506
Elliott Hughes2da50362011-10-10 16:57:08 -07002507 // Inherit reference flags (if any) from the superclass.
2508 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2509 if (reference_flags != 0) {
2510 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2511 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002512 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002513 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002514 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002515 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002516 return false;
2517 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002518
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002519#ifndef NDEBUG
2520 // Ensure super classes are fully resolved prior to resolving fields..
2521 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002522 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002523 super = super->GetSuperClass();
2524 }
2525#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002526 return true;
2527}
2528
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002529// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002530bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002531 if (klass->IsInterface()) {
2532 // No vtable.
2533 size_t count = klass->NumVirtualMethods();
2534 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002535 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002536 return false;
2537 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002538 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002539 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002540 }
jeffhaobdb76512011-09-07 11:43:16 -07002541 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002542 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002543 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002544 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002545 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002546 }
2547 return true;
2548}
2549
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002550bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002551 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002552 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2553 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002554 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002555 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002556 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002557 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002558 MethodHelper local_mh(NULL, this);
2559 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002560 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002561 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002562 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002563 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002564 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002565 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002566 super_mh.ChangeMethod(super_method);
2567 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002568 // Verify
2569 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002570 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002571 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002572 PrettyDescriptor(klass.get()).c_str(),
2573 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002574 return false;
2575 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002576 vtable->Set(j, local_method);
2577 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002578 break;
2579 }
2580 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002581 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002582 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002583 vtable->Set(actual_count, local_method);
2584 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002585 actual_count += 1;
2586 }
2587 }
2588 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002589 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002590 return false;
2591 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002592 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002593 CHECK_LE(actual_count, max_count);
2594 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002595 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002596 }
Ian Rogers30fab402012-01-23 15:43:46 -08002597 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002598 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002599 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002600 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002601 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002602 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002603 return false;
2604 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002605 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002606 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002607 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2608 vtable->Set(i, virtual_method);
2609 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002610 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002611 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002612 }
2613 return true;
2614}
2615
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002616bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002617 size_t super_ifcount;
2618 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002619 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002620 } else {
2621 super_ifcount = 0;
2622 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002623 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002624 ClassHelper kh(klass.get(), this);
2625 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2626 ifcount += num_interfaces;
2627 for (size_t i = 0; i < num_interfaces; i++) {
2628 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2629 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002630 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002631 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002632 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002633 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002634 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002635 return true;
2636 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002637 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002638 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002639 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2640 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002641 Class* super_interface = super_iftable->Get(i)->GetInterface();
2642 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002643 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002644 }
2645 // Flatten the interface inheritance hierarchy.
2646 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002647 for (size_t i = 0; i < num_interfaces; i++) {
2648 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002649 DCHECK(interface != NULL);
2650 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002651 ClassHelper ih(interface);
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002652 Thread* thread = Thread::Current();
2653 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002654 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002655 PrettyDescriptor(klass.get()).c_str(),
2656 PrettyDescriptor(ih.GetDescriptor()).c_str());
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002657 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002658 return false;
2659 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002660 // Check if interface is already in iftable
2661 bool duplicate = false;
2662 for (size_t j = 0; j < idx; j++) {
2663 Class* existing_interface = iftable->Get(j)->GetInterface();
2664 if (existing_interface == interface) {
2665 duplicate = true;
2666 break;
2667 }
2668 }
2669 if (!duplicate) {
2670 // Add this non-duplicate interface.
2671 iftable->Set(idx++, AllocInterfaceEntry(interface));
2672 // Add this interface's non-duplicate super-interfaces.
2673 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2674 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2675 bool super_duplicate = false;
2676 for (size_t k = 0; k < idx; k++) {
2677 Class* existing_interface = iftable->Get(k)->GetInterface();
2678 if (existing_interface == super_interface) {
2679 super_duplicate = true;
2680 break;
2681 }
2682 }
2683 if (!super_duplicate) {
2684 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2685 }
2686 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002687 }
2688 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002689 // Shrink iftable in case duplicates were found
2690 if (idx < ifcount) {
2691 iftable.reset(iftable->CopyOf(idx));
2692 ifcount = idx;
2693 } else {
2694 CHECK_EQ(idx, ifcount);
2695 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002696 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002697
2698 // If we're an interface, we don't need the vtable pointers, so we're done.
2699 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002700 return true;
2701 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002702 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002703 MethodHelper vtable_mh(NULL, this);
2704 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002705 for (size_t i = 0; i < ifcount; ++i) {
2706 InterfaceEntry* interface_entry = iftable->Get(i);
2707 Class* interface = interface_entry->GetInterface();
2708 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2709 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002710 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002711 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2712 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002713 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002714 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002715 // For each method listed in the interface's method list, find the
2716 // matching method in our class's method list. We want to favor the
2717 // subclass over the superclass, which just requires walking
2718 // back from the end of the vtable. (This only matters if the
2719 // superclass defines a private method and this class redefines
2720 // it -- otherwise it would use the same vtable slot. In .dex files
2721 // those don't end up in the virtual method table, so it shouldn't
2722 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002723 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2724 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002725 vtable_mh.ChangeMethod(vtable_method);
2726 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002727 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002728 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002729 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002730 return false;
2731 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002732 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002733 break;
2734 }
2735 }
2736 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002737 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002738 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002739 Method* mir_method = miranda_list[mir];
2740 vtable_mh.ChangeMethod(mir_method);
2741 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002742 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002743 break;
2744 }
2745 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002746 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002747 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002748 miranda_method.reset(AllocMethod());
2749 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2750 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002751 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002752 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002753 }
2754 }
2755 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002756 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002757 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002758 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002759 klass->SetVirtualMethods((old_method_count == 0)
2760 ? AllocObjectArray<Method>(new_method_count)
2761 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002762
Ian Rogers30fab402012-01-23 15:43:46 -08002763 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
2764 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002765 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002766 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08002767 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07002768 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002769 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002770 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002771 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2772 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2773 klass->SetVirtualMethod(old_method_count + i, method);
2774 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002775 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002776 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002777 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002778 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002779
2780 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2781 for (int i = 0; i < vtable->GetLength(); ++i) {
2782 CHECK(vtable->Get(i) != NULL);
2783 }
2784
2785// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2786
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002787 return true;
2788}
2789
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002790bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2791 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002792 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002793}
2794
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002795bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2796 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002797 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002798 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002799 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002800 return success;
2801}
2802
Brian Carlstromdbc05252011-09-09 01:59:59 -07002803struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08002804 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002805 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002806 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002807 fh_->ChangeField(field1);
2808 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
2809 fh_->ChangeField(field2);
2810 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002811 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2812 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2813 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2814 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002815 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2816 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2817 if (order1 != order2) {
2818 return order1 < order2;
2819 }
2820
2821 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002822 fh_->ChangeField(field1);
2823 StringPiece name1(fh_->GetName());
2824 fh_->ChangeField(field2);
2825 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07002826 return name1 < name2;
2827 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002828
2829 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002830};
2831
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002832bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002833 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002834 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002835
2836 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002837 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002838
2839 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002840 size_t size;
2841 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002842 if (is_static) {
2843 size = klass->GetClassSize();
2844 field_offset = Class::FieldsOffset();
2845 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002846 Class* super_class = klass->GetSuperClass();
2847 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002848 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002849 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002850 }
2851 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002852 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002853
Brian Carlstromdbc05252011-09-09 01:59:59 -07002854 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002855
Brian Carlstromdbc05252011-09-09 01:59:59 -07002856 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002857 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002858 std::deque<Field*> grouped_and_sorted_fields;
2859 for (size_t i = 0; i < num_fields; i++) {
2860 grouped_and_sorted_fields.push_back(fields->Get(i));
2861 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002862 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002863 std::sort(grouped_and_sorted_fields.begin(),
2864 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002865 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002866
2867 // References should be at the front.
2868 size_t current_field = 0;
2869 size_t num_reference_fields = 0;
2870 for (; current_field < num_fields; current_field++) {
2871 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002872 fh.ChangeField(field);
2873 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002874 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002875 if (isPrimitive) {
2876 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002877 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002878 grouped_and_sorted_fields.pop_front();
2879 num_reference_fields++;
2880 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002881 field->SetOffset(field_offset);
2882 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002883 }
2884
2885 // Now we want to pack all of the double-wide fields together. If
2886 // we're not aligned, though, we want to shuffle one 32-bit field
2887 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002888 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002889 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2890 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002891 fh.ChangeField(field);
2892 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002893 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2894 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002895 continue;
2896 }
2897 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002898 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002899 // drop the consumed field
2900 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2901 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002902 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002903 // whether we found a 32-bit field for padding or not, we advance
2904 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002905 }
2906
2907 // Alignment is good, shuffle any double-wide fields forward, and
2908 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002909 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002910 while (!grouped_and_sorted_fields.empty()) {
2911 Field* field = grouped_and_sorted_fields.front();
2912 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002913 fh.ChangeField(field);
2914 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002915 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002916 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002917 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002918 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002919 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002920 ? sizeof(uint64_t)
2921 : sizeof(uint32_t)));
2922 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002923 }
2924
Elliott Hughesadb460d2011-10-05 17:02:34 -07002925 // 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 -08002926 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
2927 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002928 // We know there are no non-reference fields in the Reference classes, and we know
2929 // that 'referent' is alphabetically last, so this is easy...
2930 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002931 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08002932 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07002933 --num_reference_fields;
2934 }
2935
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002936#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002937 // Make sure that all reference fields appear before
2938 // non-reference fields, and all double-wide fields are aligned.
2939 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002940 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002941 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002942 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002943 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002944 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002945 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002946 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2947 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002948 fh.ChangeField(field);
2949 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002950 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002951 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002952 is_primitive = true; // We lied above, so we have to expect a lie here.
2953 }
2954 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002955 if (!seen_non_ref) {
2956 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002957 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002958 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002959 } else {
2960 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002961 }
2962 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002963 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002964 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002965 }
2966#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002967 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002968 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002969 if (is_static) {
2970 klass->SetNumReferenceStaticFields(num_reference_fields);
2971 klass->SetClassSize(size);
2972 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002973 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002974 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002975 klass->SetObjectSize(size);
2976 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002977 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002978 return true;
2979}
2980
2981// Set the bitmap of reference offsets, refOffsets, from the ifields
2982// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002983void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002984 uint32_t reference_offsets = 0;
2985 Class* super_class = klass->GetSuperClass();
2986 if (super_class != NULL) {
2987 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002988 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002989 if (reference_offsets == CLASS_WALK_SUPER) {
2990 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002991 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002992 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002993 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002994 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002995}
2996
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002997void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002998 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002999}
3000
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003001void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003002 uint32_t reference_offsets) {
3003 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003004 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3005 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003006 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003007 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003008 // All of the fields that contain object references are guaranteed
3009 // to be at the beginning of the fields list.
3010 for (size_t i = 0; i < num_reference_fields; ++i) {
3011 // Note that byte_offset is the offset from the beginning of
3012 // object, not the offset into instance data
3013 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003014 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003015 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3016 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3017 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003018 CHECK_NE(new_bit, 0U);
3019 reference_offsets |= new_bit;
3020 } else {
3021 reference_offsets = CLASS_WALK_SUPER;
3022 break;
3023 }
3024 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003025 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003026 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003027 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003028 } else {
3029 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003030 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003031}
3032
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003033String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003034 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003035 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003036 if (resolved != NULL) {
3037 return resolved;
3038 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003039 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3040 int32_t utf16_length = dex_file.GetStringLength(string_id);
3041 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003042 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003043 dex_cache->SetResolvedString(string_idx, string);
3044 return string;
3045}
3046
3047Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003048 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003049 DexCache* dex_cache,
3050 const ClassLoader* class_loader) {
3051 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003052 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003053 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003054 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003055 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003056 // TODO: we used to throw here if resolved's class loader was not the
3057 // boot class loader. This was to permit different classes with the
3058 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003059 dex_cache->SetResolvedType(type_idx, resolved);
3060 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003061 CHECK(Thread::Current()->IsExceptionPending())
3062 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003063 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003064 }
3065 return resolved;
3066}
3067
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003068Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3069 uint32_t method_idx,
3070 DexCache* dex_cache,
3071 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003072 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003073 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3074 if (resolved != NULL) {
3075 return resolved;
3076 }
3077 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3078 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3079 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003080 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003081 return NULL;
3082 }
3083
Ian Rogers0571d352011-11-03 19:51:38 -07003084 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3085 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003086 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003087 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003088 } else if (klass->IsInterface()) {
3089 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003090 } else {
3091 resolved = klass->FindVirtualMethod(name, signature);
3092 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003093 if (resolved != NULL) {
3094 dex_cache->SetResolvedMethod(method_idx, resolved);
3095 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003096 ThrowNoSuchMethodError(is_direct, klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003097 }
3098 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003099}
3100
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003101Field* ClassLinker::ResolveField(const DexFile& dex_file,
3102 uint32_t field_idx,
3103 DexCache* dex_cache,
3104 const ClassLoader* class_loader,
3105 bool is_static) {
3106 Field* resolved = dex_cache->GetResolvedField(field_idx);
3107 if (resolved != NULL) {
3108 return resolved;
3109 }
3110 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3111 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3112 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003113 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003114 return NULL;
3115 }
3116
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003117 const char* name = dex_file.GetFieldName(field_id);
3118 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003119 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003120 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003121 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003122 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003123 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003124 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003125 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003126 } else {
Ian Rogersb067ac22011-12-13 18:05:09 -08003127 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3128 }
3129 return resolved;
3130}
3131
3132Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3133 uint32_t field_idx,
3134 DexCache* dex_cache,
3135 const ClassLoader* class_loader) {
3136 Field* resolved = dex_cache->GetResolvedField(field_idx);
3137 if (resolved != NULL) {
3138 return resolved;
3139 }
3140 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3141 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3142 if (klass == NULL) {
3143 DCHECK(Thread::Current()->IsExceptionPending());
3144 return NULL;
3145 }
3146
3147 const char* name = dex_file.GetFieldName(field_id);
3148 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3149 resolved = klass->FindField(name, type);
3150 if (resolved != NULL) {
3151 dex_cache->SetResolvedField(field_idx, resolved);
3152 } else {
3153 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003154 }
3155 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003156}
3157
Ian Rogersad25ac52011-10-04 19:13:33 -07003158const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
3159 Class* declaring_class = referrer->GetDeclaringClass();
3160 DexCache* dex_cache = declaring_class->GetDexCache();
3161 const DexFile& dex_file = FindDexFile(dex_cache);
3162 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3163 return dex_file.GetShorty(method_id.proto_idx_);
3164}
3165
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003166void ClassLinker::DumpAllClasses(int flags) const {
3167 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3168 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3169 std::vector<Class*> all_classes;
3170 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003171 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003172 typedef Table::const_iterator It; // TODO: C++0x auto
3173 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3174 all_classes.push_back(it->second);
3175 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003176 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3177 all_classes.push_back(it->second);
3178 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003179 }
3180
3181 for (size_t i = 0; i < all_classes.size(); ++i) {
3182 all_classes[i]->DumpClass(std::cerr, flags);
3183 }
3184}
3185
Elliott Hughescac6cc72011-11-03 20:31:21 -07003186void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3187 MutexLock mu(classes_lock_);
3188 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3189 << classes_.size() << " allocated classes\n";
3190}
3191
Elliott Hughese27955c2011-08-26 15:21:24 -07003192size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003193 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003194 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003195}
3196
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003197pid_t ClassLinker::GetClassesLockOwner() {
3198 return classes_lock_.GetOwner();
3199}
3200
3201pid_t ClassLinker::GetDexLockOwner() {
3202 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003203}
3204
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003205void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3206 DCHECK(!init_done_);
3207
3208 DCHECK(klass != NULL);
3209 DCHECK(klass->GetClassLoader() == NULL);
3210
3211 DCHECK(class_roots_ != NULL);
3212 DCHECK(class_roots_->Get(class_root) == NULL);
3213 class_roots_->Set(class_root, klass);
3214}
3215
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003216} // namespace art