blob: 20e651443ebc1628872bdb93dd5d9745974c5fdb [file] [log] [blame]
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001// Copyright 2011 Google Inc. All Rights Reserved.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004
Brian Carlstromd601af82012-01-06 10:15:19 -08005#include <fcntl.h>
6#include <sys/file.h>
7#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -08008#include <sys/types.h>
9#include <sys/wait.h>
10
Brian Carlstromdbc05252011-09-09 01:59:59 -070011#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070012#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070013#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070014#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070015
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070016#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070017#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080018#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070019#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070020#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070021#include "dex_verifier.h"
22#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070023#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070024#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070025#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070026#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080028#include "object_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070029#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070030#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070031#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070032#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070033#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070034#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070036#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070037#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070038
39namespace art {
40
Elliott Hughes4a2b4172011-09-20 17:08:25 -070041namespace {
42
Elliott Hughes362f9bc2011-10-17 18:56:41 -070043void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070044void ThrowNoClassDefFoundError(const char* fmt, ...) {
45 va_list args;
46 va_start(args, fmt);
47 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
48 va_end(args);
49}
50
Elliott Hughes362f9bc2011-10-17 18:56:41 -070051void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070052void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070053 va_list args;
54 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070055 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070056 va_end(args);
57}
58
Elliott Hughes362f9bc2011-10-17 18:56:41 -070059void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070060void ThrowLinkageError(const char* fmt, ...) {
61 va_list args;
62 va_start(args, fmt);
63 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
64 va_end(args);
65}
66
Ian Rogers9f1ab122011-12-12 08:52:43 -080067void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
68 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080069 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070070 std::ostringstream msg;
Ian Rogers9f1ab122011-12-12 08:52:43 -080071 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << "." << signature
72 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080073 std::string location(kh.GetLocation());
74 if (!location.empty()) {
75 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070076 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070077 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070078}
79
Ian Rogersb067ac22011-12-13 18:05:09 -080080void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers9f1ab122011-12-12 08:52:43 -080081 const StringPiece& name) {
82 ClassHelper kh(c);
83 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -080084 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080085 << " in class " << kh.GetDescriptor() << " or its superclasses";
86 std::string location(kh.GetLocation());
87 if (!location.empty()) {
88 msg << " (defined in " << location << ")";
89 }
90 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
91}
92
Ian Rogerscab01012012-01-10 17:35:46 -080093void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
94void ThrowNullPointerException(const char* fmt, ...) {
95 va_list args;
96 va_start(args, fmt);
97 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
98 va_end(args);
99}
100
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700101void ThrowEarlierClassFailure(Class* c) {
102 /*
103 * The class failed to initialize on a previous attempt, so we want to throw
104 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
105 * failed in verification, in which case v2 5.4.1 says we need to re-throw
106 * the previous error.
107 */
108 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
109
110 if (c->GetVerifyErrorClass() != NULL) {
111 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800112 ClassHelper ve_ch(c->GetVerifyErrorClass());
113 std::string error_descriptor(ve_ch.GetDescriptor());
114 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700115 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800116 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700117 }
118}
119
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700120void WrapExceptionInInitializer() {
121 JNIEnv* env = Thread::Current()->GetJniEnv();
122
123 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
124 CHECK(cause.get() != NULL);
125
126 env->ExceptionClear();
127
128 // TODO: add java.lang.Error to JniConstants?
129 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
130 CHECK(error_class.get() != NULL);
131 if (env->IsInstanceOf(cause.get(), error_class.get())) {
132 // We only wrap non-Error exceptions; an Error can just be used as-is.
133 env->Throw(cause.get());
134 return;
135 }
136
137 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
138 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
139 CHECK(eiie_class.get() != NULL);
140
141 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
142 CHECK(mid != NULL);
143
144 ScopedLocalRef<jthrowable> eiie(env,
145 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
146 env->Throw(eiie.get());
147}
148
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800149static size_t Hash(const char* s) {
150 // This is the java.lang.String hashcode for convenience, not interoperability.
151 size_t hash = 0;
152 for (; *s != '\0'; ++s) {
153 hash = hash * 31 + *s;
154 }
155 return hash;
156}
157
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700158} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700159
Elliott Hughes418d20f2011-09-22 14:00:39 -0700160const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700161 "Ljava/lang/Class;",
162 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700163 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700164 "[Ljava/lang/Object;",
165 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700166 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700167 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700168 "Ljava/lang/reflect/Field;",
169 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700170 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700171 "Ljava/lang/ClassLoader;",
172 "Ldalvik/system/BaseDexClassLoader;",
173 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700174 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700175 "Z",
176 "B",
177 "C",
178 "D",
179 "F",
180 "I",
181 "J",
182 "S",
183 "V",
184 "[Z",
185 "[B",
186 "[C",
187 "[D",
188 "[F",
189 "[I",
190 "[J",
191 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700192 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700193};
194
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800195ClassLinker* ClassLinker::Create(const std::string& boot_class_path, InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700196 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800197 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700198 class_linker->Init(boot_class_path);
199 return class_linker.release();
200}
201
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800202ClassLinker* ClassLinker::Create(InternTable* intern_table) {
203 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700204 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700205 return class_linker.release();
206}
207
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800208ClassLinker::ClassLinker(InternTable* intern_table)
209 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700210 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700211 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700212 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700213 init_done_(false),
214 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700215 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700216}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700217
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700218void CreateClassPath(const std::string& class_path,
219 std::vector<const DexFile*>& class_path_vector) {
220 std::vector<std::string> parsed;
221 Split(class_path, ':', parsed);
222 for (size_t i = 0; i < parsed.size(); ++i) {
223 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700224 if (dex_file == NULL) {
225 LOG(WARNING) << "Failed to open dex file " << parsed[i];
226 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700227 class_path_vector.push_back(dex_file);
228 }
229 }
230}
231
232void ClassLinker::Init(const std::string& boot_class_path) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800233 VLOG(startup) << "ClassLinker::InitFrom entering boot_class_path=" << boot_class_path;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700234
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700235 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700236
Elliott Hughes30646832011-10-13 16:59:46 -0700237 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700238 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
239 CHECK(java_lang_Class.get() != NULL);
240 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700241 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700242 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700243
Elliott Hughes418d20f2011-09-22 14:00:39 -0700244 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700245 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
246 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700247
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700248 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700249 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
250 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700251 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700253 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700254
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700255 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700256 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
257 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700258
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700259 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700260 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700261
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700262 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700263 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
264 char_array_class->SetComponentType(char_class.get());
265 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700266
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700267 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700268 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
269 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700270 java_lang_String->SetObjectSize(sizeof(String));
271 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400272
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 // Create storage for root classes, save away our work so far (requires
274 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700275 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700276 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700277 SetClassRoot(kJavaLangClass, java_lang_Class.get());
278 SetClassRoot(kJavaLangObject, java_lang_Object.get());
279 SetClassRoot(kClassArrayClass, class_array_class.get());
280 SetClassRoot(kObjectArrayClass, object_array_class.get());
281 SetClassRoot(kCharArrayClass, char_array_class.get());
282 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700283
284 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700285 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
286 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
287 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
288 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
289 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
290 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
291 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
292 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700293
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700295 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296
297 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700298 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700300 IntArray::SetArrayClass(int_array_class.get());
301 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700303 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700304
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700305 // setup boot_class_path_ and register class_path now that we can
306 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700307 std::vector<const DexFile*> boot_class_path_vector;
308 CreateClassPath(boot_class_path, boot_class_path_vector);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700309 CHECK_NE(0U, boot_class_path_vector.size());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700310 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
311 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700312 CHECK(dex_file != NULL);
313 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700314 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700315
Elliott Hughes80609252011-09-23 17:24:51 -0700316 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700317 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700319 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700321 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
322
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700323 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
324 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700325 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700326 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700327 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700328 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700329
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336
337 // now we can use FindSystemClass
338
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700339 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700340 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700341 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700342
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700343 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344 java_lang_Object->SetStatus(Class::kStatusNotReady);
345 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700346 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700347 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
348 java_lang_String->SetStatus(Class::kStatusNotReady);
349 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700350 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
352
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700353 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700354 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
355 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
356
357 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
358 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
359
360 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700361 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700362
363 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
364 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
365
366 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700367 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700368
369 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
370 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
371
372 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
373 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
374
375 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
376 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
377
Elliott Hughes418d20f2011-09-22 14:00:39 -0700378 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700379 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700380
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700381 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700382 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700383
384 // Setup the single, global copies of "interfaces" and "iftable"
385 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
386 CHECK(java_lang_Cloneable != NULL);
387 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
388 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700389 // We assume that Cloneable/Serializable don't have superinterfaces --
390 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700391 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800392 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
393 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700394
Elliott Hughes418d20f2011-09-22 14:00:39 -0700395 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800396 ClassHelper kh(class_array_class.get(), this);
397 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
398 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
399 kh.ChangeClass(object_array_class.get());
400 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
401 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700402 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700403 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700404 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700405 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700406
Elliott Hughes80609252011-09-23 17:24:51 -0700407 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
408 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700409 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700410
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700411 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700412 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700413 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700414
415 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700416 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700417 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700418
Ian Rogers466bb252011-10-14 03:29:56 -0700419 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
420
421 // Create java.lang.reflect.Proxy root
422 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
423 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
424
Brian Carlstrom1f870082011-08-23 16:02:11 -0700425 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700426 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
427 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700428 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700429 java_lang_ref_FinalizerReference->SetAccessFlags(
430 java_lang_ref_FinalizerReference->GetAccessFlags() |
431 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700432 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700433 java_lang_ref_PhantomReference->SetAccessFlags(
434 java_lang_ref_PhantomReference->GetAccessFlags() |
435 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700436 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 java_lang_ref_SoftReference->SetAccessFlags(
438 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700439 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700440 java_lang_ref_WeakReference->SetAccessFlags(
441 java_lang_ref_WeakReference->GetAccessFlags() |
442 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700443
Brian Carlstromaded5f72011-10-07 17:15:04 -0700444 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700445 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700446 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700447 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
448
449 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
450 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
451 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
452
453 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
454 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
455 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
456 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
457
458 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700459 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
460 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700461 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700462
Brian Carlstroma663ea52011-08-19 23:33:41 -0700463 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700464
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800465 VLOG(startup) << "ClassLinker::InitFrom exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700466}
467
468void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800469 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700470
471 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700472 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700473 // as the types of the field can't be resolved prior to the runtime being
474 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700475 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700476 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700477 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
478
Elliott Hughesadb460d2011-10-05 17:02:34 -0700479 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
480
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800481 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
482
Brian Carlstrom16192862011-09-12 17:50:06 -0700483 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800484 FieldHelper fh(pendingNext, this);
485 CHECK_STREQ(fh.GetName(), "pendingNext");
486 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
487 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700488
489 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800490 fh.ChangeField(queue);
491 CHECK_STREQ(fh.GetName(), "queue");
492 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
493 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700494
495 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 fh.ChangeField(queueNext);
497 CHECK_STREQ(fh.GetName(), "queueNext");
498 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
499 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700500
501 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800502 fh.ChangeField(referent);
503 CHECK_STREQ(fh.GetName(), "referent");
504 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
505 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700506
507 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800508 fh.ChangeField(zombie);
509 CHECK_STREQ(fh.GetName(), "zombie");
510 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
511 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700512
513 Heap::SetReferenceOffsets(referent->GetOffset(),
514 queue->GetOffset(),
515 queueNext->GetOffset(),
516 pendingNext->GetOffset(),
517 zombie->GetOffset());
518
Brian Carlstroma663ea52011-08-19 23:33:41 -0700519 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700520 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700521 ClassRoot class_root = static_cast<ClassRoot>(i);
522 Class* klass = GetClassRoot(class_root);
523 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700524 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700525 // note SetClassRoot does additional validation.
526 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700527 }
528
Elliott Hughes92f14b22011-10-06 12:29:54 -0700529 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700530
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700531 // disable the slow paths in FindClass and CreatePrimitiveClass now
532 // that Object, Class, and Object[] are setup
533 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700534
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800535 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700536}
537
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700538void ClassLinker::RunRootClinits() {
539 Thread* self = Thread::Current();
540 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
541 Class* c = GetClassRoot(ClassRoot(i));
542 if (!c->IsArrayClass() && !c->IsPrimitive()) {
543 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700544 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700545 }
546 }
547}
548
Brian Carlstromd601af82012-01-06 10:15:19 -0800549bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
550 int oat_fd,
551 const std::string& oat_cache_filename) {
jeffhao262bf462011-10-20 18:36:32 -0700552
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800553 std::string dex2oat_string("/system/bin/dex2oat");
554#ifndef NDEBUG
555 dex2oat_string += 'd';
556#endif
557 const char* dex2oat = dex2oat_string.c_str();
558
559 const char* class_path = Runtime::Current()->GetClassPath().c_str();
560
561 std::string boot_image_option_string("--boot-image=");
562 boot_image_option_string += Heap::GetSpaces()[0]->GetImageFilename();
563 const char* boot_image_option = boot_image_option_string.c_str();
564
565 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800566 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800567 const char* dex_file_option = dex_file_option_string.c_str();
568
Brian Carlstromd601af82012-01-06 10:15:19 -0800569 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800570 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800571 const char* oat_fd_option = oat_fd_option_string.c_str();
572
573 std::string oat_name_option_string("--oat-name=");
574 oat_name_option_string += oat_cache_filename;
575 const char* oat_name_option = oat_name_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800576
jeffhao262bf462011-10-20 18:36:32 -0700577 // fork and exec dex2oat
578 pid_t pid = fork();
579 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800580 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800581
582 // change process groups, so we don't get reaped by ProcessManager
583 setpgid(0, 0);
584
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800585 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700586 "--runtime-arg", "-Xms64m",
587 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500588 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800589 "--runtime-arg", class_path,
590 boot_image_option,
591 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800592 oat_fd_option,
593 oat_name_option,
jeffhao262bf462011-10-20 18:36:32 -0700594 NULL);
595
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800596 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800597 return false;
jeffhao262bf462011-10-20 18:36:32 -0700598 } else {
599 // wait for dex2oat to finish
600 int status;
601 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
602 if (got_pid != pid) {
603 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800604 return false;
jeffhao262bf462011-10-20 18:36:32 -0700605 }
606 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800607 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
608 return false;
jeffhao262bf462011-10-20 18:36:32 -0700609 }
610 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800611 return true;
jeffhao262bf462011-10-20 18:36:32 -0700612}
613
Brian Carlstrom866c8622012-01-06 16:35:13 -0800614void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
615 MutexLock mu(dex_lock_);
616 RegisterOatFileLocked(oat_file);
617}
618
619void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
620 dex_lock_.AssertHeld();
621 oat_files_.push_back(&oat_file);
622}
623
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700624OatFile* ClassLinker::OpenOat(const Space* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700625 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700626 const Runtime* runtime = Runtime::Current();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800627 VLOG(startup) << "ClassLinker::OpenOat entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700628 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800629 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
630 // check the down cast
631 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700632 std::string oat_filename;
633 oat_filename += runtime->GetHostPrefix();
634 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma9f19782011-10-13 00:14:47 -0700635 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBaseAddr());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700636 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700637 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700638 return NULL;
639 }
640 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
641 uint32_t image_oat_checksum = image_header.GetOatChecksum();
642 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800643 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700644 << " to expected oat checksum " << std::hex << oat_checksum
645 << " in image";
646 return NULL;
647 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800648 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800649 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700650 return oat_file;
651}
652
Brian Carlstromae826982011-11-09 01:33:42 -0800653const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
654 for (size_t i = 0; i < oat_files_.size(); i++) {
655 const OatFile* oat_file = oat_files_[i];
656 DCHECK(oat_file != NULL);
Ian Rogers7fe2c692011-12-06 16:35:59 -0800657 if (oat_file->GetOatDexFile(dex_file.GetLocation(), false)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800658 return oat_file;
659 }
660 }
661 return NULL;
662}
663
Brian Carlstromd601af82012-01-06 10:15:19 -0800664class LockedFd {
665 public:
666 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
667 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
668 if (fd == -1) {
669 PLOG(ERROR) << "Failed to open file '" << name << "'";
670 return NULL;
671 }
672 fchmod(fd, mode);
673
674 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
675 // try to lock non-blocking so we can log if we need may need to block
676 int result = flock(fd, LOCK_EX | LOCK_NB);
677 if (result == -1) {
678 LOG(WARNING) << "sleeping while locking file " << name;
679 // retry blocking
680 result = flock(fd, LOCK_EX);
681 }
682 if (result == -1) {
683 PLOG(ERROR) << "Failed to lock file '" << name << "'";
684 close(fd);
685 return NULL;
686 }
687 return new LockedFd(fd);
688 }
689
690 int GetFd() const {
691 return fd_;
692 }
693
694 ~LockedFd() {
695 if (fd_ != -1) {
696 int result = flock(fd_, LOCK_UN);
697 if (result == -1) {
698 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
699 }
700 close(fd_);
701 }
702 }
703
704 private:
705 explicit LockedFd(int fd) : fd_(fd) {}
706
707 int fd_;
708};
709
Brian Carlstromae826982011-11-09 01:33:42 -0800710const OatFile* ClassLinker::FindOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700711 MutexLock mu(dex_lock_);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800712 const OatFile* open_oat_file = FindOpenedOatFileForDexFile(dex_file);
713 if (open_oat_file != NULL) {
714 return open_oat_file;
Brian Carlstromae826982011-11-09 01:33:42 -0800715 }
716
Brian Carlstromd601af82012-01-06 10:15:19 -0800717 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_file.GetLocation()));
Brian Carlstrom866c8622012-01-06 16:35:13 -0800718 open_oat_file = FindOpenedOatFileFromOatLocation(oat_filename);
719 if (open_oat_file != NULL) {
720 return open_oat_file;
721 }
722
Brian Carlstromd601af82012-01-06 10:15:19 -0800723 while (true) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800724 UniquePtr<const OatFile> oat_file(FindOatFileFromOatLocation(oat_filename));
725 if (oat_file.get() != NULL) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800726 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
727 if (dex_file.GetHeader().checksum_ == oat_dex_file->GetDexFileChecksum()) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800728 RegisterOatFileLocked(*oat_file.get());
729 return oat_file.release();
Brian Carlstromd601af82012-01-06 10:15:19 -0800730 }
731 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
732 << " checksum mismatch with " << dex_file.GetLocation() << " --- regenerating";
733 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
734 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
735 }
736 // Fall through...
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700737 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800738 // Try to generate oat file if it wasn't found or was obsolete.
739 // Note we can be racing with another runtime to do this.
740 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
741 UniquePtr<LockedFd> locked_fd(LockedFd::CreateAndLock(oat_cache_filename, 0644));
742 if (locked_fd.get() == NULL) {
743 LOG(ERROR) << "Failed to create and lock oat file " << oat_cache_filename;
744 return NULL;
Elliott Hughes234da572011-11-03 22:13:06 -0700745 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800746 // Check to see if the fd we opened and locked matches the file in
747 // the filesystem. If they don't, then somebody else unlinked ours
748 // and created a new file, and we need to use that one instead. (If
749 // we caught them between the unlink and the create, we'll get an
750 // ENOENT from the file stat.)
751 struct stat fd_stat;
752 int fd_stat_result = fstat(locked_fd->GetFd(), &fd_stat);
753 if (fd_stat_result != 0) {
754 PLOG(ERROR) << "Failed to fstat file descriptor of oat file " << oat_cache_filename;
755 return NULL;
756 }
757 struct stat file_stat;
758 int file_stat_result = stat(oat_cache_filename.c_str(), &file_stat);
759 if (file_stat_result != 0
760 || fd_stat.st_dev != file_stat.st_dev
761 || fd_stat.st_ino != file_stat.st_ino) {
762 LOG(INFO) << "Opened oat file " << oat_cache_filename << " is stale; sleeping and retrying";
763 usleep(250 * 1000); // if something is hosed, don't peg machine
764 continue;
765 }
766
767 // We have the correct file open and locked. If the file size is
768 // zero, then it was just created by us and we can generate its
769 // contents. If not, someone else created it. Either way, we'll
770 // loop to retry opening the file.
771 if (fd_stat.st_size == 0) {
772 bool success = GenerateOatFile(dex_file.GetLocation(),
773 locked_fd->GetFd(),
774 oat_cache_filename);
775 if (!success) {
776 LOG(ERROR) << "Failed to generate oat file " << oat_cache_filename;
777 return NULL;
778 }
779 }
jeffhao262bf462011-10-20 18:36:32 -0700780 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800781 // Not reached
Brian Carlstromaded5f72011-10-07 17:15:04 -0700782}
783
Brian Carlstromae826982011-11-09 01:33:42 -0800784const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700785 for (size_t i = 0; i < oat_files_.size(); i++) {
786 const OatFile* oat_file = oat_files_[i];
787 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800788 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700789 return oat_file;
790 }
791 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700792 return NULL;
793}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700794
Brian Carlstromae826982011-11-09 01:33:42 -0800795const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800796 const OatFile* oat_file = OatFile::Open(oat_location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700797 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800798 if (oat_location.empty() || oat_location[0] != '/') {
799 LOG(ERROR) << "Failed to open oat file from " << oat_location;
Brian Carlstroma9f19782011-10-13 00:14:47 -0700800 return NULL;
801 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700802
Brian Carlstroma9f19782011-10-13 00:14:47 -0700803 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Elliott Hughes95572412011-12-13 18:14:20 -0800804 std::string cache_location(GetArtCacheFilenameOrDie(oat_location));
Brian Carlstromae826982011-11-09 01:33:42 -0800805 oat_file = FindOpenedOatFileFromOatLocation(cache_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700806 if (oat_file != NULL) {
807 return oat_file;
808 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700809 oat_file = OatFile::Open(cache_location, "", NULL);
810 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800811 LOG(INFO) << "Failed to open oat file from " << oat_location << " or " << cache_location << ".";
Brian Carlstroma9f19782011-10-13 00:14:47 -0700812 return NULL;
813 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700814 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700815
Brian Carlstromae826982011-11-09 01:33:42 -0800816 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700817 return oat_file;
818}
819
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700820void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800821 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700822 CHECK(!init_done_);
823
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700824 const std::vector<Space*>& spaces = Heap::GetSpaces();
825 for (size_t i = 0; i < spaces.size(); i++) {
826 Space* space = spaces[i] ;
827 if (space->IsImageSpace()) {
828 OatFile* oat_file = OpenOat(space);
829 CHECK(oat_file != NULL) << "Failed to open oat file for image";
830 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
831 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
832
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800833 if (i == 0) {
834 // Special case of setting up the String class early so that we can test arbitrary objects
835 // as being Strings or not
836 Class* java_lang_String = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
837 ->AsObjectArray<Class>()->Get(kJavaLangString);
838 String::SetClass(java_lang_String);
839 }
840
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700841 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
842 static_cast<uint32_t>(dex_caches->GetLength()));
843 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700844 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Elliott Hughes95572412011-12-13 18:14:20 -0800845 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Brian Carlstrom89521892011-12-07 22:05:07 -0800846 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
847 const DexFile* dex_file = oat_dex_file->OpenDexFile();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700848 if (dex_file == NULL) {
Brian Carlstrom89521892011-12-07 22:05:07 -0800849 LOG(FATAL) << "Failed to open dex file " << dex_file_location
850 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700851 }
852
Brian Carlstromaded5f72011-10-07 17:15:04 -0700853 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700854
Brian Carlstromdf143242011-10-10 18:05:34 -0700855 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700856 }
857 }
858 }
859
Brian Carlstroma663ea52011-08-19 23:33:41 -0700860 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
861 DCHECK(heap_bitmap != NULL);
862
Brian Carlstroma663ea52011-08-19 23:33:41 -0700863 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700864 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700865
866 // reinit class_roots_
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700867 Object* class_roots_object = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
868 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700869
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800870 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700871 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
872 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800873 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700874 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700875 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700876 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
877 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
878 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
879 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
880 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
881 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
882 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
883 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700884 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700885 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700886
887 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700888
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800889 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700890}
891
Brian Carlstrom78128a62011-09-15 17:21:19 -0700892void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700893 DCHECK(obj != NULL);
894 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700895 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700896
Elliott Hughesdbb40792011-11-18 17:05:22 -0800897 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700898 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700899 return;
900 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700901 if (obj->IsClass()) {
902 // restore class to ClassLinker::classes_ table
903 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800904 ClassHelper kh(klass, class_linker);
905 bool success = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
Ian Rogers5d76c432011-10-31 21:42:49 -0700906 DCHECK(success);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700907 return;
908 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700909}
910
911// Keep in sync with InitCallback. Anything we visit, we need to
912// reinit references to when reinitializing a ClassLinker from a
913// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700914void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
915 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700916
917 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700918 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700919 }
920
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700921 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700922 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700923 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700924 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700925 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700926 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700927 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700928 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700929
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700930 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700931}
932
Elliott Hughesa2155262011-11-16 16:26:58 -0800933void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
934 MutexLock mu(classes_lock_);
935 typedef Table::const_iterator It; // TODO: C++0x auto
936 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
937 if (!visitor(it->second, arg)) {
938 return;
939 }
940 }
941 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
942 if (!visitor(it->second, arg)) {
943 return;
944 }
945 }
946}
947
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700948ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700949 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700950 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700951 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700952 BooleanArray::ResetArrayClass();
953 ByteArray::ResetArrayClass();
954 CharArray::ResetArrayClass();
955 DoubleArray::ResetArrayClass();
956 FloatArray::ResetArrayClass();
957 IntArray::ResetArrayClass();
958 LongArray::ResetArrayClass();
959 ShortArray::ResetArrayClass();
960 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700961 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700962 STLDeleteElements(&boot_class_path_);
963 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700964}
965
966DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700967 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
968 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700969 return NULL;
970 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700971 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
972 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700973 return NULL;
974 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700975 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
976 if (strings.get() == NULL) {
977 return NULL;
978 }
979 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
980 if (types.get() == NULL) {
981 return NULL;
982 }
983 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
984 if (methods.get() == NULL) {
985 return NULL;
986 }
987 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
988 if (fields.get() == NULL) {
989 return NULL;
990 }
991 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
992 if (code_and_direct_methods.get() == NULL) {
993 return NULL;
994 }
995 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
996 if (initialized_static_storage.get() == NULL) {
997 return NULL;
998 }
999
1000 dex_cache->Init(location.get(),
1001 strings.get(),
1002 types.get(),
1003 methods.get(),
1004 fields.get(),
1005 code_and_direct_methods.get(),
1006 initialized_static_storage.get());
1007 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001008}
1009
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001010CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
1011 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -07001012}
1013
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001014InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1015 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001016 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1017 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001018 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001019 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001020}
1021
Brian Carlstrom4873d462011-08-21 15:23:39 -07001022Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1023 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001024 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001025 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001026 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001027 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001028}
1029
Brian Carlstrom4873d462011-08-21 15:23:39 -07001030Class* ClassLinker::AllocClass(size_t class_size) {
1031 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001032}
1033
Jesse Wilson35baaab2011-08-10 16:18:03 -04001034Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001035 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001036}
1037
1038Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001039 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001040}
1041
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001042ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1043 return ObjectArray<StackTraceElement>::Alloc(
1044 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1045 length);
1046}
1047
Brian Carlstromaded5f72011-10-07 17:15:04 -07001048Class* EnsureResolved(Class* klass) {
1049 DCHECK(klass != NULL);
1050 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001051 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001052 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001053 ObjectLock lock(klass);
1054 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001055 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001056 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001057 PrettyDescriptor(klass).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001058 return NULL;
1059 }
1060 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001061 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001062 lock.Wait();
1063 }
1064 }
1065 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001066 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001067 return NULL;
1068 }
1069 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001070 CHECK(klass->IsResolved()) << PrettyClass(klass);
1071 CHECK(!self->IsExceptionPending())
1072 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1073 return klass;
1074}
1075
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001076Class* ClassLinker::FindSystemClass(const char* descriptor) {
1077 return FindClass(descriptor, NULL);
1078}
1079
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001080Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
1081 DCHECK(*descriptor != '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001082 Thread* self = Thread::Current();
1083 DCHECK(self != NULL);
1084 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001085 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001086 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1087 // for primitive classes that aren't backed by dex files.
1088 return FindPrimitiveClass(descriptor[0]);
1089 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001090 // Find the class in the loaded classes table.
1091 Class* klass = LookupClass(descriptor, class_loader);
1092 if (klass != NULL) {
1093 return EnsureResolved(klass);
1094 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001095 // Class is not yet loaded.
1096 if (descriptor[0] == '[') {
1097 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001098
Jesse Wilson47daf872011-11-23 11:42:45 -05001099 } else if (class_loader == NULL) {
1100 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1101 if (pair.second != NULL) {
1102 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1103 }
1104
1105 } else if (ClassLoader::UseCompileTimeClassPath()) {
1106 // first try the boot class path
1107 Class* system_class = FindSystemClass(descriptor);
1108 if (system_class != NULL) {
1109 return system_class;
1110 }
1111 CHECK(self->IsExceptionPending());
1112 self->ClearException();
1113
1114 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001115 const std::vector<const DexFile*>& class_path
1116 = ClassLoader::GetCompileTimeClassPath(class_loader);
1117 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001118 if (pair.second != NULL) {
1119 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001120 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001121
1122 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001123 std::string class_name_string(DescriptorToDot(descriptor));
Jesse Wilson47daf872011-11-23 11:42:45 -05001124 ScopedThreadStateChange(self, Thread::kNative);
1125 JNIEnv* env = self->GetJniEnv();
1126 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1127 CHECK(c.get() != NULL);
1128 // TODO: cache method?
1129 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1130 CHECK(mid != NULL);
1131 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1132 if (class_name_object.get() == NULL) {
1133 return NULL;
1134 }
1135 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001136 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1137 class_name_object.get()));
1138 if (env->ExceptionOccurred()) {
1139 env->ExceptionClear(); // Failed to find class fall-through to NCDFE
1140 // TODO: initialize the cause of the NCDFE to this exception
1141 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001142 // broken loader - throw NPE to be compatible with Dalvik
1143 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1144 class_name_string.c_str());
1145 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001146 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001147 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001148 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001149 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001150 }
1151
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001152 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001153 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001154}
1155
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001156Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001157 const ClassLoader* class_loader,
1158 const DexFile& dex_file,
1159 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001160 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001161 // Load the class from the dex file.
1162 if (!init_done_) {
1163 // finish up init of hand crafted class_roots_
1164 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001165 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001166 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001167 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001168 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001169 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001170 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001171 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001172 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001173 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001174 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001175 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001176 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001177 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001178 }
1179 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001180 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001181 }
1182 klass->SetDexCache(FindDexCache(dex_file));
1183 LoadClass(dex_file, dex_class_def, klass, class_loader);
1184 // Check for a pending exception during load
1185 Thread* self = Thread::Current();
1186 if (self->IsExceptionPending()) {
1187 return NULL;
1188 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001189 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001190 klass->SetClinitThreadId(self->GetTid());
1191 // Add the newly loaded class to the loaded classes table.
Ian Rogers5d76c432011-10-31 21:42:49 -07001192 bool success = InsertClass(descriptor, klass.get(), false); // TODO: just return collision
Brian Carlstromaded5f72011-10-07 17:15:04 -07001193 if (!success) {
1194 // We may fail to insert if we raced with another thread.
1195 klass->SetClinitThreadId(0);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001196 klass.reset(LookupClass(descriptor.data(), class_loader));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001197 CHECK(klass.get() != NULL);
1198 return klass.get();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001199 }
1200 // Finish loading (if necessary) by finding parents
1201 CHECK(!klass->IsLoaded());
1202 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1203 // Loading failed.
1204 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001205 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001206 lock.NotifyAll();
1207 return NULL;
1208 }
1209 CHECK(klass->IsLoaded());
1210 // Link the class (if necessary)
1211 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001212 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001213 // Linking failed.
1214 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001215 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001216 lock.NotifyAll();
1217 return NULL;
1218 }
1219 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001220
1221 /*
1222 * We send CLASS_PREPARE events to the debugger from here. The
1223 * definition of "preparation" is creating the static fields for a
1224 * class and initializing them to the standard default values, but not
1225 * executing any code (that comes later, during "initialization").
1226 *
1227 * We did the static preparation in LinkClass.
1228 *
1229 * The class has been prepared and resolved but possibly not yet verified
1230 * at this point.
1231 */
1232 Dbg::PostClassPrepare(klass.get());
1233
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001234 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001235}
1236
Brian Carlstrom4873d462011-08-21 15:23:39 -07001237// Precomputes size that will be needed for Class, matching LinkStaticFields
1238size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1239 const DexFile::ClassDef& dex_class_def) {
1240 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001241 size_t num_ref = 0;
1242 size_t num_32 = 0;
1243 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001244 if (class_data != NULL) {
1245 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1246 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001247 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001248 char c = descriptor[0];
1249 if (c == 'L' || c == '[') {
1250 num_ref++;
1251 } else if (c == 'J' || c == 'D') {
1252 num_64++;
1253 } else {
1254 num_32++;
1255 }
1256 }
1257 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001258 // start with generic class data
1259 size_t size = sizeof(Class);
1260 // follow with reference fields which must be contiguous at start
1261 size += (num_ref * sizeof(uint32_t));
1262 // if there are 64-bit fields to add, make sure they are aligned
1263 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1264 if (num_32 != 0) {
1265 // use an available 32-bit field for padding
1266 num_32--;
1267 }
1268 size += sizeof(uint32_t); // either way, we are adding a word
1269 DCHECK_EQ(size, RoundUp(size, 8));
1270 }
1271 // tack on any 64-bit fields now that alignment is assured
1272 size += (num_64 * sizeof(uint64_t));
1273 // tack on any remaining 32-bit fields
1274 size += (num_32 * sizeof(uint32_t));
1275 return size;
1276}
1277
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001278void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001279 // Every kind of method should at least get an invoke stub from the oat_method.
1280 // non-abstract methods also get their code pointers.
1281 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001282 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001283
1284 if (method->IsAbstract()) {
1285 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1286 return;
1287 }
1288 if (method->IsNative()) {
1289 // unregistering restores the dlsym lookup stub
1290 method->UnregisterNative();
jeffhao26c0a1a2012-01-17 16:28:33 -08001291 }
1292
1293 if (Runtime::Current()->IsMethodTracingActive()) {
1294#if defined(__arm__)
1295 Trace* tracer = Runtime::Current()->GetTracer();
1296 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
1297 tracer->SaveAndUpdateCode(method.get(), trace_stub);
1298#else
1299 UNIMPLEMENTED(WARNING);
1300#endif
Brian Carlstrom92827a52011-10-10 15:50:01 -07001301 }
1302}
1303
Brian Carlstromf615a612011-07-23 12:50:34 -07001304void ClassLinker::LoadClass(const DexFile& dex_file,
1305 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001306 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001307 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001308 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001309 CHECK(klass->GetDexCache() != NULL);
1310 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001311 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001312 CHECK(descriptor != NULL);
1313
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001314 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001315 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001316 // Make sure that none of our runtime-only flags are set.
1317 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001318 klass->SetAccessFlags(access_flags);
1319 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001320 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001321 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001322
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001323 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001324
Ian Rogers0571d352011-11-03 19:51:38 -07001325 // Load fields fields.
1326 const byte* class_data = dex_file.GetClassData(dex_class_def);
1327 if (class_data == NULL) {
1328 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001329 }
Ian Rogers0571d352011-11-03 19:51:38 -07001330 ClassDataItemIterator it(dex_file, class_data);
1331 if (it.NumStaticFields() != 0) {
1332 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1333 }
1334 if (it.NumInstanceFields() != 0) {
1335 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1336 }
1337 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1338 SirtRef<Field> sfield(AllocField());
1339 klass->SetStaticField(i, sfield.get());
1340 LoadField(dex_file, it, klass, sfield);
1341 }
1342 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1343 SirtRef<Field> ifield(AllocField());
1344 klass->SetInstanceField(i, ifield.get());
1345 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001346 }
1347
Brian Carlstromaded5f72011-10-07 17:15:04 -07001348 UniquePtr<const OatFile::OatClass> oat_class;
1349 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001350 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001351 if (oat_file != NULL) {
1352 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1353 if (oat_dex_file != NULL) {
1354 uint32_t class_def_index;
1355 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1356 CHECK(found) << descriptor;
1357 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001358 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001359 }
1360 }
1361 }
Ian Rogers0571d352011-11-03 19:51:38 -07001362 // Load methods.
1363 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001364 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001365 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001366 }
Ian Rogers0571d352011-11-03 19:51:38 -07001367 if (it.NumVirtualMethods() != 0) {
1368 // TODO: append direct methods to class object
1369 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001370 }
Ian Rogers0571d352011-11-03 19:51:38 -07001371 size_t method_index = 0;
1372 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1373 SirtRef<Method> method(AllocMethod());
1374 klass->SetDirectMethod(i, method.get());
1375 LoadMethod(dex_file, it, klass, method);
1376 if (oat_class.get() != NULL) {
1377 LinkCode(method, oat_class.get(), method_index);
1378 }
1379 method_index++;
1380 }
1381 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1382 SirtRef<Method> method(AllocMethod());
1383 klass->SetVirtualMethod(i, method.get());
1384 LoadMethod(dex_file, it, klass, method);
1385 if (oat_class.get() != NULL) {
1386 LinkCode(method, oat_class.get(), method_index);
1387 }
1388 method_index++;
1389 }
1390 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001391}
1392
Ian Rogers0571d352011-11-03 19:51:38 -07001393void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1394 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001395 uint32_t field_idx = it.GetMemberIndex();
1396 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001397 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001398 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001399}
1400
Ian Rogers0571d352011-11-03 19:51:38 -07001401void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1402 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001403 uint32_t method_idx = it.GetMemberIndex();
1404 dst->SetDexMethodIndex(method_idx);
1405 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001406 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001407
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001408
1409 StringPiece method_name(dex_file.GetMethodName(method_id));
1410 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001411 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1412 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001413
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001414 if (method_name == "finalize") {
1415 // Create the prototype for a signature of "()V"
1416 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1417 if (void_string_id != NULL) {
1418 const DexFile::TypeId* void_type_id =
1419 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1420 if (void_type_id != NULL) {
1421 std::vector<uint16_t> no_args;
1422 const DexFile::ProtoId* finalizer_proto =
1423 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1424 if (finalizer_proto != NULL) {
1425 // We have the prototype in the dex file
1426 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1427 klass->SetFinalizable();
1428 } else {
1429 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1430 // The Enum class declares a "final" finalize() method to prevent subclasses from
1431 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1432 // subclasses, so we exclude it here.
1433 // We also want to avoid setting the flag on Object, where we know that finalize() is
1434 // empty.
1435 if (klass_descriptor != "Ljava/lang/Object;" &&
1436 klass_descriptor != "Ljava/lang/Enum;") {
1437 klass->SetFinalizable();
1438 }
1439 }
1440 }
1441 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001442 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001443 }
Ian Rogers0571d352011-11-03 19:51:38 -07001444 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001445 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001446
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001447 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1448 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1449 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1450 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1451 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1452 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001453
Brian Carlstrom934486c2011-07-12 23:42:50 -07001454 // TODO: check for finalize method
Brian Carlstrom934486c2011-07-12 23:42:50 -07001455}
1456
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001457void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001458 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1459 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001460}
1461
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001462void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1463 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001464 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001465 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001466}
1467
Brian Carlstromaded5f72011-10-07 17:15:04 -07001468bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001469 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001470 for (size_t i = 0; i != dex_files_.size(); ++i) {
1471 if (dex_files_[i] == &dex_file) {
1472 return true;
1473 }
1474 }
1475 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001476}
1477
Brian Carlstromaded5f72011-10-07 17:15:04 -07001478bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001479 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001480 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001481}
1482
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001483void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001484 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001485 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001486 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001487 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001488 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001489}
1490
Brian Carlstromaded5f72011-10-07 17:15:04 -07001491void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001492 {
1493 MutexLock mu(dex_lock_);
1494 if (IsDexFileRegisteredLocked(dex_file)) {
1495 return;
1496 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001497 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001498 // Don't alloc while holding the lock, since allocation may need to
1499 // suspend all threads and another thread may need the dex_lock_ to
1500 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001501 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001502 {
1503 MutexLock mu(dex_lock_);
1504 if (IsDexFileRegisteredLocked(dex_file)) {
1505 return;
1506 }
1507 RegisterDexFileLocked(dex_file, dex_cache);
1508 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001509}
1510
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001511void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001512 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001513 RegisterDexFileLocked(dex_file, dex_cache);
1514}
1515
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001516const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001517 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001518 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001519 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1520 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001521 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001522 }
1523 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001524 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001525 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001526}
1527
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001528DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001529 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001530 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001531 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001532 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001533 }
1534 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001535 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001536 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001537}
1538
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001539Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1540 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001541 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001542 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001543 CHECK(primitive_class != NULL);
1544 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001545 primitive_class->SetPrimitiveType(type);
1546 primitive_class->SetStatus(Class::kStatusInitialized);
Ian Rogers5d76c432011-10-31 21:42:49 -07001547 bool success = InsertClass(descriptor, primitive_class, false);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001548 CHECK(success) << "InitPrimitiveClass(" << descriptor << ") failed";
1549 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001550}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001551
Brian Carlstrombe977852011-07-19 14:54:54 -07001552// Create an array class (i.e. the class object for the array, not the
1553// array itself). "descriptor" looks like "[C" or "[[[[B" or
1554// "[Ljava/lang/String;".
1555//
1556// If "descriptor" refers to an array of primitives, look up the
1557// primitive type's internally-generated class object.
1558//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001559// "class_loader" is the class loader of the class that's referring to
1560// us. It's used to ensure that we're looking for the element type in
1561// the right context. It does NOT become the class loader for the
1562// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001563//
1564// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001565Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001566 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001567
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001568 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001569 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001570 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001571 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001572 return NULL;
1573 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001574
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001575 // See if the component type is already loaded. Array classes are
1576 // always associated with the class loader of their underlying
1577 // element type -- an array of Strings goes with the loader for
1578 // java/lang/String -- so we need to look for it there. (The
1579 // caller should have checked for the existence of the class
1580 // before calling here, but they did so with *their* class loader,
1581 // not the component type's loader.)
1582 //
1583 // If we find it, the caller adds "loader" to the class' initiating
1584 // loader list, which should prevent us from going through this again.
1585 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001586 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001587 // are the same, because our caller (FindClass) just did the
1588 // lookup. (Even if we get this wrong we still have correct behavior,
1589 // because we effectively do this lookup again when we add the new
1590 // class to the hash table --- necessary because of possible races with
1591 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001592 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001593 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001594 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001595 return new_class;
1596 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001597 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001598
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001599 // Fill out the fields in the Class.
1600 //
1601 // It is possible to execute some methods against arrays, because
1602 // all arrays are subclasses of java_lang_Object_, so we need to set
1603 // up a vtable. We can just point at the one in java_lang_Object_.
1604 //
1605 // Array classes are simple enough that we don't need to do a full
1606 // link step.
1607
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001608 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001609 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001610 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001611 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001612 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001613 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001614 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001615 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001616 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001617 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001618 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001619 }
1620 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001621 if (new_class.get() == NULL) {
1622 new_class.reset(AllocClass(sizeof(Class)));
1623 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001624 return NULL;
1625 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001626 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001627 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001628 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001629 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001630 new_class->SetSuperClass(java_lang_Object);
1631 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001632 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001633 new_class->SetClassLoader(component_type->GetClassLoader());
1634 new_class->SetStatus(Class::kStatusInitialized);
1635 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001636 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001637
1638
1639 // All arrays have java/lang/Cloneable and java/io/Serializable as
1640 // interfaces. We need to set that up here, so that stuff like
1641 // "instanceof" works right.
1642 //
1643 // Note: The GC could run during the call to FindSystemClass,
1644 // so we need to make sure the class object is GC-valid while we're in
1645 // there. Do this by clearing the interface list so the GC will just
1646 // think that the entries are null.
1647
1648
1649 // Use the single, global copies of "interfaces" and "iftable"
1650 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001651 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001652 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001653
1654 // Inherit access flags from the component type. Arrays can't be
1655 // used as a superclass or interface, so we want to add "final"
1656 // and remove "interface".
1657 //
1658 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001659 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001660 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001661 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1662 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001663
Ian Rogers5d76c432011-10-31 21:42:49 -07001664 if (InsertClass(descriptor, new_class.get(), false)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001665 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001666 }
1667 // Another thread must have loaded the class after we
1668 // started but before we finished. Abandon what we've
1669 // done.
1670 //
1671 // (Yes, this happens.)
1672
1673 // Grab the winning class.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001674 Class* other_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001675 DCHECK(other_class != NULL);
1676 return other_class;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001677}
1678
1679Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001680 switch (Primitive::GetType(type)) {
1681 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001682 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001683 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001684 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001685 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001686 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001687 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001688 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001689 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001690 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001691 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001692 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001693 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001694 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001695 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001696 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001697 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001698 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001699 case Primitive::kPrimNot:
1700 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001701 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001702 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001703 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001704 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001705}
1706
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001707bool ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001708 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001709 DexCache* dex_cache = klass->GetDexCache();
1710 std::string source;
1711 if (dex_cache != NULL) {
1712 source += " from ";
1713 source += dex_cache->GetLocation()->ToModifiedUtf8();
1714 }
1715 LOG(INFO) << "Loaded class " << descriptor << source;
1716 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001717 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001718 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001719 Table::iterator it;
1720 if (image_class) {
1721 // TODO: sanity check there's no match in classes_
1722 it = image_classes_.insert(std::make_pair(hash, klass));
1723 } else {
1724 // TODO: sanity check there's no match in image_classes_
1725 it = classes_.insert(std::make_pair(hash, klass));
1726 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001727 return ((*it).second == klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001728}
1729
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001730bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1731 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001732 MutexLock mu(classes_lock_);
1733 typedef Table::const_iterator It; // TODO: C++0x auto
1734 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001735 ClassHelper kh;
Brian Carlstromae826982011-11-09 01:33:42 -08001736 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
1737 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001738 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001739 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001740 classes_.erase(it);
1741 return true;
1742 }
1743 }
1744 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1745 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001746 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001747 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001748 image_classes_.erase(it);
1749 return true;
1750 }
1751 }
1752 return false;
1753}
1754
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001755Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1756 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001757 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001758 typedef Table::const_iterator It; // TODO: C++0x auto
Ian Rogers5d76c432011-10-31 21:42:49 -07001759 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001760 ClassHelper kh(NULL, this);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001761 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001762 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001763 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001764 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001765 return klass;
1766 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001767 }
Ian Rogers5d76c432011-10-31 21:42:49 -07001768 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1769 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001770 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001771 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001772 return klass;
1773 }
1774 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001775 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001776}
1777
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001778void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001779 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001780 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001781 MutexLock mu(classes_lock_);
1782 typedef Table::const_iterator It; // TODO: C++0x auto
1783 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001784 ClassHelper kh(NULL, this);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001785 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001786 Class* klass = it->second;
1787 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001788 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001789 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001790 }
1791 }
1792 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001793 Class* klass = it->second;
1794 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001795 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001796 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001797 }
1798 }
1799}
1800
jeffhao98eacac2011-09-14 16:11:53 -07001801void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001802 // TODO: assert that the monitor on the Class is held
jeffhao98eacac2011-09-14 16:11:53 -07001803 if (klass->IsVerified()) {
1804 return;
1805 }
1806
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001807 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001808 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001809
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001810 // Try to use verification information from oat file, otherwise do runtime verification
1811 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
1812 if (VerifyClassUsingOatFile(dex_file, klass) || verifier::DexVerifier::VerifyClass(klass)) {
1813 // Make sure all classes referenced by catch blocks are resolved
1814 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001815 klass->SetStatus(Class::kStatusVerified);
1816 } else {
1817 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001818 Thread* self = Thread::Current();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001819 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException()) << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001820 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001821 PrettyDescriptor(klass).c_str());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001822 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001823 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001824 }
jeffhao98eacac2011-09-14 16:11:53 -07001825}
1826
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001827bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass) {
1828 if (!Runtime::Current()->IsStarted()) {
1829 return false;
1830 }
1831 if (ClassLoader::UseCompileTimeClassPath()) {
1832 return false;
1833 }
1834 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
1835 if (oat_file == NULL) {
1836 return false;
1837 }
1838 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1839 CHECK(oat_dex_file != NULL) << PrettyClass(klass);
1840 const char* descriptor = ClassHelper(klass).GetDescriptor();
1841 uint32_t class_def_index;
1842 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1843 CHECK(found) << descriptor;
1844 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
1845 CHECK(oat_class.get() != NULL) << descriptor;
1846 Class::Status status = oat_class->GetStatus();
1847 if (status == Class::kStatusError) {
1848 ThrowEarlierClassFailure(klass);
1849 klass->SetVerifyErrorClass(Thread::Current()->GetException()->GetClass());
1850 klass->SetStatus(Class::kStatusError);
1851 return true;
1852 }
1853 if (status == Class::kStatusVerified || status == Class::kStatusInitialized) {
1854 return true;
1855 }
1856 if (status == Class::kStatusNotReady) {
1857 return false;
1858 }
1859 LOG(FATAL) << "Unexpected class status: " << status;
1860 return false;
1861}
1862
1863void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
1864 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1865 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
1866 }
1867 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1868 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
1869 }
1870}
1871
1872void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
1873 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
1874 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
1875 if (code_item == NULL) {
1876 return; // native or abstract method
1877 }
1878 if (code_item->tries_size_ == 0) {
1879 return; // nothing to process
1880 }
1881 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
1882 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
1883 ClassLinker* linker = Runtime::Current()->GetClassLinker();
1884 for (uint32_t idx = 0; idx < handlers_size; idx++) {
1885 CatchHandlerIterator iterator(handlers_ptr);
1886 for (; iterator.HasNext(); iterator.Next()) {
1887 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1888 // unresolved exception types will be ignored by exception delivery
1889 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
1890 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
1891 if (exception_type == NULL) {
1892 DCHECK(Thread::Current()->IsExceptionPending());
1893 Thread::Current()->ClearException();
1894 }
1895 }
1896 }
1897 handlers_ptr = iterator.EndDataPointer();
1898 }
1899}
1900
Ian Rogersc2b44472011-12-14 21:17:17 -08001901static void CheckProxyConstructor(Method* constructor);
1902static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
1903
Jesse Wilson95caa792011-10-12 18:14:17 -04001904Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001905 ClassLoader* loader, ObjectArray<Method>* methods,
1906 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08001907 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001908 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08001909 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001910 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001911 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001912 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001913 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001914 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07001915 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001916 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08001917
1918 klass->SetStatus(Class::kStatusIdx);
1919
1920 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
1921
1922 // Create static field that holds throws, instance fields are inherited
1923 klass->SetSFields(AllocObjectArray<Field>(1));
1924 SirtRef<Field> sfield(AllocField());
1925 klass->SetStaticField(0, sfield.get());
1926 sfield->SetDexFieldIndex(-1);
1927 sfield->SetDeclaringClass(klass.get());
1928 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001929
Ian Rogers466bb252011-10-14 03:29:56 -07001930 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001931 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001932 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04001933
Ian Rogers466bb252011-10-14 03:29:56 -07001934 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001935 size_t num_virtual_methods = methods->GetLength();
1936 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1937 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001938 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001939 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04001940 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001941
1942 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1943 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
1944 DCHECK(!Thread::Current()->IsExceptionPending());
1945
1946 // Link the fields and virtual methods, creating vtable and iftables
1947 if (!LinkClass(klass, interfaces)) {
Jesse Wilson95caa792011-10-12 18:14:17 -04001948 DCHECK(Thread::Current()->IsExceptionPending());
1949 return NULL;
1950 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001951 sfield->SetObject(NULL, throws); // initialize throws field
1952 klass->SetStatus(Class::kStatusInitialized);
1953
1954 // sanity checks
1955#ifndef NDEBUG
1956 bool debug = true;
1957#else
1958 bool debug = false;
1959#endif
1960 if (debug) {
1961 CHECK(klass->GetIFields() == NULL);
1962 CheckProxyConstructor(klass->GetDirectMethod(0));
1963 for (size_t i = 0; i < num_virtual_methods; ++i) {
1964 SirtRef<Method> prototype(methods->Get(i));
1965 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
1966 }
Brian Carlstrom89521892011-12-07 22:05:07 -08001967 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08001968 throws_field_name += name->ToModifiedUtf8();
1969 throws_field_name += ".throws";
1970 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
1971
1972 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
1973 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
1974 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001975 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04001976}
1977
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001978std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
1979 DCHECK(proxy_class->IsProxyClass());
1980 String* name = proxy_class->GetName();
1981 DCHECK(name != NULL);
1982 return DotToDescriptor(name->ToModifiedUtf8().c_str());
1983}
1984
1985
1986Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07001987 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07001988 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04001989 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07001990 Method* proxy_constructor = proxy_direct_methods->Get(2);
1991 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
1992 // code_ too)
1993 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
1994 // Make this constructor public and fix the class to be our Proxy version
1995 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001996 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08001997 return constructor;
1998}
1999
2000static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002001 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002002 MethodHelper mh(constructor);
2003 CHECK_STREQ(mh.GetName(), "<init>");
2004 CHECK(mh.GetSignature() == "(Ljava/lang/reflect/InvocationHandler;)V");
Ian Rogers466bb252011-10-14 03:29:56 -07002005 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002006}
2007
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002008Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2009 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2010 // prototype method
2011 prototype->GetDexCacheResolvedMethods()->Set(prototype->GetDexMethodIndex(), prototype.get());
2012 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002013 // as necessary
2014 Method* method = down_cast<Method*>(prototype->Clone());
2015
2016 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2017 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002018 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002019 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002020
Ian Rogers466bb252011-10-14 03:29:56 -07002021 // At runtime the method looks like a reference and argument saving method, clone the code
2022 // related parameters from this method.
2023 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2024 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2025 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2026 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
2027 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogersc2b44472011-12-14 21:17:17 -08002028 return method;
2029}
Jesse Wilson95caa792011-10-12 18:14:17 -04002030
Ian Rogersc2b44472011-12-14 21:17:17 -08002031static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002032 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002033 CHECK(!prototype->IsFinal());
2034 CHECK(method->IsFinal());
2035 CHECK(!method->IsAbstract());
2036 MethodHelper mh(method);
2037 const char* method_name = mh.GetName();
2038 const char* method_shorty = mh.GetShorty();
2039 Class* method_return = mh.GetReturnType();
2040
2041 mh.ChangeMethod(prototype.get());
2042
2043 CHECK_STREQ(mh.GetName(), method_name);
2044 CHECK_STREQ(mh.GetShorty(), method_shorty);
Ian Rogers466bb252011-10-14 03:29:56 -07002045
2046 // More complex sanity - via dex cache
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002047 CHECK_EQ(mh.GetReturnType(), method_return);
Jesse Wilson95caa792011-10-12 18:14:17 -04002048}
2049
Brian Carlstrom25c33252011-09-18 15:58:35 -07002050bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002051 CHECK(klass->IsResolved() || klass->IsErroneous())
2052 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002053
Carl Shapirob5573532011-07-12 18:22:59 -07002054 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002055
Brian Carlstrom25c33252011-09-18 15:58:35 -07002056 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002057 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002058 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002059 ObjectLock lock(klass);
2060
Brian Carlstromd1422f82011-09-28 11:37:09 -07002061 if (klass->GetStatus() == Class::kStatusInitialized) {
2062 return true;
2063 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002064
Brian Carlstromd1422f82011-09-28 11:37:09 -07002065 if (klass->IsErroneous()) {
2066 ThrowEarlierClassFailure(klass);
2067 return false;
2068 }
2069
2070 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002071 VerifyClass(klass);
2072 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002073 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002074 return false;
2075 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002076 }
2077
Brian Carlstrom25c33252011-09-18 15:58:35 -07002078 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2079 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002080 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers595799e2012-01-11 17:32:51 -08002081 // don't bother going to kStatusInitializing. We return true to maintain
2082 // the invariant that a false result implies there is a pending exception.
2083 return true;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002084 }
2085
Brian Carlstromd1422f82011-09-28 11:37:09 -07002086 // If the class is kStatusInitializing, either this thread is
2087 // initializing higher up the stack or another thread has beat us
2088 // to initializing and we need to wait. Either way, this
2089 // invocation of InitializeClass will not be responsible for
2090 // running <clinit> and will return.
2091 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002092 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002093 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002094 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002095 return true;
2096 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002097 // No. That's fine. Wait for another thread to finish initializing.
2098 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002099 }
2100
2101 if (!ValidateSuperClassDescriptors(klass)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002102 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002103 klass->SetStatus(Class::kStatusError);
2104 return false;
2105 }
2106
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002107 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002108
Elliott Hughesdcc24742011-09-07 14:02:44 -07002109 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002110 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002111 }
2112
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002113 uint64_t t0 = NanoTime();
2114
Brian Carlstrom25c33252011-09-18 15:58:35 -07002115 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002116 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002117 return false;
2118 }
2119
2120 InitializeStaticFields(klass);
2121
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002122 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002123 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002124 }
2125
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002126 uint64_t t1 = NanoTime();
2127
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002128 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002129 {
2130 ObjectLock lock(klass);
2131
2132 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002133 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002134 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002135 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002136 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002137 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2138 RuntimeStats* thread_stats = self->GetStats();
2139 ++global_stats->class_init_count;
2140 ++thread_stats->class_init_count;
2141 global_stats->class_init_time_ns += (t1 - t0);
2142 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002143 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002144 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002145 ClassHelper kh(klass);
2146 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002147 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002148 }
2149 lock.NotifyAll();
2150 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002151 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002152}
2153
Brian Carlstromd1422f82011-09-28 11:37:09 -07002154bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2155 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002156 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002157 lock.Wait();
2158
2159 // When we wake up, repeat the test for init-in-progress. If
2160 // there's an exception pending (only possible if
2161 // "interruptShouldThrow" was set), bail out.
2162 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002163 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002164 klass->SetStatus(Class::kStatusError);
2165 return false;
2166 }
2167 // Spurious wakeup? Go back to waiting.
2168 if (klass->GetStatus() == Class::kStatusInitializing) {
2169 continue;
2170 }
2171 if (klass->IsErroneous()) {
2172 // The caller wants an exception, but it was thrown in a
2173 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002174 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002175 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002176 return false;
2177 }
2178 if (klass->IsInitialized()) {
2179 return true;
2180 }
2181 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2182 }
2183 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2184}
2185
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002186bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2187 if (klass->IsInterface()) {
2188 return true;
2189 }
2190 // begin with the methods local to the superclass
2191 if (klass->HasSuperClass() &&
2192 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2193 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002194 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2195 const Method* method = klass->GetVTable()->Get(i);
2196 if (method != super->GetVTable()->Get(i) &&
2197 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002198 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2199 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2200 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002201 return false;
2202 }
2203 }
2204 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002205 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2206 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2207 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002208 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2209 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002210 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002211 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2212 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002213 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2214 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2215 PrettyMethod(method).c_str(),
2216 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002217 return false;
2218 }
2219 }
2220 }
2221 }
2222 return true;
2223}
2224
Ian Rogers595799e2012-01-11 17:32:51 -08002225// Returns true if classes referenced by the signature of the method are the
2226// same classes in klass1 as they are in klass2.
2227bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2228 const Class* klass1,
2229 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002230 if (klass1 == klass2) {
2231 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002232 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002233 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002234 const DexFile::ProtoId& proto_id =
2235 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002236 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2237 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002238 if (descriptor == NULL) {
2239 break;
2240 }
2241 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2242 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002243 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002244 return false;
2245 }
2246 }
2247 }
2248 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002249 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002250 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002251 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002252 return false;
2253 }
2254 }
2255 return true;
2256}
2257
Ian Rogers595799e2012-01-11 17:32:51 -08002258// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2259bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2260 const Class* klass1,
2261 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002262 CHECK(descriptor != NULL);
2263 CHECK(klass1 != NULL);
2264 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002265 if (klass1 == klass2) {
2266 return true;
2267 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002268 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002269 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002270 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002271 }
Ian Rogers595799e2012-01-11 17:32:51 -08002272 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2273 if (found2 == NULL) {
2274 Thread::Current()->ClearException();
2275 }
2276 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002277}
2278
Brian Carlstrom25c33252011-09-18 15:58:35 -07002279bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002280 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002281 if (!klass->IsInterface() && klass->HasSuperClass()) {
2282 Class* super_class = klass->GetSuperClass();
2283 if (super_class->GetStatus() != Class::kStatusInitialized) {
2284 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002285 Thread* self = Thread::Current();
2286 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002287 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002288 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002289 // TODO: check for a pending exception
2290 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002291 if (!can_run_clinit) {
2292 // Don't set status to error when we can't run <clinit>.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002293 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002294 klass->SetStatus(Class::kStatusVerified);
2295 return false;
2296 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002297 klass->SetStatus(Class::kStatusError);
2298 klass->NotifyAll();
2299 return false;
2300 }
2301 }
2302 }
2303 return true;
2304}
2305
Brian Carlstrom25c33252011-09-18 15:58:35 -07002306bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002307 CHECK(c != NULL);
2308 if (c->IsInitialized()) {
2309 return true;
2310 }
2311
Elliott Hughes5f791332011-09-15 17:45:30 -07002312 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002313 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002314 bool success = InitializeClass(c, can_run_clinit);
2315 if (!success) {
2316 CHECK(self->IsExceptionPending());
2317 }
2318 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002319}
2320
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002321void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002322 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002323 const ClassLoader* cl = c->GetClassLoader();
2324 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002325 ClassDataItemIterator it(dex_file, class_data);
2326 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2327 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002328 }
2329}
2330
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002331void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002332 size_t num_static_fields = klass->NumStaticFields();
2333 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002334 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002335 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002336 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002337 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002338 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002339 return;
2340 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002341 ClassHelper kh(klass);
2342 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002343 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002344 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002345 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002346
Ian Rogers0571d352011-11-03 19:51:38 -07002347 if (it.HasNext()) {
2348 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2349 std::map<uint32_t, Field*> field_map;
2350 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2351 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2352 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002353 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002354 }
2355}
2356
Ian Rogersc2b44472011-12-14 21:17:17 -08002357bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002358 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002359 if (!LinkSuperClass(klass)) {
2360 return false;
2361 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002362 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002363 return false;
2364 }
2365 if (!LinkInstanceFields(klass)) {
2366 return false;
2367 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002368 if (!LinkStaticFields(klass)) {
2369 return false;
2370 }
2371 CreateReferenceInstanceOffsets(klass);
2372 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002373 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2374 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002375 return true;
2376}
2377
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002378bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002379 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002380 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2381 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002382 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002383 uint16_t super_class_idx = class_def->superclass_idx_;
2384 if (super_class_idx != DexFile::kDexNoIndex16) {
2385 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002386 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002387 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002388 return false;
2389 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002390 // Verify
2391 if (!klass->CanAccess(super_class)) {
2392 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2393 "Class %s extended by class %s is inaccessible",
2394 PrettyDescriptor(super_class).c_str(),
2395 PrettyDescriptor(klass.get()).c_str());
2396 return false;
2397 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002398 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002399 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002400 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2401 if (interfaces != NULL) {
2402 for (size_t i = 0; i < interfaces->Size(); i++) {
2403 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2404 Class* interface = ResolveType(dex_file, idx, klass.get());
2405 if (interface == NULL) {
2406 DCHECK(Thread::Current()->IsExceptionPending());
2407 return false;
2408 }
2409 // Verify
2410 if (!klass->CanAccess(interface)) {
2411 // TODO: the RI seemed to ignore this in my testing.
2412 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2413 "Interface %s implemented by class %s is inaccessible",
2414 PrettyDescriptor(interface).c_str(),
2415 PrettyDescriptor(klass.get()).c_str());
2416 return false;
2417 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002418 }
2419 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002420 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002421 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002422 return true;
2423}
2424
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002425bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002426 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002427 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002428 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002429 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002430 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002431 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002432 return false;
2433 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002434 return true;
2435 }
2436 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002437 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002438 return false;
2439 }
2440 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002441 if (super->IsFinal() || super->IsInterface()) {
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002442 Thread* thread = Thread::Current();
2443 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002444 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002445 PrettyDescriptor(super).c_str(),
2446 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002447 super->IsFinal() ? "declared final" : "an interface");
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002448 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002449 return false;
2450 }
2451 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002452 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002453 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002454 PrettyDescriptor(super).c_str(),
2455 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002456 return false;
2457 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002458
2459 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2460 if (super->IsFinalizable()) {
2461 klass->SetFinalizable();
2462 }
2463
Elliott Hughes2da50362011-10-10 16:57:08 -07002464 // Inherit reference flags (if any) from the superclass.
2465 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2466 if (reference_flags != 0) {
2467 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2468 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002469 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002470 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002471 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002472 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002473 return false;
2474 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002475
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002476#ifndef NDEBUG
2477 // Ensure super classes are fully resolved prior to resolving fields..
2478 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002479 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002480 super = super->GetSuperClass();
2481 }
2482#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002483 return true;
2484}
2485
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002486// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002487bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002488 if (klass->IsInterface()) {
2489 // No vtable.
2490 size_t count = klass->NumVirtualMethods();
2491 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002492 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002493 return false;
2494 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002495 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002496 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002497 }
jeffhaobdb76512011-09-07 11:43:16 -07002498 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002499 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002500 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002501 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002502 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002503 }
2504 return true;
2505}
2506
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002507bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002508 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002509 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2510 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002511 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002512 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002513 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002514 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002515 MethodHelper local_mh(NULL, this);
2516 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002517 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002518 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002519 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002520 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002521 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002522 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002523 super_mh.ChangeMethod(super_method);
2524 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002525 // Verify
2526 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002527 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002528 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002529 PrettyDescriptor(klass.get()).c_str(),
2530 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002531 return false;
2532 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002533 vtable->Set(j, local_method);
2534 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002535 break;
2536 }
2537 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002538 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002539 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002540 vtable->Set(actual_count, local_method);
2541 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002542 actual_count += 1;
2543 }
2544 }
2545 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002546 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002547 return false;
2548 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002549 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002550 CHECK_LE(actual_count, max_count);
2551 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002552 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002553 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002554 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002555 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002556 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002557 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002558 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002559 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002560 return false;
2561 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002562 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002563 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002564 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2565 vtable->Set(i, virtual_method);
2566 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002567 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002568 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002569 }
2570 return true;
2571}
2572
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002573bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002574 size_t super_ifcount;
2575 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002576 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002577 } else {
2578 super_ifcount = 0;
2579 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002580 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002581 ClassHelper kh(klass.get(), this);
2582 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2583 ifcount += num_interfaces;
2584 for (size_t i = 0; i < num_interfaces; i++) {
2585 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2586 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002587 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002588 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002589 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002590 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002591 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002592 return true;
2593 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002594 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002595 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002596 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2597 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002598 Class* super_interface = super_iftable->Get(i)->GetInterface();
2599 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002600 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002601 }
2602 // Flatten the interface inheritance hierarchy.
2603 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002604 for (size_t i = 0; i < num_interfaces; i++) {
2605 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002606 DCHECK(interface != NULL);
2607 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002608 ClassHelper ih(interface);
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002609 Thread* thread = Thread::Current();
2610 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002611 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002612 PrettyDescriptor(klass.get()).c_str(),
2613 PrettyDescriptor(ih.GetDescriptor()).c_str());
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002614 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002615 return false;
2616 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002617 // Check if interface is already in iftable
2618 bool duplicate = false;
2619 for (size_t j = 0; j < idx; j++) {
2620 Class* existing_interface = iftable->Get(j)->GetInterface();
2621 if (existing_interface == interface) {
2622 duplicate = true;
2623 break;
2624 }
2625 }
2626 if (!duplicate) {
2627 // Add this non-duplicate interface.
2628 iftable->Set(idx++, AllocInterfaceEntry(interface));
2629 // Add this interface's non-duplicate super-interfaces.
2630 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2631 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2632 bool super_duplicate = false;
2633 for (size_t k = 0; k < idx; k++) {
2634 Class* existing_interface = iftable->Get(k)->GetInterface();
2635 if (existing_interface == super_interface) {
2636 super_duplicate = true;
2637 break;
2638 }
2639 }
2640 if (!super_duplicate) {
2641 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2642 }
2643 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002644 }
2645 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002646 // Shrink iftable in case duplicates were found
2647 if (idx < ifcount) {
2648 iftable.reset(iftable->CopyOf(idx));
2649 ifcount = idx;
2650 } else {
2651 CHECK_EQ(idx, ifcount);
2652 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002653 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002654
2655 // If we're an interface, we don't need the vtable pointers, so we're done.
2656 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002657 return true;
2658 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002659 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002660 MethodHelper vtable_mh(NULL, this);
2661 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002662 for (size_t i = 0; i < ifcount; ++i) {
2663 InterfaceEntry* interface_entry = iftable->Get(i);
2664 Class* interface = interface_entry->GetInterface();
2665 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2666 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002667 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002668 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2669 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002670 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002671 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002672 // For each method listed in the interface's method list, find the
2673 // matching method in our class's method list. We want to favor the
2674 // subclass over the superclass, which just requires walking
2675 // back from the end of the vtable. (This only matters if the
2676 // superclass defines a private method and this class redefines
2677 // it -- otherwise it would use the same vtable slot. In .dex files
2678 // those don't end up in the virtual method table, so it shouldn't
2679 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002680 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2681 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002682 vtable_mh.ChangeMethod(vtable_method);
2683 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002684 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002685 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002686 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002687 return false;
2688 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002689 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002690 break;
2691 }
2692 }
2693 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002694 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002695 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002696 Method* mir_method = miranda_list[mir];
2697 vtable_mh.ChangeMethod(mir_method);
2698 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002699 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002700 break;
2701 }
2702 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002703 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002704 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002705 miranda_method.reset(AllocMethod());
2706 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2707 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002708 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002709 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002710 }
2711 }
2712 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002713 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002714 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002715 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002716 klass->SetVirtualMethods((old_method_count == 0)
2717 ? AllocObjectArray<Method>(new_method_count)
2718 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002719
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002720 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2721 CHECK(vtable != NULL);
2722 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002723 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002724 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002725 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002726 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002727 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002728 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2729 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2730 klass->SetVirtualMethod(old_method_count + i, method);
2731 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002732 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002733 // TODO: do not assign to the vtable field until it is fully constructed.
2734 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002735 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002736
2737 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2738 for (int i = 0; i < vtable->GetLength(); ++i) {
2739 CHECK(vtable->Get(i) != NULL);
2740 }
2741
2742// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2743
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002744 return true;
2745}
2746
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002747bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2748 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002749 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002750}
2751
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002752bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2753 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002754 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002755 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002756 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002757 return success;
2758}
2759
Brian Carlstromdbc05252011-09-09 01:59:59 -07002760struct LinkFieldsComparator {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002761 LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002762 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002763 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002764 fh_->ChangeField(field1);
2765 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
2766 fh_->ChangeField(field2);
2767 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002768 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2769 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2770 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2771 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002772 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2773 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2774 if (order1 != order2) {
2775 return order1 < order2;
2776 }
2777
2778 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002779 fh_->ChangeField(field1);
2780 StringPiece name1(fh_->GetName());
2781 fh_->ChangeField(field2);
2782 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07002783 return name1 < name2;
2784 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002785
2786 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002787};
2788
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002789bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002790 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002791 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002792
2793 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002794 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002795
2796 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002797 size_t size;
2798 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002799 if (is_static) {
2800 size = klass->GetClassSize();
2801 field_offset = Class::FieldsOffset();
2802 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002803 Class* super_class = klass->GetSuperClass();
2804 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002805 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002806 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002807 }
2808 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002809 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002810
Brian Carlstromdbc05252011-09-09 01:59:59 -07002811 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002812
Brian Carlstromdbc05252011-09-09 01:59:59 -07002813 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002814 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002815 std::deque<Field*> grouped_and_sorted_fields;
2816 for (size_t i = 0; i < num_fields; i++) {
2817 grouped_and_sorted_fields.push_back(fields->Get(i));
2818 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002819 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002820 std::sort(grouped_and_sorted_fields.begin(),
2821 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002822 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002823
2824 // References should be at the front.
2825 size_t current_field = 0;
2826 size_t num_reference_fields = 0;
2827 for (; current_field < num_fields; current_field++) {
2828 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002829 fh.ChangeField(field);
2830 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002831 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002832 if (isPrimitive) {
2833 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002834 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002835 grouped_and_sorted_fields.pop_front();
2836 num_reference_fields++;
2837 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002838 field->SetOffset(field_offset);
2839 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002840 }
2841
2842 // Now we want to pack all of the double-wide fields together. If
2843 // we're not aligned, though, we want to shuffle one 32-bit field
2844 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002845 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002846 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2847 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002848 fh.ChangeField(field);
2849 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002850 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2851 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002852 continue;
2853 }
2854 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002855 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002856 // drop the consumed field
2857 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2858 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002859 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002860 // whether we found a 32-bit field for padding or not, we advance
2861 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002862 }
2863
2864 // Alignment is good, shuffle any double-wide fields forward, and
2865 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002866 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002867 while (!grouped_and_sorted_fields.empty()) {
2868 Field* field = grouped_and_sorted_fields.front();
2869 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002870 fh.ChangeField(field);
2871 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002872 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002873 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002874 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002875 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002876 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002877 ? sizeof(uint64_t)
2878 : sizeof(uint32_t)));
2879 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002880 }
2881
Elliott Hughesadb460d2011-10-05 17:02:34 -07002882 // 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 -08002883 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
2884 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002885 // We know there are no non-reference fields in the Reference classes, and we know
2886 // that 'referent' is alphabetically last, so this is easy...
2887 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002888 fh.ChangeField(fields->Get(num_fields - 1));
2889 StringPiece name(fh.GetName());
2890 CHECK(name == "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07002891 --num_reference_fields;
2892 }
2893
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002894#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002895 // Make sure that all reference fields appear before
2896 // non-reference fields, and all double-wide fields are aligned.
2897 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002898 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002899 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002900 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002901 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002902 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002903 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002904 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2905 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002906 fh.ChangeField(field);
2907 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002908 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002909 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002910 is_primitive = true; // We lied above, so we have to expect a lie here.
2911 }
2912 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002913 if (!seen_non_ref) {
2914 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002915 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002916 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002917 } else {
2918 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002919 }
2920 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002921 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002922 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002923 }
2924#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002925 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002926 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002927 if (is_static) {
2928 klass->SetNumReferenceStaticFields(num_reference_fields);
2929 klass->SetClassSize(size);
2930 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002931 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002932 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002933 klass->SetObjectSize(size);
2934 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002935 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002936 return true;
2937}
2938
2939// Set the bitmap of reference offsets, refOffsets, from the ifields
2940// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002941void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002942 uint32_t reference_offsets = 0;
2943 Class* super_class = klass->GetSuperClass();
2944 if (super_class != NULL) {
2945 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002946 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002947 if (reference_offsets == CLASS_WALK_SUPER) {
2948 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002949 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002950 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002951 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002952 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002953}
2954
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002955void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002956 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002957}
2958
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002959void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002960 uint32_t reference_offsets) {
2961 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002962 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
2963 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002964 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002965 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002966 // All of the fields that contain object references are guaranteed
2967 // to be at the beginning of the fields list.
2968 for (size_t i = 0; i < num_reference_fields; ++i) {
2969 // Note that byte_offset is the offset from the beginning of
2970 // object, not the offset into instance data
2971 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002972 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002973 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
2974 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
2975 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002976 CHECK_NE(new_bit, 0U);
2977 reference_offsets |= new_bit;
2978 } else {
2979 reference_offsets = CLASS_WALK_SUPER;
2980 break;
2981 }
2982 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002983 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002984 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002985 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002986 } else {
2987 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002988 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002989}
2990
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002991String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002992 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002993 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002994 if (resolved != NULL) {
2995 return resolved;
2996 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002997 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
2998 int32_t utf16_length = dex_file.GetStringLength(string_id);
2999 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003000 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003001 dex_cache->SetResolvedString(string_idx, string);
3002 return string;
3003}
3004
3005Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003006 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003007 DexCache* dex_cache,
3008 const ClassLoader* class_loader) {
3009 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003010 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003011 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003012 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003013 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003014 // TODO: we used to throw here if resolved's class loader was not the
3015 // boot class loader. This was to permit different classes with the
3016 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003017 dex_cache->SetResolvedType(type_idx, resolved);
3018 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003019 CHECK(Thread::Current()->IsExceptionPending())
3020 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003021 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003022 }
3023 return resolved;
3024}
3025
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003026Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3027 uint32_t method_idx,
3028 DexCache* dex_cache,
3029 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003030 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003031 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3032 if (resolved != NULL) {
3033 return resolved;
3034 }
3035 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3036 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3037 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003038 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003039 return NULL;
3040 }
3041
Ian Rogers0571d352011-11-03 19:51:38 -07003042 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3043 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003044 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003045 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003046 } else if (klass->IsInterface()) {
3047 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003048 } else {
3049 resolved = klass->FindVirtualMethod(name, signature);
3050 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003051 if (resolved != NULL) {
3052 dex_cache->SetResolvedMethod(method_idx, resolved);
3053 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003054 ThrowNoSuchMethodError(is_direct, klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003055 }
3056 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003057}
3058
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003059Field* ClassLinker::ResolveField(const DexFile& dex_file,
3060 uint32_t field_idx,
3061 DexCache* dex_cache,
3062 const ClassLoader* class_loader,
3063 bool is_static) {
3064 Field* resolved = dex_cache->GetResolvedField(field_idx);
3065 if (resolved != NULL) {
3066 return resolved;
3067 }
3068 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3069 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3070 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003071 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003072 return NULL;
3073 }
3074
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003075 const char* name = dex_file.GetFieldName(field_id);
3076 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003077 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003078 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003079 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003080 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003081 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003082 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003083 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003084 } else {
Ian Rogersb067ac22011-12-13 18:05:09 -08003085 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3086 }
3087 return resolved;
3088}
3089
3090Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3091 uint32_t field_idx,
3092 DexCache* dex_cache,
3093 const ClassLoader* class_loader) {
3094 Field* resolved = dex_cache->GetResolvedField(field_idx);
3095 if (resolved != NULL) {
3096 return resolved;
3097 }
3098 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3099 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3100 if (klass == NULL) {
3101 DCHECK(Thread::Current()->IsExceptionPending());
3102 return NULL;
3103 }
3104
3105 const char* name = dex_file.GetFieldName(field_id);
3106 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3107 resolved = klass->FindField(name, type);
3108 if (resolved != NULL) {
3109 dex_cache->SetResolvedField(field_idx, resolved);
3110 } else {
3111 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003112 }
3113 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003114}
3115
Ian Rogersad25ac52011-10-04 19:13:33 -07003116const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
3117 Class* declaring_class = referrer->GetDeclaringClass();
3118 DexCache* dex_cache = declaring_class->GetDexCache();
3119 const DexFile& dex_file = FindDexFile(dex_cache);
3120 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3121 return dex_file.GetShorty(method_id.proto_idx_);
3122}
3123
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003124void ClassLinker::DumpAllClasses(int flags) const {
3125 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3126 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3127 std::vector<Class*> all_classes;
3128 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003129 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003130 typedef Table::const_iterator It; // TODO: C++0x auto
3131 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3132 all_classes.push_back(it->second);
3133 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003134 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3135 all_classes.push_back(it->second);
3136 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003137 }
3138
3139 for (size_t i = 0; i < all_classes.size(); ++i) {
3140 all_classes[i]->DumpClass(std::cerr, flags);
3141 }
3142}
3143
Elliott Hughescac6cc72011-11-03 20:31:21 -07003144void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3145 MutexLock mu(classes_lock_);
3146 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3147 << classes_.size() << " allocated classes\n";
3148}
3149
Elliott Hughese27955c2011-08-26 15:21:24 -07003150size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003151 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003152 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003153}
3154
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003155pid_t ClassLinker::GetClassesLockOwner() {
3156 return classes_lock_.GetOwner();
3157}
3158
3159pid_t ClassLinker::GetDexLockOwner() {
3160 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003161}
3162
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003163void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3164 DCHECK(!init_done_);
3165
3166 DCHECK(klass != NULL);
3167 DCHECK(klass->GetClassLoader() == NULL);
3168
3169 DCHECK(class_roots_ != NULL);
3170 DCHECK(class_roots_->Get(class_root) == NULL);
3171 class_roots_->Set(class_root, klass);
3172}
3173
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003174} // namespace art