blob: 4226ea5bb6a340a37ff400442359c6c3d1061fb8 [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();
1291 return;
1292 }
1293}
1294
Brian Carlstromf615a612011-07-23 12:50:34 -07001295void ClassLinker::LoadClass(const DexFile& dex_file,
1296 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001297 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001298 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001299 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001300 CHECK(klass->GetDexCache() != NULL);
1301 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001302 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001303 CHECK(descriptor != NULL);
1304
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001305 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001306 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001307 // Make sure that none of our runtime-only flags are set.
1308 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001309 klass->SetAccessFlags(access_flags);
1310 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001311 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001312 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001313
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001314 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001315
Ian Rogers0571d352011-11-03 19:51:38 -07001316 // Load fields fields.
1317 const byte* class_data = dex_file.GetClassData(dex_class_def);
1318 if (class_data == NULL) {
1319 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001320 }
Ian Rogers0571d352011-11-03 19:51:38 -07001321 ClassDataItemIterator it(dex_file, class_data);
1322 if (it.NumStaticFields() != 0) {
1323 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1324 }
1325 if (it.NumInstanceFields() != 0) {
1326 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1327 }
1328 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1329 SirtRef<Field> sfield(AllocField());
1330 klass->SetStaticField(i, sfield.get());
1331 LoadField(dex_file, it, klass, sfield);
1332 }
1333 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1334 SirtRef<Field> ifield(AllocField());
1335 klass->SetInstanceField(i, ifield.get());
1336 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001337 }
1338
Brian Carlstromaded5f72011-10-07 17:15:04 -07001339 UniquePtr<const OatFile::OatClass> oat_class;
1340 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001341 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001342 if (oat_file != NULL) {
1343 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1344 if (oat_dex_file != NULL) {
1345 uint32_t class_def_index;
1346 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1347 CHECK(found) << descriptor;
1348 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001349 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001350 }
1351 }
1352 }
Ian Rogers0571d352011-11-03 19:51:38 -07001353 // Load methods.
1354 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001355 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001356 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001357 }
Ian Rogers0571d352011-11-03 19:51:38 -07001358 if (it.NumVirtualMethods() != 0) {
1359 // TODO: append direct methods to class object
1360 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001361 }
Ian Rogers0571d352011-11-03 19:51:38 -07001362 size_t method_index = 0;
1363 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1364 SirtRef<Method> method(AllocMethod());
1365 klass->SetDirectMethod(i, method.get());
1366 LoadMethod(dex_file, it, klass, method);
1367 if (oat_class.get() != NULL) {
1368 LinkCode(method, oat_class.get(), method_index);
1369 }
1370 method_index++;
1371 }
1372 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1373 SirtRef<Method> method(AllocMethod());
1374 klass->SetVirtualMethod(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 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001382}
1383
Ian Rogers0571d352011-11-03 19:51:38 -07001384void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1385 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001386 uint32_t field_idx = it.GetMemberIndex();
1387 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001388 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001389 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001390}
1391
Ian Rogers0571d352011-11-03 19:51:38 -07001392void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1393 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001394 uint32_t method_idx = it.GetMemberIndex();
1395 dst->SetDexMethodIndex(method_idx);
1396 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001397 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001398
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001399
1400 StringPiece method_name(dex_file.GetMethodName(method_id));
1401 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001402 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1403 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001404
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001405 if (method_name == "finalize") {
1406 // Create the prototype for a signature of "()V"
1407 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1408 if (void_string_id != NULL) {
1409 const DexFile::TypeId* void_type_id =
1410 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1411 if (void_type_id != NULL) {
1412 std::vector<uint16_t> no_args;
1413 const DexFile::ProtoId* finalizer_proto =
1414 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1415 if (finalizer_proto != NULL) {
1416 // We have the prototype in the dex file
1417 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1418 klass->SetFinalizable();
1419 } else {
1420 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1421 // The Enum class declares a "final" finalize() method to prevent subclasses from
1422 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1423 // subclasses, so we exclude it here.
1424 // We also want to avoid setting the flag on Object, where we know that finalize() is
1425 // empty.
1426 if (klass_descriptor != "Ljava/lang/Object;" &&
1427 klass_descriptor != "Ljava/lang/Enum;") {
1428 klass->SetFinalizable();
1429 }
1430 }
1431 }
1432 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001433 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001434 }
Ian Rogers0571d352011-11-03 19:51:38 -07001435 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001436 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001437
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001438 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1439 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1440 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1441 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1442 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1443 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001444
Brian Carlstrom934486c2011-07-12 23:42:50 -07001445 // TODO: check for finalize method
Brian Carlstrom934486c2011-07-12 23:42:50 -07001446}
1447
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001448void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001449 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1450 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001451}
1452
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001453void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1454 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001455 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001456 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001457}
1458
Brian Carlstromaded5f72011-10-07 17:15:04 -07001459bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001460 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001461 for (size_t i = 0; i != dex_files_.size(); ++i) {
1462 if (dex_files_[i] == &dex_file) {
1463 return true;
1464 }
1465 }
1466 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001467}
1468
Brian Carlstromaded5f72011-10-07 17:15:04 -07001469bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001470 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001471 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001472}
1473
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001474void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001475 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001476 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001477 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001478 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001479 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001480}
1481
Brian Carlstromaded5f72011-10-07 17:15:04 -07001482void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001483 {
1484 MutexLock mu(dex_lock_);
1485 if (IsDexFileRegisteredLocked(dex_file)) {
1486 return;
1487 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001488 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001489 // Don't alloc while holding the lock, since allocation may need to
1490 // suspend all threads and another thread may need the dex_lock_ to
1491 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001492 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001493 {
1494 MutexLock mu(dex_lock_);
1495 if (IsDexFileRegisteredLocked(dex_file)) {
1496 return;
1497 }
1498 RegisterDexFileLocked(dex_file, dex_cache);
1499 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001500}
1501
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001502void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001503 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001504 RegisterDexFileLocked(dex_file, dex_cache);
1505}
1506
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001507const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001508 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001509 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001510 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1511 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001512 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001513 }
1514 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001515 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001516 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001517}
1518
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001519DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001520 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001521 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001522 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001523 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001524 }
1525 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001526 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001527 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001528}
1529
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001530Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1531 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001532 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001533 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001534 CHECK(primitive_class != NULL);
1535 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001536 primitive_class->SetPrimitiveType(type);
1537 primitive_class->SetStatus(Class::kStatusInitialized);
Ian Rogers5d76c432011-10-31 21:42:49 -07001538 bool success = InsertClass(descriptor, primitive_class, false);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001539 CHECK(success) << "InitPrimitiveClass(" << descriptor << ") failed";
1540 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001541}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001542
Brian Carlstrombe977852011-07-19 14:54:54 -07001543// Create an array class (i.e. the class object for the array, not the
1544// array itself). "descriptor" looks like "[C" or "[[[[B" or
1545// "[Ljava/lang/String;".
1546//
1547// If "descriptor" refers to an array of primitives, look up the
1548// primitive type's internally-generated class object.
1549//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001550// "class_loader" is the class loader of the class that's referring to
1551// us. It's used to ensure that we're looking for the element type in
1552// the right context. It does NOT become the class loader for the
1553// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001554//
1555// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001556Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001557 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001558
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001559 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001560 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001561 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001562 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001563 return NULL;
1564 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001565
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001566 // See if the component type is already loaded. Array classes are
1567 // always associated with the class loader of their underlying
1568 // element type -- an array of Strings goes with the loader for
1569 // java/lang/String -- so we need to look for it there. (The
1570 // caller should have checked for the existence of the class
1571 // before calling here, but they did so with *their* class loader,
1572 // not the component type's loader.)
1573 //
1574 // If we find it, the caller adds "loader" to the class' initiating
1575 // loader list, which should prevent us from going through this again.
1576 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001577 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001578 // are the same, because our caller (FindClass) just did the
1579 // lookup. (Even if we get this wrong we still have correct behavior,
1580 // because we effectively do this lookup again when we add the new
1581 // class to the hash table --- necessary because of possible races with
1582 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001583 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001584 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001585 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001586 return new_class;
1587 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001588 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001589
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001590 // Fill out the fields in the Class.
1591 //
1592 // It is possible to execute some methods against arrays, because
1593 // all arrays are subclasses of java_lang_Object_, so we need to set
1594 // up a vtable. We can just point at the one in java_lang_Object_.
1595 //
1596 // Array classes are simple enough that we don't need to do a full
1597 // link step.
1598
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001599 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001600 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001601 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001602 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001603 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001604 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001605 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001606 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001607 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001608 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001609 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001610 }
1611 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001612 if (new_class.get() == NULL) {
1613 new_class.reset(AllocClass(sizeof(Class)));
1614 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001615 return NULL;
1616 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001617 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001618 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001619 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001620 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001621 new_class->SetSuperClass(java_lang_Object);
1622 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001623 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001624 new_class->SetClassLoader(component_type->GetClassLoader());
1625 new_class->SetStatus(Class::kStatusInitialized);
1626 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001627 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001628
1629
1630 // All arrays have java/lang/Cloneable and java/io/Serializable as
1631 // interfaces. We need to set that up here, so that stuff like
1632 // "instanceof" works right.
1633 //
1634 // Note: The GC could run during the call to FindSystemClass,
1635 // so we need to make sure the class object is GC-valid while we're in
1636 // there. Do this by clearing the interface list so the GC will just
1637 // think that the entries are null.
1638
1639
1640 // Use the single, global copies of "interfaces" and "iftable"
1641 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001642 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001643 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001644
1645 // Inherit access flags from the component type. Arrays can't be
1646 // used as a superclass or interface, so we want to add "final"
1647 // and remove "interface".
1648 //
1649 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001650 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001651 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001652 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1653 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001654
Ian Rogers5d76c432011-10-31 21:42:49 -07001655 if (InsertClass(descriptor, new_class.get(), false)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001656 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001657 }
1658 // Another thread must have loaded the class after we
1659 // started but before we finished. Abandon what we've
1660 // done.
1661 //
1662 // (Yes, this happens.)
1663
1664 // Grab the winning class.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001665 Class* other_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001666 DCHECK(other_class != NULL);
1667 return other_class;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001668}
1669
1670Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001671 switch (Primitive::GetType(type)) {
1672 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001673 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001674 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001675 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001676 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001677 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001678 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001679 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001680 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001681 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001682 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001683 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001684 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001685 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001686 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001687 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001688 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001689 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001690 case Primitive::kPrimNot:
1691 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001692 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001693 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001694 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001695 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001696}
1697
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001698bool ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001699 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001700 DexCache* dex_cache = klass->GetDexCache();
1701 std::string source;
1702 if (dex_cache != NULL) {
1703 source += " from ";
1704 source += dex_cache->GetLocation()->ToModifiedUtf8();
1705 }
1706 LOG(INFO) << "Loaded class " << descriptor << source;
1707 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001708 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001709 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001710 Table::iterator it;
1711 if (image_class) {
1712 // TODO: sanity check there's no match in classes_
1713 it = image_classes_.insert(std::make_pair(hash, klass));
1714 } else {
1715 // TODO: sanity check there's no match in image_classes_
1716 it = classes_.insert(std::make_pair(hash, klass));
1717 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001718 return ((*it).second == klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001719}
1720
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001721bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1722 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001723 MutexLock mu(classes_lock_);
1724 typedef Table::const_iterator It; // TODO: C++0x auto
1725 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001726 ClassHelper kh;
Brian Carlstromae826982011-11-09 01:33:42 -08001727 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
1728 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001729 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001730 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001731 classes_.erase(it);
1732 return true;
1733 }
1734 }
1735 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1736 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001737 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001738 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001739 image_classes_.erase(it);
1740 return true;
1741 }
1742 }
1743 return false;
1744}
1745
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001746Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1747 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001748 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001749 typedef Table::const_iterator It; // TODO: C++0x auto
Ian Rogers5d76c432011-10-31 21:42:49 -07001750 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001751 ClassHelper kh(NULL, this);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001752 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001753 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001754 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001755 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001756 return klass;
1757 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001758 }
Ian Rogers5d76c432011-10-31 21:42:49 -07001759 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
1760 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001761 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001762 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001763 return klass;
1764 }
1765 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001766 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001767}
1768
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001769void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001770 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001771 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001772 MutexLock mu(classes_lock_);
1773 typedef Table::const_iterator It; // TODO: C++0x auto
1774 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001775 ClassHelper kh(NULL, this);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001776 for (It it = classes_.find(hash), end = classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001777 Class* klass = it->second;
1778 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001779 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001780 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001781 }
1782 }
1783 for (It it = image_classes_.find(hash), end = image_classes_.end(); it != end; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001784 Class* klass = it->second;
1785 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001786 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001787 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001788 }
1789 }
1790}
1791
jeffhao98eacac2011-09-14 16:11:53 -07001792void ClassLinker::VerifyClass(Class* klass) {
1793 if (klass->IsVerified()) {
1794 return;
1795 }
1796
1797 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved);
jeffhao98eacac2011-09-14 16:11:53 -07001798 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001799
Ian Rogersd81871c2011-10-03 13:57:23 -07001800 if (verifier::DexVerifier::VerifyClass(klass)) {
jeffhao5cfd6fb2011-09-27 13:54:29 -07001801 klass->SetStatus(Class::kStatusVerified);
1802 } else {
1803 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001804 Thread* self = Thread::Current();
1805 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
1806 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001807 PrettyDescriptor(klass).c_str());
jeffhao5cfd6fb2011-09-27 13:54:29 -07001808 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001809 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001810 }
jeffhao98eacac2011-09-14 16:11:53 -07001811}
1812
Ian Rogersc2b44472011-12-14 21:17:17 -08001813static void CheckProxyConstructor(Method* constructor);
1814static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
1815
Jesse Wilson95caa792011-10-12 18:14:17 -04001816Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001817 ClassLoader* loader, ObjectArray<Method>* methods,
1818 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08001819 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001820 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08001821 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001822 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001823 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001824 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001825 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001826 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07001827 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001828 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08001829
1830 klass->SetStatus(Class::kStatusIdx);
1831
1832 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
1833
1834 // Create static field that holds throws, instance fields are inherited
1835 klass->SetSFields(AllocObjectArray<Field>(1));
1836 SirtRef<Field> sfield(AllocField());
1837 klass->SetStaticField(0, sfield.get());
1838 sfield->SetDexFieldIndex(-1);
1839 sfield->SetDeclaringClass(klass.get());
1840 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001841
Ian Rogers466bb252011-10-14 03:29:56 -07001842 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001843 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001844 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04001845
Ian Rogers466bb252011-10-14 03:29:56 -07001846 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001847 size_t num_virtual_methods = methods->GetLength();
1848 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1849 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001850 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001851 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04001852 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001853
1854 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1855 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
1856 DCHECK(!Thread::Current()->IsExceptionPending());
1857
1858 // Link the fields and virtual methods, creating vtable and iftables
1859 if (!LinkClass(klass, interfaces)) {
Jesse Wilson95caa792011-10-12 18:14:17 -04001860 DCHECK(Thread::Current()->IsExceptionPending());
1861 return NULL;
1862 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001863 sfield->SetObject(NULL, throws); // initialize throws field
1864 klass->SetStatus(Class::kStatusInitialized);
1865
1866 // sanity checks
1867#ifndef NDEBUG
1868 bool debug = true;
1869#else
1870 bool debug = false;
1871#endif
1872 if (debug) {
1873 CHECK(klass->GetIFields() == NULL);
1874 CheckProxyConstructor(klass->GetDirectMethod(0));
1875 for (size_t i = 0; i < num_virtual_methods; ++i) {
1876 SirtRef<Method> prototype(methods->Get(i));
1877 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
1878 }
Brian Carlstrom89521892011-12-07 22:05:07 -08001879 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08001880 throws_field_name += name->ToModifiedUtf8();
1881 throws_field_name += ".throws";
1882 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
1883
1884 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
1885 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
1886 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001887 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04001888}
1889
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001890std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
1891 DCHECK(proxy_class->IsProxyClass());
1892 String* name = proxy_class->GetName();
1893 DCHECK(name != NULL);
1894 return DotToDescriptor(name->ToModifiedUtf8().c_str());
1895}
1896
1897
1898Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07001899 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07001900 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04001901 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07001902 Method* proxy_constructor = proxy_direct_methods->Get(2);
1903 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
1904 // code_ too)
1905 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
1906 // Make this constructor public and fix the class to be our Proxy version
1907 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001908 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08001909 return constructor;
1910}
1911
1912static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07001913 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001914 MethodHelper mh(constructor);
1915 CHECK_STREQ(mh.GetName(), "<init>");
1916 CHECK(mh.GetSignature() == "(Ljava/lang/reflect/InvocationHandler;)V");
Ian Rogers466bb252011-10-14 03:29:56 -07001917 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04001918}
1919
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001920Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
1921 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
1922 // prototype method
1923 prototype->GetDexCacheResolvedMethods()->Set(prototype->GetDexMethodIndex(), prototype.get());
1924 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07001925 // as necessary
1926 Method* method = down_cast<Method*>(prototype->Clone());
1927
1928 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
1929 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001930 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07001931 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001932
Ian Rogers466bb252011-10-14 03:29:56 -07001933 // At runtime the method looks like a reference and argument saving method, clone the code
1934 // related parameters from this method.
1935 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
1936 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
1937 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
1938 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
1939 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogersc2b44472011-12-14 21:17:17 -08001940 return method;
1941}
Jesse Wilson95caa792011-10-12 18:14:17 -04001942
Ian Rogersc2b44472011-12-14 21:17:17 -08001943static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07001944 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001945 CHECK(!prototype->IsFinal());
1946 CHECK(method->IsFinal());
1947 CHECK(!method->IsAbstract());
1948 MethodHelper mh(method);
1949 const char* method_name = mh.GetName();
1950 const char* method_shorty = mh.GetShorty();
1951 Class* method_return = mh.GetReturnType();
1952
1953 mh.ChangeMethod(prototype.get());
1954
1955 CHECK_STREQ(mh.GetName(), method_name);
1956 CHECK_STREQ(mh.GetShorty(), method_shorty);
Ian Rogers466bb252011-10-14 03:29:56 -07001957
1958 // More complex sanity - via dex cache
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001959 CHECK_EQ(mh.GetReturnType(), method_return);
Jesse Wilson95caa792011-10-12 18:14:17 -04001960}
1961
Brian Carlstrom25c33252011-09-18 15:58:35 -07001962bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001963 CHECK(klass->IsResolved() || klass->IsErroneous())
1964 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001965
Carl Shapirob5573532011-07-12 18:22:59 -07001966 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001967
Brian Carlstrom25c33252011-09-18 15:58:35 -07001968 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001969 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001970 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001971 ObjectLock lock(klass);
1972
Brian Carlstromd1422f82011-09-28 11:37:09 -07001973 if (klass->GetStatus() == Class::kStatusInitialized) {
1974 return true;
1975 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001976
Brian Carlstromd1422f82011-09-28 11:37:09 -07001977 if (klass->IsErroneous()) {
1978 ThrowEarlierClassFailure(klass);
1979 return false;
1980 }
1981
1982 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07001983 VerifyClass(klass);
1984 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08001985 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001986 return false;
1987 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001988 }
1989
Brian Carlstrom25c33252011-09-18 15:58:35 -07001990 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
1991 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07001992 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers595799e2012-01-11 17:32:51 -08001993 // don't bother going to kStatusInitializing. We return true to maintain
1994 // the invariant that a false result implies there is a pending exception.
1995 return true;
Brian Carlstrom25c33252011-09-18 15:58:35 -07001996 }
1997
Brian Carlstromd1422f82011-09-28 11:37:09 -07001998 // If the class is kStatusInitializing, either this thread is
1999 // initializing higher up the stack or another thread has beat us
2000 // to initializing and we need to wait. Either way, this
2001 // invocation of InitializeClass will not be responsible for
2002 // running <clinit> and will return.
2003 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002004 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002005 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002006 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002007 return true;
2008 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002009 // No. That's fine. Wait for another thread to finish initializing.
2010 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002011 }
2012
2013 if (!ValidateSuperClassDescriptors(klass)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002014 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002015 klass->SetStatus(Class::kStatusError);
2016 return false;
2017 }
2018
Brian Carlstromd1422f82011-09-28 11:37:09 -07002019 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002020
Elliott Hughesdcc24742011-09-07 14:02:44 -07002021 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002022 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002023 }
2024
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002025 uint64_t t0 = NanoTime();
2026
Brian Carlstrom25c33252011-09-18 15:58:35 -07002027 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002028 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002029 return false;
2030 }
2031
2032 InitializeStaticFields(klass);
2033
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002034 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002035 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002036 }
2037
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002038 uint64_t t1 = NanoTime();
2039
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002040 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002041 {
2042 ObjectLock lock(klass);
2043
2044 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002045 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002046 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002047 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002048 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002049 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2050 RuntimeStats* thread_stats = self->GetStats();
2051 ++global_stats->class_init_count;
2052 ++thread_stats->class_init_count;
2053 global_stats->class_init_time_ns += (t1 - t0);
2054 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002055 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002056 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002057 ClassHelper kh(klass);
2058 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002059 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002060 }
2061 lock.NotifyAll();
2062 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002063 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002064}
2065
Brian Carlstromd1422f82011-09-28 11:37:09 -07002066bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2067 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002068 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002069 lock.Wait();
2070
2071 // When we wake up, repeat the test for init-in-progress. If
2072 // there's an exception pending (only possible if
2073 // "interruptShouldThrow" was set), bail out.
2074 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002075 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002076 klass->SetStatus(Class::kStatusError);
2077 return false;
2078 }
2079 // Spurious wakeup? Go back to waiting.
2080 if (klass->GetStatus() == Class::kStatusInitializing) {
2081 continue;
2082 }
2083 if (klass->IsErroneous()) {
2084 // The caller wants an exception, but it was thrown in a
2085 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002086 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002087 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002088 return false;
2089 }
2090 if (klass->IsInitialized()) {
2091 return true;
2092 }
2093 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2094 }
2095 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2096}
2097
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002098bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2099 if (klass->IsInterface()) {
2100 return true;
2101 }
2102 // begin with the methods local to the superclass
2103 if (klass->HasSuperClass() &&
2104 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2105 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002106 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2107 const Method* method = klass->GetVTable()->Get(i);
2108 if (method != super->GetVTable()->Get(i) &&
2109 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002110 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2111 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2112 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002113 return false;
2114 }
2115 }
2116 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002117 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2118 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2119 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002120 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2121 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002122 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002123 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2124 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002125 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2126 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2127 PrettyMethod(method).c_str(),
2128 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002129 return false;
2130 }
2131 }
2132 }
2133 }
2134 return true;
2135}
2136
Ian Rogers595799e2012-01-11 17:32:51 -08002137// Returns true if classes referenced by the signature of the method are the
2138// same classes in klass1 as they are in klass2.
2139bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2140 const Class* klass1,
2141 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002142 if (klass1 == klass2) {
2143 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002144 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002145 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002146 const DexFile::ProtoId& proto_id =
2147 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002148 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2149 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002150 if (descriptor == NULL) {
2151 break;
2152 }
2153 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2154 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002155 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002156 return false;
2157 }
2158 }
2159 }
2160 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002161 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002162 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002163 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002164 return false;
2165 }
2166 }
2167 return true;
2168}
2169
Ian Rogers595799e2012-01-11 17:32:51 -08002170// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2171bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2172 const Class* klass1,
2173 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002174 CHECK(descriptor != NULL);
2175 CHECK(klass1 != NULL);
2176 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002177 if (klass1 == klass2) {
2178 return true;
2179 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002180 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002181 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002182 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002183 }
Ian Rogers595799e2012-01-11 17:32:51 -08002184 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2185 if (found2 == NULL) {
2186 Thread::Current()->ClearException();
2187 }
2188 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002189}
2190
Brian Carlstrom25c33252011-09-18 15:58:35 -07002191bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002192 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002193 if (!klass->IsInterface() && klass->HasSuperClass()) {
2194 Class* super_class = klass->GetSuperClass();
2195 if (super_class->GetStatus() != Class::kStatusInitialized) {
2196 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002197 Thread* self = Thread::Current();
2198 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002199 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002200 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002201 // TODO: check for a pending exception
2202 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002203 if (!can_run_clinit) {
2204 // Don't set status to error when we can't run <clinit>.
2205 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing);
2206 klass->SetStatus(Class::kStatusVerified);
2207 return false;
2208 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002209 klass->SetStatus(Class::kStatusError);
2210 klass->NotifyAll();
2211 return false;
2212 }
2213 }
2214 }
2215 return true;
2216}
2217
Brian Carlstrom25c33252011-09-18 15:58:35 -07002218bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002219 CHECK(c != NULL);
2220 if (c->IsInitialized()) {
2221 return true;
2222 }
2223
Elliott Hughes5f791332011-09-15 17:45:30 -07002224 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002225 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002226 bool success = InitializeClass(c, can_run_clinit);
2227 if (!success) {
2228 CHECK(self->IsExceptionPending());
2229 }
2230 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002231}
2232
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002233void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002234 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002235 const ClassLoader* cl = c->GetClassLoader();
2236 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002237 ClassDataItemIterator it(dex_file, class_data);
2238 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2239 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002240 }
2241}
2242
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002243void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002244 size_t num_static_fields = klass->NumStaticFields();
2245 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002246 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002247 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002248 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002249 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002250 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002251 return;
2252 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002253 ClassHelper kh(klass);
2254 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002255 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002256 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002257 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002258
Ian Rogers0571d352011-11-03 19:51:38 -07002259 if (it.HasNext()) {
2260 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2261 std::map<uint32_t, Field*> field_map;
2262 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2263 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2264 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002265 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002266 }
2267}
2268
Ian Rogersc2b44472011-12-14 21:17:17 -08002269bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002270 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002271 if (!LinkSuperClass(klass)) {
2272 return false;
2273 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002274 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002275 return false;
2276 }
2277 if (!LinkInstanceFields(klass)) {
2278 return false;
2279 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002280 if (!LinkStaticFields(klass)) {
2281 return false;
2282 }
2283 CreateReferenceInstanceOffsets(klass);
2284 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002285 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2286 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002287 return true;
2288}
2289
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002290bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002291 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002292 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2293 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002294 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002295 uint16_t super_class_idx = class_def->superclass_idx_;
2296 if (super_class_idx != DexFile::kDexNoIndex16) {
2297 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002298 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002299 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002300 return false;
2301 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002302 // Verify
2303 if (!klass->CanAccess(super_class)) {
2304 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2305 "Class %s extended by class %s is inaccessible",
2306 PrettyDescriptor(super_class).c_str(),
2307 PrettyDescriptor(klass.get()).c_str());
2308 return false;
2309 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002310 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002311 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002312 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2313 if (interfaces != NULL) {
2314 for (size_t i = 0; i < interfaces->Size(); i++) {
2315 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2316 Class* interface = ResolveType(dex_file, idx, klass.get());
2317 if (interface == NULL) {
2318 DCHECK(Thread::Current()->IsExceptionPending());
2319 return false;
2320 }
2321 // Verify
2322 if (!klass->CanAccess(interface)) {
2323 // TODO: the RI seemed to ignore this in my testing.
2324 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2325 "Interface %s implemented by class %s is inaccessible",
2326 PrettyDescriptor(interface).c_str(),
2327 PrettyDescriptor(klass.get()).c_str());
2328 return false;
2329 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002330 }
2331 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002332 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002333 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002334 return true;
2335}
2336
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002337bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002338 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002339 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002340 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002341 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002342 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002343 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002344 return false;
2345 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002346 return true;
2347 }
2348 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002349 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002350 return false;
2351 }
2352 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002353 if (super->IsFinal() || super->IsInterface()) {
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002354 Thread* thread = Thread::Current();
2355 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002356 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002357 PrettyDescriptor(super).c_str(),
2358 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002359 super->IsFinal() ? "declared final" : "an interface");
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002360 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002361 return false;
2362 }
2363 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002364 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002365 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002366 PrettyDescriptor(super).c_str(),
2367 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002368 return false;
2369 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002370
2371 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2372 if (super->IsFinalizable()) {
2373 klass->SetFinalizable();
2374 }
2375
Elliott Hughes2da50362011-10-10 16:57:08 -07002376 // Inherit reference flags (if any) from the superclass.
2377 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2378 if (reference_flags != 0) {
2379 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2380 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002381 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002382 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002383 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002384 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002385 return false;
2386 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002387
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002388#ifndef NDEBUG
2389 // Ensure super classes are fully resolved prior to resolving fields..
2390 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002391 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002392 super = super->GetSuperClass();
2393 }
2394#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002395 return true;
2396}
2397
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002398// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002399bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002400 if (klass->IsInterface()) {
2401 // No vtable.
2402 size_t count = klass->NumVirtualMethods();
2403 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002404 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002405 return false;
2406 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002407 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002408 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002409 }
jeffhaobdb76512011-09-07 11:43:16 -07002410 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002411 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002412 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002413 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002414 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002415 }
2416 return true;
2417}
2418
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002419bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002420 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002421 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2422 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002423 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002424 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002425 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002426 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002427 MethodHelper local_mh(NULL, this);
2428 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002429 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002430 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002431 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002432 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002433 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002434 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002435 super_mh.ChangeMethod(super_method);
2436 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002437 // Verify
2438 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002439 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002440 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002441 PrettyDescriptor(klass.get()).c_str(),
2442 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002443 return false;
2444 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002445 vtable->Set(j, local_method);
2446 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002447 break;
2448 }
2449 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002450 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002451 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002452 vtable->Set(actual_count, local_method);
2453 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002454 actual_count += 1;
2455 }
2456 }
2457 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002458 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002459 return false;
2460 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002461 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002462 CHECK_LE(actual_count, max_count);
2463 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002464 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002465 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002466 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002467 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002468 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002469 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002470 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002471 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002472 return false;
2473 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002474 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002475 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002476 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2477 vtable->Set(i, virtual_method);
2478 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002479 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002480 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002481 }
2482 return true;
2483}
2484
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002485bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002486 size_t super_ifcount;
2487 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002488 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002489 } else {
2490 super_ifcount = 0;
2491 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002492 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002493 ClassHelper kh(klass.get(), this);
2494 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2495 ifcount += num_interfaces;
2496 for (size_t i = 0; i < num_interfaces; i++) {
2497 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2498 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002499 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002500 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002501 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002502 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002503 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002504 return true;
2505 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002506 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002507 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002508 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2509 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002510 Class* super_interface = super_iftable->Get(i)->GetInterface();
2511 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002512 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002513 }
2514 // Flatten the interface inheritance hierarchy.
2515 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002516 for (size_t i = 0; i < num_interfaces; i++) {
2517 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002518 DCHECK(interface != NULL);
2519 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002520 ClassHelper ih(interface);
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002521 Thread* thread = Thread::Current();
2522 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002523 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002524 PrettyDescriptor(klass.get()).c_str(),
2525 PrettyDescriptor(ih.GetDescriptor()).c_str());
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002526 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002527 return false;
2528 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002529 // Check if interface is already in iftable
2530 bool duplicate = false;
2531 for (size_t j = 0; j < idx; j++) {
2532 Class* existing_interface = iftable->Get(j)->GetInterface();
2533 if (existing_interface == interface) {
2534 duplicate = true;
2535 break;
2536 }
2537 }
2538 if (!duplicate) {
2539 // Add this non-duplicate interface.
2540 iftable->Set(idx++, AllocInterfaceEntry(interface));
2541 // Add this interface's non-duplicate super-interfaces.
2542 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2543 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2544 bool super_duplicate = false;
2545 for (size_t k = 0; k < idx; k++) {
2546 Class* existing_interface = iftable->Get(k)->GetInterface();
2547 if (existing_interface == super_interface) {
2548 super_duplicate = true;
2549 break;
2550 }
2551 }
2552 if (!super_duplicate) {
2553 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2554 }
2555 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002556 }
2557 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002558 // Shrink iftable in case duplicates were found
2559 if (idx < ifcount) {
2560 iftable.reset(iftable->CopyOf(idx));
2561 ifcount = idx;
2562 } else {
2563 CHECK_EQ(idx, ifcount);
2564 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002565 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002566
2567 // If we're an interface, we don't need the vtable pointers, so we're done.
2568 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002569 return true;
2570 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002571 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002572 MethodHelper vtable_mh(NULL, this);
2573 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002574 for (size_t i = 0; i < ifcount; ++i) {
2575 InterfaceEntry* interface_entry = iftable->Get(i);
2576 Class* interface = interface_entry->GetInterface();
2577 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2578 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002579 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002580 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2581 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002582 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002583 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002584 // For each method listed in the interface's method list, find the
2585 // matching method in our class's method list. We want to favor the
2586 // subclass over the superclass, which just requires walking
2587 // back from the end of the vtable. (This only matters if the
2588 // superclass defines a private method and this class redefines
2589 // it -- otherwise it would use the same vtable slot. In .dex files
2590 // those don't end up in the virtual method table, so it shouldn't
2591 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002592 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2593 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002594 vtable_mh.ChangeMethod(vtable_method);
2595 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002596 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002597 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002598 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002599 return false;
2600 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002601 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002602 break;
2603 }
2604 }
2605 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002606 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002607 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002608 Method* mir_method = miranda_list[mir];
2609 vtable_mh.ChangeMethod(mir_method);
2610 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002611 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002612 break;
2613 }
2614 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002615 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002616 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002617 miranda_method.reset(AllocMethod());
2618 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2619 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002620 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002621 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002622 }
2623 }
2624 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002625 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002626 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002627 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002628 klass->SetVirtualMethods((old_method_count == 0)
2629 ? AllocObjectArray<Method>(new_method_count)
2630 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002631
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002632 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2633 CHECK(vtable != NULL);
2634 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002635 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002636 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002637 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002638 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002639 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002640 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2641 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2642 klass->SetVirtualMethod(old_method_count + i, method);
2643 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002644 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002645 // TODO: do not assign to the vtable field until it is fully constructed.
2646 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002647 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002648
2649 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2650 for (int i = 0; i < vtable->GetLength(); ++i) {
2651 CHECK(vtable->Get(i) != NULL);
2652 }
2653
2654// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2655
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002656 return true;
2657}
2658
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002659bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2660 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002661 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002662}
2663
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002664bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2665 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002666 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002667 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002668 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002669 return success;
2670}
2671
Brian Carlstromdbc05252011-09-09 01:59:59 -07002672struct LinkFieldsComparator {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002673 LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002674 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002675 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002676 fh_->ChangeField(field1);
2677 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
2678 fh_->ChangeField(field2);
2679 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002680 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2681 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2682 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2683 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002684 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2685 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2686 if (order1 != order2) {
2687 return order1 < order2;
2688 }
2689
2690 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002691 fh_->ChangeField(field1);
2692 StringPiece name1(fh_->GetName());
2693 fh_->ChangeField(field2);
2694 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07002695 return name1 < name2;
2696 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002697
2698 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002699};
2700
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002701bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002702 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002703 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002704
2705 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002706 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002707
2708 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002709 size_t size;
2710 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002711 if (is_static) {
2712 size = klass->GetClassSize();
2713 field_offset = Class::FieldsOffset();
2714 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002715 Class* super_class = klass->GetSuperClass();
2716 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002717 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002718 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002719 }
2720 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002721 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002722
Brian Carlstromdbc05252011-09-09 01:59:59 -07002723 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002724
Brian Carlstromdbc05252011-09-09 01:59:59 -07002725 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002726 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002727 std::deque<Field*> grouped_and_sorted_fields;
2728 for (size_t i = 0; i < num_fields; i++) {
2729 grouped_and_sorted_fields.push_back(fields->Get(i));
2730 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002731 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002732 std::sort(grouped_and_sorted_fields.begin(),
2733 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002734 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002735
2736 // References should be at the front.
2737 size_t current_field = 0;
2738 size_t num_reference_fields = 0;
2739 for (; current_field < num_fields; current_field++) {
2740 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002741 fh.ChangeField(field);
2742 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002743 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002744 if (isPrimitive) {
2745 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002746 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002747 grouped_and_sorted_fields.pop_front();
2748 num_reference_fields++;
2749 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002750 field->SetOffset(field_offset);
2751 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002752 }
2753
2754 // Now we want to pack all of the double-wide fields together. If
2755 // we're not aligned, though, we want to shuffle one 32-bit field
2756 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002757 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002758 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2759 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002760 fh.ChangeField(field);
2761 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002762 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2763 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002764 continue;
2765 }
2766 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002767 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002768 // drop the consumed field
2769 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2770 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002771 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002772 // whether we found a 32-bit field for padding or not, we advance
2773 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002774 }
2775
2776 // Alignment is good, shuffle any double-wide fields forward, and
2777 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002778 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002779 while (!grouped_and_sorted_fields.empty()) {
2780 Field* field = grouped_and_sorted_fields.front();
2781 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002782 fh.ChangeField(field);
2783 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002784 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002785 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002786 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002787 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002788 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002789 ? sizeof(uint64_t)
2790 : sizeof(uint32_t)));
2791 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002792 }
2793
Elliott Hughesadb460d2011-10-05 17:02:34 -07002794 // 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 -08002795 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
2796 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002797 // We know there are no non-reference fields in the Reference classes, and we know
2798 // that 'referent' is alphabetically last, so this is easy...
2799 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002800 fh.ChangeField(fields->Get(num_fields - 1));
2801 StringPiece name(fh.GetName());
2802 CHECK(name == "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07002803 --num_reference_fields;
2804 }
2805
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002806#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002807 // Make sure that all reference fields appear before
2808 // non-reference fields, and all double-wide fields are aligned.
2809 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002810 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002811 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002812 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002813 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002814 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002815 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002816 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2817 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002818 fh.ChangeField(field);
2819 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002820 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002821 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002822 is_primitive = true; // We lied above, so we have to expect a lie here.
2823 }
2824 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002825 if (!seen_non_ref) {
2826 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002827 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002828 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002829 } else {
2830 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002831 }
2832 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002833 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002834 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002835 }
2836#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002837 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002838 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002839 if (is_static) {
2840 klass->SetNumReferenceStaticFields(num_reference_fields);
2841 klass->SetClassSize(size);
2842 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002843 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002844 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002845 klass->SetObjectSize(size);
2846 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002847 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002848 return true;
2849}
2850
2851// Set the bitmap of reference offsets, refOffsets, from the ifields
2852// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002853void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002854 uint32_t reference_offsets = 0;
2855 Class* super_class = klass->GetSuperClass();
2856 if (super_class != NULL) {
2857 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002858 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002859 if (reference_offsets == CLASS_WALK_SUPER) {
2860 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002861 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002862 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002863 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002864 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002865}
2866
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002867void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002868 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002869}
2870
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002871void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002872 uint32_t reference_offsets) {
2873 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002874 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
2875 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002876 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002877 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002878 // All of the fields that contain object references are guaranteed
2879 // to be at the beginning of the fields list.
2880 for (size_t i = 0; i < num_reference_fields; ++i) {
2881 // Note that byte_offset is the offset from the beginning of
2882 // object, not the offset into instance data
2883 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002884 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002885 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
2886 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
2887 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002888 CHECK_NE(new_bit, 0U);
2889 reference_offsets |= new_bit;
2890 } else {
2891 reference_offsets = CLASS_WALK_SUPER;
2892 break;
2893 }
2894 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002895 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002896 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002897 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002898 } else {
2899 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002900 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002901}
2902
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002903String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07002904 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002905 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002906 if (resolved != NULL) {
2907 return resolved;
2908 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002909 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
2910 int32_t utf16_length = dex_file.GetStringLength(string_id);
2911 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07002912 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002913 dex_cache->SetResolvedString(string_idx, string);
2914 return string;
2915}
2916
2917Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002918 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002919 DexCache* dex_cache,
2920 const ClassLoader* class_loader) {
2921 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002922 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07002923 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002924 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002925 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05002926 // TODO: we used to throw here if resolved's class loader was not the
2927 // boot class loader. This was to permit different classes with the
2928 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002929 dex_cache->SetResolvedType(type_idx, resolved);
2930 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08002931 CHECK(Thread::Current()->IsExceptionPending())
2932 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002933 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002934 }
2935 return resolved;
2936}
2937
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002938Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
2939 uint32_t method_idx,
2940 DexCache* dex_cache,
2941 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002942 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002943 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
2944 if (resolved != NULL) {
2945 return resolved;
2946 }
2947 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
2948 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
2949 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07002950 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002951 return NULL;
2952 }
2953
Ian Rogers0571d352011-11-03 19:51:38 -07002954 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
2955 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002956 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002957 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07002958 } else if (klass->IsInterface()) {
2959 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002960 } else {
2961 resolved = klass->FindVirtualMethod(name, signature);
2962 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002963 if (resolved != NULL) {
2964 dex_cache->SetResolvedMethod(method_idx, resolved);
2965 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08002966 ThrowNoSuchMethodError(is_direct, klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002967 }
2968 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002969}
2970
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002971Field* ClassLinker::ResolveField(const DexFile& dex_file,
2972 uint32_t field_idx,
2973 DexCache* dex_cache,
2974 const ClassLoader* class_loader,
2975 bool is_static) {
2976 Field* resolved = dex_cache->GetResolvedField(field_idx);
2977 if (resolved != NULL) {
2978 return resolved;
2979 }
2980 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
2981 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
2982 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08002983 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002984 return NULL;
2985 }
2986
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002987 const char* name = dex_file.GetFieldName(field_id);
2988 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002989 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002990 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002991 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002992 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07002993 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002994 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002995 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002996 } else {
Ian Rogersb067ac22011-12-13 18:05:09 -08002997 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
2998 }
2999 return resolved;
3000}
3001
3002Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3003 uint32_t field_idx,
3004 DexCache* dex_cache,
3005 const ClassLoader* class_loader) {
3006 Field* resolved = dex_cache->GetResolvedField(field_idx);
3007 if (resolved != NULL) {
3008 return resolved;
3009 }
3010 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3011 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3012 if (klass == NULL) {
3013 DCHECK(Thread::Current()->IsExceptionPending());
3014 return NULL;
3015 }
3016
3017 const char* name = dex_file.GetFieldName(field_id);
3018 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3019 resolved = klass->FindField(name, type);
3020 if (resolved != NULL) {
3021 dex_cache->SetResolvedField(field_idx, resolved);
3022 } else {
3023 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003024 }
3025 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003026}
3027
Ian Rogersad25ac52011-10-04 19:13:33 -07003028const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
3029 Class* declaring_class = referrer->GetDeclaringClass();
3030 DexCache* dex_cache = declaring_class->GetDexCache();
3031 const DexFile& dex_file = FindDexFile(dex_cache);
3032 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3033 return dex_file.GetShorty(method_id.proto_idx_);
3034}
3035
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003036void ClassLinker::DumpAllClasses(int flags) const {
3037 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3038 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3039 std::vector<Class*> all_classes;
3040 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003041 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003042 typedef Table::const_iterator It; // TODO: C++0x auto
3043 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3044 all_classes.push_back(it->second);
3045 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003046 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3047 all_classes.push_back(it->second);
3048 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003049 }
3050
3051 for (size_t i = 0; i < all_classes.size(); ++i) {
3052 all_classes[i]->DumpClass(std::cerr, flags);
3053 }
3054}
3055
Elliott Hughescac6cc72011-11-03 20:31:21 -07003056void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3057 MutexLock mu(classes_lock_);
3058 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3059 << classes_.size() << " allocated classes\n";
3060}
3061
Elliott Hughese27955c2011-08-26 15:21:24 -07003062size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003063 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003064 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003065}
3066
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003067pid_t ClassLinker::GetClassesLockOwner() {
3068 return classes_lock_.GetOwner();
3069}
3070
3071pid_t ClassLinker::GetDexLockOwner() {
3072 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003073}
3074
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003075void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3076 DCHECK(!init_done_);
3077
3078 DCHECK(klass != NULL);
3079 DCHECK(klass->GetClassLoader() == NULL);
3080
3081 DCHECK(class_roots_ != NULL);
3082 DCHECK(class_roots_->Get(class_root) == NULL);
3083 class_roots_->Set(class_root, klass);
3084}
3085
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003086} // namespace art