blob: 5cd300e76b147e54bc10422a6d62fca189913c89 [file] [log] [blame]
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001// Copyright 2011 Google Inc. All Rights Reserved.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004
Brian Carlstromd601af82012-01-06 10:15:19 -08005#include <fcntl.h>
6#include <sys/file.h>
7#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -08008#include <sys/types.h>
9#include <sys/wait.h>
10
Brian Carlstromdbc05252011-09-09 01:59:59 -070011#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070012#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070013#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070014#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070015
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070016#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070017#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080018#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070019#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070020#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070021#include "dex_verifier.h"
22#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070023#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070024#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070025#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070026#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080028#include "object_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070029#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070030#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070031#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070032#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070033#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070034#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070036#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070037#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070038
39namespace art {
40
Elliott Hughes4a2b4172011-09-20 17:08:25 -070041namespace {
42
Elliott Hughes362f9bc2011-10-17 18:56:41 -070043void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070044void ThrowNoClassDefFoundError(const char* fmt, ...) {
45 va_list args;
46 va_start(args, fmt);
47 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
48 va_end(args);
49}
50
Elliott Hughes362f9bc2011-10-17 18:56:41 -070051void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070052void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070053 va_list args;
54 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070055 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070056 va_end(args);
57}
58
Elliott Hughes362f9bc2011-10-17 18:56:41 -070059void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070060void ThrowLinkageError(const char* fmt, ...) {
61 va_list args;
62 va_start(args, fmt);
63 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
64 va_end(args);
65}
66
Ian Rogers9f1ab122011-12-12 08:52:43 -080067void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
68 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080069 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070070 std::ostringstream msg;
Ian Rogers9f1ab122011-12-12 08:52:43 -080071 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << "." << signature
72 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080073 std::string location(kh.GetLocation());
74 if (!location.empty()) {
75 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070076 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070077 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070078}
79
Ian Rogersb067ac22011-12-13 18:05:09 -080080void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers9f1ab122011-12-12 08:52:43 -080081 const StringPiece& name) {
82 ClassHelper kh(c);
83 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -080084 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080085 << " in class " << kh.GetDescriptor() << " or its superclasses";
86 std::string location(kh.GetLocation());
87 if (!location.empty()) {
88 msg << " (defined in " << location << ")";
89 }
90 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
91}
92
Ian Rogerscab01012012-01-10 17:35:46 -080093void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
94void ThrowNullPointerException(const char* fmt, ...) {
95 va_list args;
96 va_start(args, fmt);
97 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
98 va_end(args);
99}
100
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700101void ThrowEarlierClassFailure(Class* c) {
102 /*
103 * The class failed to initialize on a previous attempt, so we want to throw
104 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
105 * failed in verification, in which case v2 5.4.1 says we need to re-throw
106 * the previous error.
107 */
108 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
109
110 if (c->GetVerifyErrorClass() != NULL) {
111 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800112 ClassHelper ve_ch(c->GetVerifyErrorClass());
113 std::string error_descriptor(ve_ch.GetDescriptor());
114 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700115 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800116 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700117 }
118}
119
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700120void WrapExceptionInInitializer() {
121 JNIEnv* env = Thread::Current()->GetJniEnv();
122
123 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
124 CHECK(cause.get() != NULL);
125
126 env->ExceptionClear();
127
128 // TODO: add java.lang.Error to JniConstants?
129 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
130 CHECK(error_class.get() != NULL);
131 if (env->IsInstanceOf(cause.get(), error_class.get())) {
132 // We only wrap non-Error exceptions; an Error can just be used as-is.
133 env->Throw(cause.get());
134 return;
135 }
136
137 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
138 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
139 CHECK(eiie_class.get() != NULL);
140
141 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
142 CHECK(mid != NULL);
143
144 ScopedLocalRef<jthrowable> eiie(env,
145 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
146 env->Throw(eiie.get());
147}
148
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800149static size_t Hash(const char* s) {
150 // This is the java.lang.String hashcode for convenience, not interoperability.
151 size_t hash = 0;
152 for (; *s != '\0'; ++s) {
153 hash = hash * 31 + *s;
154 }
155 return hash;
156}
157
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700158} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700159
Elliott Hughes418d20f2011-09-22 14:00:39 -0700160const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700161 "Ljava/lang/Class;",
162 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700163 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700164 "[Ljava/lang/Object;",
165 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700166 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700167 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700168 "Ljava/lang/reflect/Field;",
169 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700170 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700171 "Ljava/lang/ClassLoader;",
172 "Ldalvik/system/BaseDexClassLoader;",
173 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700174 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700175 "Z",
176 "B",
177 "C",
178 "D",
179 "F",
180 "I",
181 "J",
182 "S",
183 "V",
184 "[Z",
185 "[B",
186 "[C",
187 "[D",
188 "[F",
189 "[I",
190 "[J",
191 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700192 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700193};
194
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800195ClassLinker* ClassLinker::Create(const std::string& boot_class_path, InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700196 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800197 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700198 class_linker->Init(boot_class_path);
199 return class_linker.release();
200}
201
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800202ClassLinker* ClassLinker::Create(InternTable* intern_table) {
203 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700204 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700205 return class_linker.release();
206}
207
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800208ClassLinker::ClassLinker(InternTable* intern_table)
209 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700210 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700211 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700212 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700213 init_done_(false),
214 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700215 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700216}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700217
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700218void CreateClassPath(const std::string& class_path,
219 std::vector<const DexFile*>& class_path_vector) {
220 std::vector<std::string> parsed;
221 Split(class_path, ':', parsed);
222 for (size_t i = 0; i < parsed.size(); ++i) {
223 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700224 if (dex_file == NULL) {
225 LOG(WARNING) << "Failed to open dex file " << parsed[i];
226 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700227 class_path_vector.push_back(dex_file);
228 }
229 }
230}
231
232void ClassLinker::Init(const std::string& boot_class_path) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800233 VLOG(startup) << "ClassLinker::InitFrom entering boot_class_path=" << boot_class_path;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700234
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700235 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700236
Elliott Hughes30646832011-10-13 16:59:46 -0700237 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700238 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
239 CHECK(java_lang_Class.get() != NULL);
240 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700241 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700242 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700243
Elliott Hughes418d20f2011-09-22 14:00:39 -0700244 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700245 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
246 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700247
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700248 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700249 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
250 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700251 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700253 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700254
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700255 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700256 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
257 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700258
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700259 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700260 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700261
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700262 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700263 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
264 char_array_class->SetComponentType(char_class.get());
265 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700266
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700267 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700268 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
269 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700270 java_lang_String->SetObjectSize(sizeof(String));
271 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400272
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 // Create storage for root classes, save away our work so far (requires
274 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700275 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700276 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700277 SetClassRoot(kJavaLangClass, java_lang_Class.get());
278 SetClassRoot(kJavaLangObject, java_lang_Object.get());
279 SetClassRoot(kClassArrayClass, class_array_class.get());
280 SetClassRoot(kObjectArrayClass, object_array_class.get());
281 SetClassRoot(kCharArrayClass, char_array_class.get());
282 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700283
284 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700285 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
286 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
287 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
288 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
289 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
290 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
291 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
292 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700293
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700295 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296
297 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700298 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700300 IntArray::SetArrayClass(int_array_class.get());
301 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700303 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700304
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700305 // setup boot_class_path_ and register class_path now that we can
306 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700307 std::vector<const DexFile*> boot_class_path_vector;
308 CreateClassPath(boot_class_path, boot_class_path_vector);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700309 CHECK_NE(0U, boot_class_path_vector.size());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700310 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
311 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700312 CHECK(dex_file != NULL);
313 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700314 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700315
Elliott Hughes80609252011-09-23 17:24:51 -0700316 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700317 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700319 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700321 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
322
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700323 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
324 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700325 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700326 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700327 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700328 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700329
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336
337 // now we can use FindSystemClass
338
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700339 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700340 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700341 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700342
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700343 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344 java_lang_Object->SetStatus(Class::kStatusNotReady);
345 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700346 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700347 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
348 java_lang_String->SetStatus(Class::kStatusNotReady);
349 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700350 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
352
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700353 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700354 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
355 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
356
357 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
358 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
359
360 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700361 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700362
363 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
364 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
365
366 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700367 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700368
369 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
370 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
371
372 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
373 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
374
375 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
376 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
377
Elliott Hughes418d20f2011-09-22 14:00:39 -0700378 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700379 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700380
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700381 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700382 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700383
384 // Setup the single, global copies of "interfaces" and "iftable"
385 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
386 CHECK(java_lang_Cloneable != NULL);
387 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
388 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700389 // We assume that Cloneable/Serializable don't have superinterfaces --
390 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700391 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800392 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
393 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700394
Elliott Hughes418d20f2011-09-22 14:00:39 -0700395 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800396 ClassHelper kh(class_array_class.get(), this);
397 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
398 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
399 kh.ChangeClass(object_array_class.get());
400 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
401 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700402 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700403 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700404 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700405 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700406
Elliott Hughes80609252011-09-23 17:24:51 -0700407 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
408 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700409 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700410
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700411 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700412 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700413 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700414
415 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700416 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700417 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700418
Ian Rogers466bb252011-10-14 03:29:56 -0700419 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
420
421 // Create java.lang.reflect.Proxy root
422 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
423 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
424
Brian Carlstrom1f870082011-08-23 16:02:11 -0700425 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700426 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
427 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700428 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700429 java_lang_ref_FinalizerReference->SetAccessFlags(
430 java_lang_ref_FinalizerReference->GetAccessFlags() |
431 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700432 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700433 java_lang_ref_PhantomReference->SetAccessFlags(
434 java_lang_ref_PhantomReference->GetAccessFlags() |
435 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700436 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 java_lang_ref_SoftReference->SetAccessFlags(
438 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700439 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700440 java_lang_ref_WeakReference->SetAccessFlags(
441 java_lang_ref_WeakReference->GetAccessFlags() |
442 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700443
Brian Carlstromaded5f72011-10-07 17:15:04 -0700444 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700445 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700446 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700447 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
448
449 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
450 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
451 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
452
453 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
454 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
455 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
456 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
457
458 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700459 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
460 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700461 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700462
Brian Carlstroma663ea52011-08-19 23:33:41 -0700463 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700464
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800465 VLOG(startup) << "ClassLinker::InitFrom exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700466}
467
468void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800469 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700470
471 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700472 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700473 // as the types of the field can't be resolved prior to the runtime being
474 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700475 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700476 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700477 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
478
Elliott Hughesadb460d2011-10-05 17:02:34 -0700479 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
480
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800481 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
482
Brian Carlstrom16192862011-09-12 17:50:06 -0700483 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800484 FieldHelper fh(pendingNext, this);
485 CHECK_STREQ(fh.GetName(), "pendingNext");
486 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
487 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700488
489 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800490 fh.ChangeField(queue);
491 CHECK_STREQ(fh.GetName(), "queue");
492 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
493 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700494
495 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 fh.ChangeField(queueNext);
497 CHECK_STREQ(fh.GetName(), "queueNext");
498 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
499 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700500
501 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800502 fh.ChangeField(referent);
503 CHECK_STREQ(fh.GetName(), "referent");
504 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
505 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700506
507 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800508 fh.ChangeField(zombie);
509 CHECK_STREQ(fh.GetName(), "zombie");
510 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
511 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700512
513 Heap::SetReferenceOffsets(referent->GetOffset(),
514 queue->GetOffset(),
515 queueNext->GetOffset(),
516 pendingNext->GetOffset(),
517 zombie->GetOffset());
518
Brian Carlstroma663ea52011-08-19 23:33:41 -0700519 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700520 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700521 ClassRoot class_root = static_cast<ClassRoot>(i);
522 Class* klass = GetClassRoot(class_root);
523 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700524 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700525 // note SetClassRoot does additional validation.
526 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700527 }
528
Elliott Hughes92f14b22011-10-06 12:29:54 -0700529 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700530
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700531 // disable the slow paths in FindClass and CreatePrimitiveClass now
532 // that Object, Class, and Object[] are setup
533 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700534
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800535 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700536}
537
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700538void ClassLinker::RunRootClinits() {
539 Thread* self = Thread::Current();
540 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
541 Class* c = GetClassRoot(ClassRoot(i));
542 if (!c->IsArrayClass() && !c->IsPrimitive()) {
543 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700544 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700545 }
546 }
547}
548
Brian Carlstromd601af82012-01-06 10:15:19 -0800549bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
550 int oat_fd,
551 const std::string& oat_cache_filename) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800552 std::string dex2oat_string("/system/bin/dex2oat");
553#ifndef NDEBUG
554 dex2oat_string += 'd';
555#endif
556 const char* dex2oat = dex2oat_string.c_str();
557
558 const char* class_path = Runtime::Current()->GetClassPath().c_str();
559
560 std::string boot_image_option_string("--boot-image=");
561 boot_image_option_string += Heap::GetSpaces()[0]->GetImageFilename();
562 const char* boot_image_option = boot_image_option_string.c_str();
563
564 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800565 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800566 const char* dex_file_option = dex_file_option_string.c_str();
567
Brian Carlstromd601af82012-01-06 10:15:19 -0800568 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800569 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800570 const char* oat_fd_option = oat_fd_option_string.c_str();
571
572 std::string oat_name_option_string("--oat-name=");
573 oat_name_option_string += oat_cache_filename;
574 const char* oat_name_option = oat_name_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800575
jeffhao262bf462011-10-20 18:36:32 -0700576 // fork and exec dex2oat
577 pid_t pid = fork();
578 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800579 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800580
581 // change process groups, so we don't get reaped by ProcessManager
582 setpgid(0, 0);
583
jeffhao10037c82012-01-23 15:06:23 -0800584 VLOG(class_linker) << dex2oat
585 << " --runtime-arg -Xms64m"
586 << " --runtime-arg -Xmx64m"
587 << " --runtime-arg -classpath"
588 << " --runtime-arg " << class_path
589 << " " << boot_image_option
590 << " " << dex_file_option
591 << " " << oat_fd_option
592 << " " << oat_name_option;
593
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800594 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700595 "--runtime-arg", "-Xms64m",
596 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500597 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800598 "--runtime-arg", class_path,
599 boot_image_option,
600 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800601 oat_fd_option,
602 oat_name_option,
jeffhao262bf462011-10-20 18:36:32 -0700603 NULL);
604
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800605 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800606 return false;
jeffhao262bf462011-10-20 18:36:32 -0700607 } else {
608 // wait for dex2oat to finish
609 int status;
610 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
611 if (got_pid != pid) {
612 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800613 return false;
jeffhao262bf462011-10-20 18:36:32 -0700614 }
615 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800616 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
617 return false;
jeffhao262bf462011-10-20 18:36:32 -0700618 }
619 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800620 return true;
jeffhao262bf462011-10-20 18:36:32 -0700621}
622
Brian Carlstrom866c8622012-01-06 16:35:13 -0800623void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
624 MutexLock mu(dex_lock_);
625 RegisterOatFileLocked(oat_file);
626}
627
628void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
629 dex_lock_.AssertHeld();
630 oat_files_.push_back(&oat_file);
631}
632
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700633OatFile* ClassLinker::OpenOat(const Space* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700634 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700635 const Runtime* runtime = Runtime::Current();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800636 VLOG(startup) << "ClassLinker::OpenOat entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700637 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800638 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
639 // check the down cast
640 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700641 std::string oat_filename;
642 oat_filename += runtime->GetHostPrefix();
643 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma9f19782011-10-13 00:14:47 -0700644 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBaseAddr());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700645 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700646 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700647 return NULL;
648 }
649 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
650 uint32_t image_oat_checksum = image_header.GetOatChecksum();
651 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800652 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700653 << " to expected oat checksum " << std::hex << oat_checksum
654 << " in image";
655 return NULL;
656 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800657 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800658 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700659 return oat_file;
660}
661
Brian Carlstromae826982011-11-09 01:33:42 -0800662const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
663 for (size_t i = 0; i < oat_files_.size(); i++) {
664 const OatFile* oat_file = oat_files_[i];
665 DCHECK(oat_file != NULL);
Ian Rogers7fe2c692011-12-06 16:35:59 -0800666 if (oat_file->GetOatDexFile(dex_file.GetLocation(), false)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800667 return oat_file;
668 }
669 }
670 return NULL;
671}
672
Brian Carlstromd601af82012-01-06 10:15:19 -0800673class LockedFd {
674 public:
675 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
676 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
677 if (fd == -1) {
678 PLOG(ERROR) << "Failed to open file '" << name << "'";
679 return NULL;
680 }
681 fchmod(fd, mode);
682
683 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
684 // try to lock non-blocking so we can log if we need may need to block
685 int result = flock(fd, LOCK_EX | LOCK_NB);
686 if (result == -1) {
687 LOG(WARNING) << "sleeping while locking file " << name;
688 // retry blocking
689 result = flock(fd, LOCK_EX);
690 }
691 if (result == -1) {
692 PLOG(ERROR) << "Failed to lock file '" << name << "'";
693 close(fd);
694 return NULL;
695 }
696 return new LockedFd(fd);
697 }
698
699 int GetFd() const {
700 return fd_;
701 }
702
703 ~LockedFd() {
704 if (fd_ != -1) {
705 int result = flock(fd_, LOCK_UN);
706 if (result == -1) {
707 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
708 }
709 close(fd_);
710 }
711 }
712
713 private:
714 explicit LockedFd(int fd) : fd_(fd) {}
715
716 int fd_;
717};
718
Brian Carlstromae826982011-11-09 01:33:42 -0800719const OatFile* ClassLinker::FindOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700720 MutexLock mu(dex_lock_);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800721 const OatFile* open_oat_file = FindOpenedOatFileForDexFile(dex_file);
722 if (open_oat_file != NULL) {
723 return open_oat_file;
Brian Carlstromae826982011-11-09 01:33:42 -0800724 }
725
Brian Carlstromd601af82012-01-06 10:15:19 -0800726 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_file.GetLocation()));
Brian Carlstrom866c8622012-01-06 16:35:13 -0800727 open_oat_file = FindOpenedOatFileFromOatLocation(oat_filename);
728 if (open_oat_file != NULL) {
729 return open_oat_file;
730 }
731
Brian Carlstromd601af82012-01-06 10:15:19 -0800732 while (true) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800733 UniquePtr<const OatFile> oat_file(FindOatFileFromOatLocation(oat_filename));
734 if (oat_file.get() != NULL) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800735 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
736 if (dex_file.GetHeader().checksum_ == oat_dex_file->GetDexFileChecksum()) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800737 RegisterOatFileLocked(*oat_file.get());
738 return oat_file.release();
Brian Carlstromd601af82012-01-06 10:15:19 -0800739 }
740 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
741 << " checksum mismatch with " << dex_file.GetLocation() << " --- regenerating";
742 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
743 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
744 }
745 // Fall through...
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700746 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800747 // Try to generate oat file if it wasn't found or was obsolete.
748 // Note we can be racing with another runtime to do this.
749 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
750 UniquePtr<LockedFd> locked_fd(LockedFd::CreateAndLock(oat_cache_filename, 0644));
751 if (locked_fd.get() == NULL) {
752 LOG(ERROR) << "Failed to create and lock oat file " << oat_cache_filename;
753 return NULL;
Elliott Hughes234da572011-11-03 22:13:06 -0700754 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800755 // Check to see if the fd we opened and locked matches the file in
756 // the filesystem. If they don't, then somebody else unlinked ours
757 // and created a new file, and we need to use that one instead. (If
758 // we caught them between the unlink and the create, we'll get an
759 // ENOENT from the file stat.)
760 struct stat fd_stat;
761 int fd_stat_result = fstat(locked_fd->GetFd(), &fd_stat);
762 if (fd_stat_result != 0) {
763 PLOG(ERROR) << "Failed to fstat file descriptor of oat file " << oat_cache_filename;
764 return NULL;
765 }
766 struct stat file_stat;
767 int file_stat_result = stat(oat_cache_filename.c_str(), &file_stat);
768 if (file_stat_result != 0
769 || fd_stat.st_dev != file_stat.st_dev
770 || fd_stat.st_ino != file_stat.st_ino) {
771 LOG(INFO) << "Opened oat file " << oat_cache_filename << " is stale; sleeping and retrying";
772 usleep(250 * 1000); // if something is hosed, don't peg machine
773 continue;
774 }
775
776 // We have the correct file open and locked. If the file size is
777 // zero, then it was just created by us and we can generate its
778 // contents. If not, someone else created it. Either way, we'll
779 // loop to retry opening the file.
780 if (fd_stat.st_size == 0) {
781 bool success = GenerateOatFile(dex_file.GetLocation(),
782 locked_fd->GetFd(),
783 oat_cache_filename);
784 if (!success) {
785 LOG(ERROR) << "Failed to generate oat file " << oat_cache_filename;
786 return NULL;
787 }
788 }
jeffhao262bf462011-10-20 18:36:32 -0700789 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800790 // Not reached
Brian Carlstromaded5f72011-10-07 17:15:04 -0700791}
792
Brian Carlstromae826982011-11-09 01:33:42 -0800793const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700794 for (size_t i = 0; i < oat_files_.size(); i++) {
795 const OatFile* oat_file = oat_files_[i];
796 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800797 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700798 return oat_file;
799 }
800 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700801 return NULL;
802}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700803
Brian Carlstromae826982011-11-09 01:33:42 -0800804const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800805 const OatFile* oat_file = OatFile::Open(oat_location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700806 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800807 if (oat_location.empty() || oat_location[0] != '/') {
808 LOG(ERROR) << "Failed to open oat file from " << oat_location;
Brian Carlstroma9f19782011-10-13 00:14:47 -0700809 return NULL;
810 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700811
Brian Carlstroma9f19782011-10-13 00:14:47 -0700812 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Elliott Hughes95572412011-12-13 18:14:20 -0800813 std::string cache_location(GetArtCacheFilenameOrDie(oat_location));
Brian Carlstromae826982011-11-09 01:33:42 -0800814 oat_file = FindOpenedOatFileFromOatLocation(cache_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700815 if (oat_file != NULL) {
816 return oat_file;
817 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700818 oat_file = OatFile::Open(cache_location, "", NULL);
819 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800820 LOG(INFO) << "Failed to open oat file from " << oat_location << " or " << cache_location << ".";
Brian Carlstroma9f19782011-10-13 00:14:47 -0700821 return NULL;
822 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700823 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700824
Brian Carlstromae826982011-11-09 01:33:42 -0800825 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700826 return oat_file;
827}
828
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700829void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800830 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700831 CHECK(!init_done_);
832
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700833 const std::vector<Space*>& spaces = Heap::GetSpaces();
834 for (size_t i = 0; i < spaces.size(); i++) {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800835 Space* space = spaces[i];
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700836 if (space->IsImageSpace()) {
837 OatFile* oat_file = OpenOat(space);
838 CHECK(oat_file != NULL) << "Failed to open oat file for image";
839 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
840 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
841
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800842 if (i == 0) {
843 // Special case of setting up the String class early so that we can test arbitrary objects
844 // as being Strings or not
845 Class* java_lang_String = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
846 ->AsObjectArray<Class>()->Get(kJavaLangString);
847 String::SetClass(java_lang_String);
848 }
849
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700850 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
851 static_cast<uint32_t>(dex_caches->GetLength()));
852 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700853 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Elliott Hughes95572412011-12-13 18:14:20 -0800854 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Brian Carlstrom89521892011-12-07 22:05:07 -0800855 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
856 const DexFile* dex_file = oat_dex_file->OpenDexFile();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700857 if (dex_file == NULL) {
Brian Carlstrom89521892011-12-07 22:05:07 -0800858 LOG(FATAL) << "Failed to open dex file " << dex_file_location
859 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700860 }
861
Brian Carlstromaded5f72011-10-07 17:15:04 -0700862 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700863
Brian Carlstromdf143242011-10-10 18:05:34 -0700864 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700865 }
866 }
867 }
868
Brian Carlstroma663ea52011-08-19 23:33:41 -0700869 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
870 DCHECK(heap_bitmap != NULL);
871
Brian Carlstroma663ea52011-08-19 23:33:41 -0700872 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700873 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700874
875 // reinit class_roots_
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700876 Object* class_roots_object = spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
877 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700878
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800879 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700880 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
881 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800882 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700883 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700884 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700885 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
886 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
887 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
888 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
889 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
890 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
891 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
892 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700893 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700894 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700895
896 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700897
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800898 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700899}
900
Brian Carlstrom78128a62011-09-15 17:21:19 -0700901void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700902 DCHECK(obj != NULL);
903 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700904 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700905
Elliott Hughesdbb40792011-11-18 17:05:22 -0800906 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700907 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700908 return;
909 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700910 if (obj->IsClass()) {
911 // restore class to ClassLinker::classes_ table
912 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800913 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800914 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
915 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700916 return;
917 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700918}
919
920// Keep in sync with InitCallback. Anything we visit, we need to
921// reinit references to when reinitializing a ClassLinker from a
922// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700923void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
924 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700925
926 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700927 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700928 }
929
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700930 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700931 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700932 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700933 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700934 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700935 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700936 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700937 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700938
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700939 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700940}
941
Elliott Hughesa2155262011-11-16 16:26:58 -0800942void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
943 MutexLock mu(classes_lock_);
944 typedef Table::const_iterator It; // TODO: C++0x auto
945 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
946 if (!visitor(it->second, arg)) {
947 return;
948 }
949 }
950 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
951 if (!visitor(it->second, arg)) {
952 return;
953 }
954 }
955}
956
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700957ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700958 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700959 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700960 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700961 BooleanArray::ResetArrayClass();
962 ByteArray::ResetArrayClass();
963 CharArray::ResetArrayClass();
964 DoubleArray::ResetArrayClass();
965 FloatArray::ResetArrayClass();
966 IntArray::ResetArrayClass();
967 LongArray::ResetArrayClass();
968 ShortArray::ResetArrayClass();
969 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700970 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700971 STLDeleteElements(&boot_class_path_);
972 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700973}
974
975DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700976 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
977 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700978 return NULL;
979 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700980 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
981 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700982 return NULL;
983 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700984 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
985 if (strings.get() == NULL) {
986 return NULL;
987 }
988 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
989 if (types.get() == NULL) {
990 return NULL;
991 }
992 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
993 if (methods.get() == NULL) {
994 return NULL;
995 }
996 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
997 if (fields.get() == NULL) {
998 return NULL;
999 }
1000 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
1001 if (code_and_direct_methods.get() == NULL) {
1002 return NULL;
1003 }
1004 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1005 if (initialized_static_storage.get() == NULL) {
1006 return NULL;
1007 }
1008
1009 dex_cache->Init(location.get(),
1010 strings.get(),
1011 types.get(),
1012 methods.get(),
1013 fields.get(),
1014 code_and_direct_methods.get(),
1015 initialized_static_storage.get());
1016 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001017}
1018
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001019CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
1020 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -07001021}
1022
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001023InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1024 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001025 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1026 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001027 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001028 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001029}
1030
Brian Carlstrom4873d462011-08-21 15:23:39 -07001031Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1032 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001033 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001034 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001035 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001036 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001037}
1038
Brian Carlstrom4873d462011-08-21 15:23:39 -07001039Class* ClassLinker::AllocClass(size_t class_size) {
1040 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001041}
1042
Jesse Wilson35baaab2011-08-10 16:18:03 -04001043Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001044 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001045}
1046
1047Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001048 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001049}
1050
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001051ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1052 return ObjectArray<StackTraceElement>::Alloc(
1053 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1054 length);
1055}
1056
Brian Carlstromaded5f72011-10-07 17:15:04 -07001057Class* EnsureResolved(Class* klass) {
1058 DCHECK(klass != NULL);
1059 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001060 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001061 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001062 ObjectLock lock(klass);
1063 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001064 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001065 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001066 PrettyDescriptor(klass).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001067 return NULL;
1068 }
1069 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001070 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001071 lock.Wait();
1072 }
1073 }
1074 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001075 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001076 return NULL;
1077 }
1078 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001079 CHECK(klass->IsResolved()) << PrettyClass(klass);
1080 CHECK(!self->IsExceptionPending())
1081 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1082 return klass;
1083}
1084
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001085Class* ClassLinker::FindSystemClass(const char* descriptor) {
1086 return FindClass(descriptor, NULL);
1087}
1088
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001089Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001090 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001091 Thread* self = Thread::Current();
1092 DCHECK(self != NULL);
1093 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001094 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001095 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1096 // for primitive classes that aren't backed by dex files.
1097 return FindPrimitiveClass(descriptor[0]);
1098 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001099 // Find the class in the loaded classes table.
1100 Class* klass = LookupClass(descriptor, class_loader);
1101 if (klass != NULL) {
1102 return EnsureResolved(klass);
1103 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001104 // Class is not yet loaded.
Elliott Hughesa7679b62012-01-24 17:15:23 -08001105 JNIEnv* env = self->GetJniEnv();
1106 ScopedLocalRef<jthrowable> cause(env, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001107 if (descriptor[0] == '[') {
1108 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001109
Jesse Wilson47daf872011-11-23 11:42:45 -05001110 } else if (class_loader == NULL) {
1111 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1112 if (pair.second != NULL) {
1113 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1114 }
1115
1116 } else if (ClassLoader::UseCompileTimeClassPath()) {
1117 // first try the boot class path
1118 Class* system_class = FindSystemClass(descriptor);
1119 if (system_class != NULL) {
1120 return system_class;
1121 }
1122 CHECK(self->IsExceptionPending());
1123 self->ClearException();
1124
1125 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001126 const std::vector<const DexFile*>& class_path
1127 = ClassLoader::GetCompileTimeClassPath(class_loader);
1128 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001129 if (pair.second != NULL) {
1130 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001131 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001132
1133 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001134 std::string class_name_string(DescriptorToDot(descriptor));
Jesse Wilson47daf872011-11-23 11:42:45 -05001135 ScopedThreadStateChange(self, Thread::kNative);
Jesse Wilson47daf872011-11-23 11:42:45 -05001136 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1137 CHECK(c.get() != NULL);
1138 // TODO: cache method?
1139 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1140 CHECK(mid != NULL);
1141 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1142 if (class_name_object.get() == NULL) {
1143 return NULL;
1144 }
1145 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001146 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1147 class_name_object.get()));
Elliott Hughesa7679b62012-01-24 17:15:23 -08001148 cause.reset(env->ExceptionOccurred());
1149 if (cause.get() != NULL) {
1150 env->ExceptionClear();
1151 // Failed to find class, so fall-through to throw NCDFE.
Ian Rogers761bfa82012-01-11 10:14:05 -08001152 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001153 // broken loader - throw NPE to be compatible with Dalvik
1154 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1155 class_name_string.c_str());
1156 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001157 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001158 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001159 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001160 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001161 }
1162
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001163 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Elliott Hughesa7679b62012-01-24 17:15:23 -08001164 if (cause.get() != NULL) {
1165 // Initialize the cause of the NCDFE.
1166 ScopedLocalRef<jthrowable> ncdfe(env, env->ExceptionOccurred());
1167 env->ExceptionClear();
Elliott Hughes844f9a02012-01-24 20:19:58 -08001168 static jmethodID initCause_mid = env->GetMethodID(env->FindClass("java/lang/Throwable"), "initCause", "(Ljava/lang/Throwable;)Ljava/lang/Throwable;");
Elliott Hughesa7679b62012-01-24 17:15:23 -08001169 env->CallObjectMethod(ncdfe.get(), initCause_mid, cause.get());
1170 env->Throw(ncdfe.get());
1171 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001172 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001173}
1174
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001175Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001176 const ClassLoader* class_loader,
1177 const DexFile& dex_file,
1178 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001179 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001180 // Load the class from the dex file.
1181 if (!init_done_) {
1182 // finish up init of hand crafted class_roots_
1183 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001184 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001185 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001186 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001187 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001188 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001189 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001190 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001191 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001192 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001193 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001194 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001195 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001196 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001197 }
1198 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001199 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001200 }
1201 klass->SetDexCache(FindDexCache(dex_file));
1202 LoadClass(dex_file, dex_class_def, klass, class_loader);
1203 // Check for a pending exception during load
1204 Thread* self = Thread::Current();
1205 if (self->IsExceptionPending()) {
1206 return NULL;
1207 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001208 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001209 klass->SetClinitThreadId(self->GetTid());
1210 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001211 Class* existing = InsertClass(descriptor, klass.get(), false);
1212 if (existing != NULL) {
1213 // We failed to insert because we raced with another thread.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001214 klass->SetClinitThreadId(0);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001215 klass.reset(existing);
1216 return EnsureResolved(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001217 }
1218 // Finish loading (if necessary) by finding parents
1219 CHECK(!klass->IsLoaded());
1220 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1221 // Loading failed.
1222 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001223 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001224 lock.NotifyAll();
1225 return NULL;
1226 }
1227 CHECK(klass->IsLoaded());
1228 // Link the class (if necessary)
1229 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001230 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001231 // Linking failed.
1232 CHECK(self->IsExceptionPending());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001233 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001234 lock.NotifyAll();
1235 return NULL;
1236 }
1237 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001238
1239 /*
1240 * We send CLASS_PREPARE events to the debugger from here. The
1241 * definition of "preparation" is creating the static fields for a
1242 * class and initializing them to the standard default values, but not
1243 * executing any code (that comes later, during "initialization").
1244 *
1245 * We did the static preparation in LinkClass.
1246 *
1247 * The class has been prepared and resolved but possibly not yet verified
1248 * at this point.
1249 */
1250 Dbg::PostClassPrepare(klass.get());
1251
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001252 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001253}
1254
Brian Carlstrom4873d462011-08-21 15:23:39 -07001255// Precomputes size that will be needed for Class, matching LinkStaticFields
1256size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1257 const DexFile::ClassDef& dex_class_def) {
1258 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001259 size_t num_ref = 0;
1260 size_t num_32 = 0;
1261 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001262 if (class_data != NULL) {
1263 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1264 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001265 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001266 char c = descriptor[0];
1267 if (c == 'L' || c == '[') {
1268 num_ref++;
1269 } else if (c == 'J' || c == 'D') {
1270 num_64++;
1271 } else {
1272 num_32++;
1273 }
1274 }
1275 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001276 // start with generic class data
1277 size_t size = sizeof(Class);
1278 // follow with reference fields which must be contiguous at start
1279 size += (num_ref * sizeof(uint32_t));
1280 // if there are 64-bit fields to add, make sure they are aligned
1281 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1282 if (num_32 != 0) {
1283 // use an available 32-bit field for padding
1284 num_32--;
1285 }
1286 size += sizeof(uint32_t); // either way, we are adding a word
1287 DCHECK_EQ(size, RoundUp(size, 8));
1288 }
1289 // tack on any 64-bit fields now that alignment is assured
1290 size += (num_64 * sizeof(uint64_t));
1291 // tack on any remaining 32-bit fields
1292 size += (num_32 * sizeof(uint32_t));
1293 return size;
1294}
1295
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001296void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001297 // Every kind of method should at least get an invoke stub from the oat_method.
1298 // non-abstract methods also get their code pointers.
1299 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001300 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001301
1302 if (method->IsAbstract()) {
1303 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1304 return;
1305 }
1306 if (method->IsNative()) {
1307 // unregistering restores the dlsym lookup stub
1308 method->UnregisterNative();
jeffhao26c0a1a2012-01-17 16:28:33 -08001309 }
1310
1311 if (Runtime::Current()->IsMethodTracingActive()) {
1312#if defined(__arm__)
1313 Trace* tracer = Runtime::Current()->GetTracer();
1314 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
1315 tracer->SaveAndUpdateCode(method.get(), trace_stub);
1316#else
1317 UNIMPLEMENTED(WARNING);
1318#endif
Brian Carlstrom92827a52011-10-10 15:50:01 -07001319 }
1320}
1321
Brian Carlstromf615a612011-07-23 12:50:34 -07001322void ClassLinker::LoadClass(const DexFile& dex_file,
1323 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001324 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001325 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001326 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001327 CHECK(klass->GetDexCache() != NULL);
1328 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001329 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001330 CHECK(descriptor != NULL);
1331
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001332 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001333 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001334 // Make sure that none of our runtime-only flags are set.
1335 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001336 klass->SetAccessFlags(access_flags);
1337 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001338 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001339 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001340
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001341 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001342
Ian Rogers0571d352011-11-03 19:51:38 -07001343 // Load fields fields.
1344 const byte* class_data = dex_file.GetClassData(dex_class_def);
1345 if (class_data == NULL) {
1346 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001347 }
Ian Rogers0571d352011-11-03 19:51:38 -07001348 ClassDataItemIterator it(dex_file, class_data);
1349 if (it.NumStaticFields() != 0) {
1350 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1351 }
1352 if (it.NumInstanceFields() != 0) {
1353 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1354 }
1355 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1356 SirtRef<Field> sfield(AllocField());
1357 klass->SetStaticField(i, sfield.get());
1358 LoadField(dex_file, it, klass, sfield);
1359 }
1360 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1361 SirtRef<Field> ifield(AllocField());
1362 klass->SetInstanceField(i, ifield.get());
1363 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001364 }
1365
Brian Carlstromaded5f72011-10-07 17:15:04 -07001366 UniquePtr<const OatFile::OatClass> oat_class;
1367 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001368 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001369 if (oat_file != NULL) {
1370 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1371 if (oat_dex_file != NULL) {
1372 uint32_t class_def_index;
1373 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1374 CHECK(found) << descriptor;
1375 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001376 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001377 }
1378 }
1379 }
Ian Rogers0571d352011-11-03 19:51:38 -07001380 // Load methods.
1381 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001382 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001383 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001384 }
Ian Rogers0571d352011-11-03 19:51:38 -07001385 if (it.NumVirtualMethods() != 0) {
1386 // TODO: append direct methods to class object
1387 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001388 }
Ian Rogers0571d352011-11-03 19:51:38 -07001389 size_t method_index = 0;
1390 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1391 SirtRef<Method> method(AllocMethod());
1392 klass->SetDirectMethod(i, method.get());
1393 LoadMethod(dex_file, it, klass, method);
1394 if (oat_class.get() != NULL) {
1395 LinkCode(method, oat_class.get(), method_index);
1396 }
1397 method_index++;
1398 }
1399 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1400 SirtRef<Method> method(AllocMethod());
1401 klass->SetVirtualMethod(i, method.get());
1402 LoadMethod(dex_file, it, klass, method);
1403 if (oat_class.get() != NULL) {
1404 LinkCode(method, oat_class.get(), method_index);
1405 }
1406 method_index++;
1407 }
1408 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001409}
1410
Ian Rogers0571d352011-11-03 19:51:38 -07001411void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1412 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001413 uint32_t field_idx = it.GetMemberIndex();
1414 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001415 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001416 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001417}
1418
Ian Rogers0571d352011-11-03 19:51:38 -07001419void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1420 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001421 uint32_t method_idx = it.GetMemberIndex();
1422 dst->SetDexMethodIndex(method_idx);
1423 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001424 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001425
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001426
1427 StringPiece method_name(dex_file.GetMethodName(method_id));
1428 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001429 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1430 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001431
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001432 if (method_name == "finalize") {
1433 // Create the prototype for a signature of "()V"
1434 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1435 if (void_string_id != NULL) {
1436 const DexFile::TypeId* void_type_id =
1437 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1438 if (void_type_id != NULL) {
1439 std::vector<uint16_t> no_args;
1440 const DexFile::ProtoId* finalizer_proto =
1441 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1442 if (finalizer_proto != NULL) {
1443 // We have the prototype in the dex file
1444 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1445 klass->SetFinalizable();
1446 } else {
1447 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1448 // The Enum class declares a "final" finalize() method to prevent subclasses from
1449 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1450 // subclasses, so we exclude it here.
1451 // We also want to avoid setting the flag on Object, where we know that finalize() is
1452 // empty.
1453 if (klass_descriptor != "Ljava/lang/Object;" &&
1454 klass_descriptor != "Ljava/lang/Enum;") {
1455 klass->SetFinalizable();
1456 }
1457 }
1458 }
1459 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001460 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001461 }
Ian Rogers0571d352011-11-03 19:51:38 -07001462 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001463 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001464
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001465 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1466 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1467 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1468 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1469 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1470 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001471}
1472
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001473void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001474 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1475 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001476}
1477
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001478void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1479 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001480 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001481 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001482}
1483
Brian Carlstromaded5f72011-10-07 17:15:04 -07001484bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001485 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001486 for (size_t i = 0; i != dex_files_.size(); ++i) {
1487 if (dex_files_[i] == &dex_file) {
1488 return true;
1489 }
1490 }
1491 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001492}
1493
Brian Carlstromaded5f72011-10-07 17:15:04 -07001494bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001495 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001496 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001497}
1498
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001499void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001500 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001501 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001502 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001503 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001504 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001505}
1506
Brian Carlstromaded5f72011-10-07 17:15:04 -07001507void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001508 {
1509 MutexLock mu(dex_lock_);
1510 if (IsDexFileRegisteredLocked(dex_file)) {
1511 return;
1512 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001513 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001514 // Don't alloc while holding the lock, since allocation may need to
1515 // suspend all threads and another thread may need the dex_lock_ to
1516 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001517 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001518 {
1519 MutexLock mu(dex_lock_);
1520 if (IsDexFileRegisteredLocked(dex_file)) {
1521 return;
1522 }
1523 RegisterDexFileLocked(dex_file, dex_cache);
1524 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001525}
1526
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001527void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001528 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001529 RegisterDexFileLocked(dex_file, dex_cache);
1530}
1531
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001532const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001533 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001534 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001535 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1536 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001537 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001538 }
1539 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001540 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001541 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001542}
1543
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001544DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001545 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001546 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001547 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001548 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001549 }
1550 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001551 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001552 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001553}
1554
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001555Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1556 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001557 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001558 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001559 CHECK(primitive_class != NULL);
1560 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001561 primitive_class->SetPrimitiveType(type);
1562 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001563 Class* existing = InsertClass(descriptor, primitive_class, false);
1564 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001565 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001566}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001567
Brian Carlstrombe977852011-07-19 14:54:54 -07001568// Create an array class (i.e. the class object for the array, not the
1569// array itself). "descriptor" looks like "[C" or "[[[[B" or
1570// "[Ljava/lang/String;".
1571//
1572// If "descriptor" refers to an array of primitives, look up the
1573// primitive type's internally-generated class object.
1574//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001575// "class_loader" is the class loader of the class that's referring to
1576// us. It's used to ensure that we're looking for the element type in
1577// the right context. It does NOT become the class loader for the
1578// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001579//
1580// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001581Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001582 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001583
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001584 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001585 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001586 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001587 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001588 return NULL;
1589 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001590
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001591 // See if the component type is already loaded. Array classes are
1592 // always associated with the class loader of their underlying
1593 // element type -- an array of Strings goes with the loader for
1594 // java/lang/String -- so we need to look for it there. (The
1595 // caller should have checked for the existence of the class
1596 // before calling here, but they did so with *their* class loader,
1597 // not the component type's loader.)
1598 //
1599 // If we find it, the caller adds "loader" to the class' initiating
1600 // loader list, which should prevent us from going through this again.
1601 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001602 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001603 // are the same, because our caller (FindClass) just did the
1604 // lookup. (Even if we get this wrong we still have correct behavior,
1605 // because we effectively do this lookup again when we add the new
1606 // class to the hash table --- necessary because of possible races with
1607 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001608 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001609 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001610 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001611 return new_class;
1612 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001613 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001614
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001615 // Fill out the fields in the Class.
1616 //
1617 // It is possible to execute some methods against arrays, because
1618 // all arrays are subclasses of java_lang_Object_, so we need to set
1619 // up a vtable. We can just point at the one in java_lang_Object_.
1620 //
1621 // Array classes are simple enough that we don't need to do a full
1622 // link step.
1623
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001624 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001625 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001626 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001627 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001628 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001629 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001630 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001631 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001632 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001633 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001634 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001635 }
1636 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001637 if (new_class.get() == NULL) {
1638 new_class.reset(AllocClass(sizeof(Class)));
1639 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001640 return NULL;
1641 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001642 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001643 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001644 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001645 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001646 new_class->SetSuperClass(java_lang_Object);
1647 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001648 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001649 new_class->SetClassLoader(component_type->GetClassLoader());
1650 new_class->SetStatus(Class::kStatusInitialized);
1651 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001652 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001653
1654
1655 // All arrays have java/lang/Cloneable and java/io/Serializable as
1656 // interfaces. We need to set that up here, so that stuff like
1657 // "instanceof" works right.
1658 //
1659 // Note: The GC could run during the call to FindSystemClass,
1660 // so we need to make sure the class object is GC-valid while we're in
1661 // there. Do this by clearing the interface list so the GC will just
1662 // think that the entries are null.
1663
1664
1665 // Use the single, global copies of "interfaces" and "iftable"
1666 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001667 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001668 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001669
1670 // Inherit access flags from the component type. Arrays can't be
1671 // used as a superclass or interface, so we want to add "final"
1672 // and remove "interface".
1673 //
1674 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001675 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001676 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001677 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1678 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001679
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001680 Class* existing = InsertClass(descriptor, new_class.get(), false);
1681 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001682 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001683 }
1684 // Another thread must have loaded the class after we
1685 // started but before we finished. Abandon what we've
1686 // done.
1687 //
1688 // (Yes, this happens.)
1689
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001690 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001691}
1692
1693Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001694 switch (Primitive::GetType(type)) {
1695 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001696 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001697 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001698 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001699 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001700 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001701 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001702 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001703 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001704 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001705 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001706 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001707 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001708 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001709 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001710 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001711 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001712 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001713 case Primitive::kPrimNot:
1714 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001715 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001716 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001717 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001718 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001719}
1720
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001721Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001722 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001723 DexCache* dex_cache = klass->GetDexCache();
1724 std::string source;
1725 if (dex_cache != NULL) {
1726 source += " from ";
1727 source += dex_cache->GetLocation()->ToModifiedUtf8();
1728 }
1729 LOG(INFO) << "Loaded class " << descriptor << source;
1730 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001731 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001732 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001733 Table& classes = image_class ? image_classes_ : classes_;
1734 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1735#ifndef NDEBUG
1736 // Check we don't have the class in the other table in error
1737 Table& other_classes = image_class ? classes_ : image_classes_;
1738 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1739#endif
1740 if (existing != NULL) {
1741 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001742 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001743 classes.insert(std::make_pair(hash, klass));
1744 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001745}
1746
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001747bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1748 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001749 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001750 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001751 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001752 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001753 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001754 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001755 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001756 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001757 classes_.erase(it);
1758 return true;
1759 }
1760 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001761 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001762 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001763 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001764 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001765 image_classes_.erase(it);
1766 return true;
1767 }
1768 }
1769 return false;
1770}
1771
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001772Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1773 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001774 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001775 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001776 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1777 if (klass != NULL) {
1778 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001779 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001780 return LookupClass(descriptor, class_loader, hash, image_classes_);
1781}
1782
1783Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1784 size_t hash, const Table& classes) {
1785 ClassHelper kh(NULL, this);
1786 typedef Table::const_iterator It; // TODO: C++0x auto
1787 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001788 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001789 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001790 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001791#ifndef NDEBUG
1792 for (++it; it != end && it->first == hash; ++it) {
1793 kh.ChangeClass(it->second);
1794 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader))
1795 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
1796 << PrettyClass(it->second) << " " << it->second << " " << it->second->GetClassLoader();
1797 }
1798#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001799 return klass;
1800 }
1801 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001802 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001803}
1804
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001805void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001806 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001807 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001808 MutexLock mu(classes_lock_);
1809 typedef Table::const_iterator It; // TODO: C++0x auto
1810 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001811 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001812 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001813 Class* klass = it->second;
1814 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001815 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001816 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001817 }
1818 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001819 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001820 Class* klass = it->second;
1821 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001822 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001823 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001824 }
1825 }
1826}
1827
Ian Rogersc20a83e2012-01-18 18:15:32 -08001828#ifndef NDEBUG
1829static void CheckMethodsHaveGcMaps(Class* klass) {
1830 if (!Runtime::Current()->IsStarted()) {
1831 return;
1832 }
1833 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1834 Method* method = klass->GetDirectMethod(i);
1835 if (!method->IsNative() && !method->IsAbstract()) {
1836 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1837 }
1838 }
1839 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1840 Method* method = klass->GetVirtualMethod(i);
1841 if (!method->IsNative() && !method->IsAbstract()) {
1842 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1843 }
1844 }
1845}
1846#else
1847static void CheckMethodsHaveGcMaps(Class* klass) {
1848}
1849#endif
1850
jeffhao98eacac2011-09-14 16:11:53 -07001851void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001852 // TODO: assert that the monitor on the Class is held
jeffhao98eacac2011-09-14 16:11:53 -07001853 if (klass->IsVerified()) {
1854 return;
1855 }
1856
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001857 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001858 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001859
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001860 // Try to use verification information from oat file, otherwise do runtime verification
1861 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
1862 if (VerifyClassUsingOatFile(dex_file, klass) || verifier::DexVerifier::VerifyClass(klass)) {
1863 // Make sure all classes referenced by catch blocks are resolved
1864 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001865 klass->SetStatus(Class::kStatusVerified);
Ian Rogersc20a83e2012-01-18 18:15:32 -08001866 // Sanity check that a verified class has GC maps on all methods
1867 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001868 } else {
1869 LOG(ERROR) << "Verification failed on class " << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001870 Thread* self = Thread::Current();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001871 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException()) << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001872 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Verification of %s failed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001873 PrettyDescriptor(klass).c_str());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001874 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyClass(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001875 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001876 }
jeffhao98eacac2011-09-14 16:11:53 -07001877}
1878
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001879bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass) {
1880 if (!Runtime::Current()->IsStarted()) {
1881 return false;
1882 }
1883 if (ClassLoader::UseCompileTimeClassPath()) {
1884 return false;
1885 }
1886 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
1887 if (oat_file == NULL) {
1888 return false;
1889 }
1890 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1891 CHECK(oat_dex_file != NULL) << PrettyClass(klass);
1892 const char* descriptor = ClassHelper(klass).GetDescriptor();
1893 uint32_t class_def_index;
1894 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1895 CHECK(found) << descriptor;
1896 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
1897 CHECK(oat_class.get() != NULL) << descriptor;
1898 Class::Status status = oat_class->GetStatus();
1899 if (status == Class::kStatusError) {
1900 ThrowEarlierClassFailure(klass);
1901 klass->SetVerifyErrorClass(Thread::Current()->GetException()->GetClass());
1902 klass->SetStatus(Class::kStatusError);
1903 return true;
1904 }
1905 if (status == Class::kStatusVerified || status == Class::kStatusInitialized) {
1906 return true;
1907 }
1908 if (status == Class::kStatusNotReady) {
1909 return false;
1910 }
1911 LOG(FATAL) << "Unexpected class status: " << status;
1912 return false;
1913}
1914
1915void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
1916 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1917 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
1918 }
1919 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1920 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
1921 }
1922}
1923
1924void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
1925 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
1926 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
1927 if (code_item == NULL) {
1928 return; // native or abstract method
1929 }
1930 if (code_item->tries_size_ == 0) {
1931 return; // nothing to process
1932 }
1933 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
1934 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
1935 ClassLinker* linker = Runtime::Current()->GetClassLinker();
1936 for (uint32_t idx = 0; idx < handlers_size; idx++) {
1937 CatchHandlerIterator iterator(handlers_ptr);
1938 for (; iterator.HasNext(); iterator.Next()) {
1939 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1940 // unresolved exception types will be ignored by exception delivery
1941 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
1942 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
1943 if (exception_type == NULL) {
1944 DCHECK(Thread::Current()->IsExceptionPending());
1945 Thread::Current()->ClearException();
1946 }
1947 }
1948 }
1949 handlers_ptr = iterator.EndDataPointer();
1950 }
1951}
1952
Ian Rogersc2b44472011-12-14 21:17:17 -08001953static void CheckProxyConstructor(Method* constructor);
1954static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
1955
Jesse Wilson95caa792011-10-12 18:14:17 -04001956Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001957 ClassLoader* loader, ObjectArray<Method>* methods,
1958 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08001959 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001960 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08001961 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04001962 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001963 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001964 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001965 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001966 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07001967 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001968 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08001969
1970 klass->SetStatus(Class::kStatusIdx);
1971
1972 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
1973
1974 // Create static field that holds throws, instance fields are inherited
1975 klass->SetSFields(AllocObjectArray<Field>(1));
1976 SirtRef<Field> sfield(AllocField());
1977 klass->SetStaticField(0, sfield.get());
1978 sfield->SetDexFieldIndex(-1);
1979 sfield->SetDeclaringClass(klass.get());
1980 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04001981
Ian Rogers466bb252011-10-14 03:29:56 -07001982 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04001983 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001984 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04001985
Ian Rogers466bb252011-10-14 03:29:56 -07001986 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04001987 size_t num_virtual_methods = methods->GetLength();
1988 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
1989 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001990 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001991 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04001992 }
Ian Rogersc2b44472011-12-14 21:17:17 -08001993
1994 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
1995 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
1996 DCHECK(!Thread::Current()->IsExceptionPending());
1997
1998 // Link the fields and virtual methods, creating vtable and iftables
1999 if (!LinkClass(klass, interfaces)) {
Jesse Wilson95caa792011-10-12 18:14:17 -04002000 DCHECK(Thread::Current()->IsExceptionPending());
2001 return NULL;
2002 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002003 sfield->SetObject(NULL, throws); // initialize throws field
2004 klass->SetStatus(Class::kStatusInitialized);
2005
2006 // sanity checks
2007#ifndef NDEBUG
2008 bool debug = true;
2009#else
2010 bool debug = false;
2011#endif
2012 if (debug) {
2013 CHECK(klass->GetIFields() == NULL);
2014 CheckProxyConstructor(klass->GetDirectMethod(0));
2015 for (size_t i = 0; i < num_virtual_methods; ++i) {
2016 SirtRef<Method> prototype(methods->Get(i));
2017 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2018 }
Brian Carlstrom89521892011-12-07 22:05:07 -08002019 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08002020 throws_field_name += name->ToModifiedUtf8();
2021 throws_field_name += ".throws";
2022 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
2023
2024 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
2025 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2026 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002027 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002028}
2029
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002030std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2031 DCHECK(proxy_class->IsProxyClass());
2032 String* name = proxy_class->GetName();
2033 DCHECK(name != NULL);
2034 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2035}
2036
2037
2038Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002039 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002040 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002041 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002042 Method* proxy_constructor = proxy_direct_methods->Get(2);
2043 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2044 // code_ too)
2045 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2046 // Make this constructor public and fix the class to be our Proxy version
2047 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002048 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002049 return constructor;
2050}
2051
2052static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002053 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002054 MethodHelper mh(constructor);
2055 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002056 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002057 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002058}
2059
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002060Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2061 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2062 // prototype method
2063 prototype->GetDexCacheResolvedMethods()->Set(prototype->GetDexMethodIndex(), prototype.get());
2064 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002065 // as necessary
2066 Method* method = down_cast<Method*>(prototype->Clone());
2067
2068 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2069 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002070 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002071 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002072
Ian Rogers466bb252011-10-14 03:29:56 -07002073 // At runtime the method looks like a reference and argument saving method, clone the code
2074 // related parameters from this method.
2075 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2076 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2077 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2078 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
2079 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogersc2b44472011-12-14 21:17:17 -08002080 return method;
2081}
Jesse Wilson95caa792011-10-12 18:14:17 -04002082
Ian Rogersc2b44472011-12-14 21:17:17 -08002083static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002084 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002085 CHECK(!prototype->IsFinal());
2086 CHECK(method->IsFinal());
2087 CHECK(!method->IsAbstract());
2088 MethodHelper mh(method);
2089 const char* method_name = mh.GetName();
2090 const char* method_shorty = mh.GetShorty();
2091 Class* method_return = mh.GetReturnType();
2092
2093 mh.ChangeMethod(prototype.get());
2094
2095 CHECK_STREQ(mh.GetName(), method_name);
2096 CHECK_STREQ(mh.GetShorty(), method_shorty);
Ian Rogers466bb252011-10-14 03:29:56 -07002097
2098 // More complex sanity - via dex cache
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002099 CHECK_EQ(mh.GetReturnType(), method_return);
Jesse Wilson95caa792011-10-12 18:14:17 -04002100}
2101
Brian Carlstrom25c33252011-09-18 15:58:35 -07002102bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002103 CHECK(klass->IsResolved() || klass->IsErroneous())
2104 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002105
Carl Shapirob5573532011-07-12 18:22:59 -07002106 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002107
Brian Carlstrom25c33252011-09-18 15:58:35 -07002108 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002109 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002110 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002111 ObjectLock lock(klass);
2112
Brian Carlstromd1422f82011-09-28 11:37:09 -07002113 if (klass->GetStatus() == Class::kStatusInitialized) {
2114 return true;
2115 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002116
Brian Carlstromd1422f82011-09-28 11:37:09 -07002117 if (klass->IsErroneous()) {
2118 ThrowEarlierClassFailure(klass);
2119 return false;
2120 }
2121
2122 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002123 VerifyClass(klass);
2124 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002125 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002126 return false;
2127 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002128 }
2129
Brian Carlstrom25c33252011-09-18 15:58:35 -07002130 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2131 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002132 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers595799e2012-01-11 17:32:51 -08002133 // don't bother going to kStatusInitializing. We return true to maintain
2134 // the invariant that a false result implies there is a pending exception.
2135 return true;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002136 }
2137
Brian Carlstromd1422f82011-09-28 11:37:09 -07002138 // If the class is kStatusInitializing, either this thread is
2139 // initializing higher up the stack or another thread has beat us
2140 // to initializing and we need to wait. Either way, this
2141 // invocation of InitializeClass will not be responsible for
2142 // running <clinit> and will return.
2143 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002144 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002145 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002146 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002147 return true;
2148 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002149 // No. That's fine. Wait for another thread to finish initializing.
2150 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002151 }
2152
2153 if (!ValidateSuperClassDescriptors(klass)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002154 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002155 klass->SetStatus(Class::kStatusError);
2156 return false;
2157 }
2158
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002159 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002160
Elliott Hughesdcc24742011-09-07 14:02:44 -07002161 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002162 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002163 }
2164
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002165 uint64_t t0 = NanoTime();
2166
Brian Carlstrom25c33252011-09-18 15:58:35 -07002167 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers595799e2012-01-11 17:32:51 -08002168 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002169 return false;
2170 }
2171
2172 InitializeStaticFields(klass);
2173
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002174 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002175 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002176 }
2177
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002178 uint64_t t1 = NanoTime();
2179
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002180 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002181 {
2182 ObjectLock lock(klass);
2183
2184 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002185 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002186 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002187 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002188 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002189 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2190 RuntimeStats* thread_stats = self->GetStats();
2191 ++global_stats->class_init_count;
2192 ++thread_stats->class_init_count;
2193 global_stats->class_init_time_ns += (t1 - t0);
2194 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002195 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002196 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002197 ClassHelper kh(klass);
2198 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002199 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002200 }
2201 lock.NotifyAll();
2202 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002203 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002204}
2205
Brian Carlstromd1422f82011-09-28 11:37:09 -07002206bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2207 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002208 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002209 lock.Wait();
2210
2211 // When we wake up, repeat the test for init-in-progress. If
2212 // there's an exception pending (only possible if
2213 // "interruptShouldThrow" was set), bail out.
2214 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002215 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002216 klass->SetStatus(Class::kStatusError);
2217 return false;
2218 }
2219 // Spurious wakeup? Go back to waiting.
2220 if (klass->GetStatus() == Class::kStatusInitializing) {
2221 continue;
2222 }
2223 if (klass->IsErroneous()) {
2224 // The caller wants an exception, but it was thrown in a
2225 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002226 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002227 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002228 return false;
2229 }
2230 if (klass->IsInitialized()) {
2231 return true;
2232 }
2233 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2234 }
2235 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2236}
2237
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002238bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2239 if (klass->IsInterface()) {
2240 return true;
2241 }
2242 // begin with the methods local to the superclass
2243 if (klass->HasSuperClass() &&
2244 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2245 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002246 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2247 const Method* method = klass->GetVTable()->Get(i);
2248 if (method != super->GetVTable()->Get(i) &&
2249 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002250 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2251 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2252 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002253 return false;
2254 }
2255 }
2256 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002257 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2258 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2259 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002260 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2261 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002262 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002263 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2264 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002265 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2266 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2267 PrettyMethod(method).c_str(),
2268 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002269 return false;
2270 }
2271 }
2272 }
2273 }
2274 return true;
2275}
2276
Ian Rogers595799e2012-01-11 17:32:51 -08002277// Returns true if classes referenced by the signature of the method are the
2278// same classes in klass1 as they are in klass2.
2279bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2280 const Class* klass1,
2281 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002282 if (klass1 == klass2) {
2283 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002284 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002285 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002286 const DexFile::ProtoId& proto_id =
2287 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002288 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2289 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002290 if (descriptor == NULL) {
2291 break;
2292 }
2293 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2294 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002295 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002296 return false;
2297 }
2298 }
2299 }
2300 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002301 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002302 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002303 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002304 return false;
2305 }
2306 }
2307 return true;
2308}
2309
Ian Rogers595799e2012-01-11 17:32:51 -08002310// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2311bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2312 const Class* klass1,
2313 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002314 CHECK(descriptor != NULL);
2315 CHECK(klass1 != NULL);
2316 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002317 if (klass1 == klass2) {
2318 return true;
2319 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002320 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002321 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002322 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002323 }
Ian Rogers595799e2012-01-11 17:32:51 -08002324 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2325 if (found2 == NULL) {
2326 Thread::Current()->ClearException();
2327 }
2328 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002329}
2330
Brian Carlstrom25c33252011-09-18 15:58:35 -07002331bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002332 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002333 if (!klass->IsInterface() && klass->HasSuperClass()) {
2334 Class* super_class = klass->GetSuperClass();
2335 if (super_class->GetStatus() != Class::kStatusInitialized) {
2336 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002337 Thread* self = Thread::Current();
2338 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002339 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002340 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002341 // TODO: check for a pending exception
2342 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002343 if (!can_run_clinit) {
2344 // Don't set status to error when we can't run <clinit>.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002345 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002346 klass->SetStatus(Class::kStatusVerified);
2347 return false;
2348 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002349 klass->SetStatus(Class::kStatusError);
2350 klass->NotifyAll();
2351 return false;
2352 }
2353 }
2354 }
2355 return true;
2356}
2357
Brian Carlstrom25c33252011-09-18 15:58:35 -07002358bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002359 CHECK(c != NULL);
2360 if (c->IsInitialized()) {
2361 return true;
2362 }
2363
Elliott Hughes5f791332011-09-15 17:45:30 -07002364 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002365 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002366 bool success = InitializeClass(c, can_run_clinit);
2367 if (!success) {
2368 CHECK(self->IsExceptionPending());
2369 }
2370 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002371}
2372
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002373void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002374 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002375 const ClassLoader* cl = c->GetClassLoader();
2376 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002377 ClassDataItemIterator it(dex_file, class_data);
2378 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2379 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002380 }
2381}
2382
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002383void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002384 size_t num_static_fields = klass->NumStaticFields();
2385 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002386 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002387 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002388 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002389 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002390 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002391 return;
2392 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002393 ClassHelper kh(klass);
2394 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002395 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002396 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002397 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002398
Ian Rogers0571d352011-11-03 19:51:38 -07002399 if (it.HasNext()) {
2400 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2401 std::map<uint32_t, Field*> field_map;
2402 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2403 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2404 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002405 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002406 }
2407}
2408
Ian Rogersc2b44472011-12-14 21:17:17 -08002409bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002410 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002411 if (!LinkSuperClass(klass)) {
2412 return false;
2413 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002414 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002415 return false;
2416 }
2417 if (!LinkInstanceFields(klass)) {
2418 return false;
2419 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002420 if (!LinkStaticFields(klass)) {
2421 return false;
2422 }
2423 CreateReferenceInstanceOffsets(klass);
2424 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002425 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2426 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002427 return true;
2428}
2429
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002430bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002431 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002432 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2433 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002434 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002435 uint16_t super_class_idx = class_def->superclass_idx_;
2436 if (super_class_idx != DexFile::kDexNoIndex16) {
2437 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002438 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002439 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002440 return false;
2441 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002442 // Verify
2443 if (!klass->CanAccess(super_class)) {
2444 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2445 "Class %s extended by class %s is inaccessible",
2446 PrettyDescriptor(super_class).c_str(),
2447 PrettyDescriptor(klass.get()).c_str());
2448 return false;
2449 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002450 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002451 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002452 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2453 if (interfaces != NULL) {
2454 for (size_t i = 0; i < interfaces->Size(); i++) {
2455 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2456 Class* interface = ResolveType(dex_file, idx, klass.get());
2457 if (interface == NULL) {
2458 DCHECK(Thread::Current()->IsExceptionPending());
2459 return false;
2460 }
2461 // Verify
2462 if (!klass->CanAccess(interface)) {
2463 // TODO: the RI seemed to ignore this in my testing.
2464 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2465 "Interface %s implemented by class %s is inaccessible",
2466 PrettyDescriptor(interface).c_str(),
2467 PrettyDescriptor(klass.get()).c_str());
2468 return false;
2469 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002470 }
2471 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002472 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002473 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002474 return true;
2475}
2476
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002477bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002478 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002479 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002480 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002481 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002482 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002483 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002484 return false;
2485 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002486 return true;
2487 }
2488 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002489 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002490 return false;
2491 }
2492 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002493 if (super->IsFinal() || super->IsInterface()) {
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002494 Thread* thread = Thread::Current();
2495 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002496 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002497 PrettyDescriptor(super).c_str(),
2498 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002499 super->IsFinal() ? "declared final" : "an interface");
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002500 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002501 return false;
2502 }
2503 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002504 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002505 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002506 PrettyDescriptor(super).c_str(),
2507 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002508 return false;
2509 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002510
2511 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2512 if (super->IsFinalizable()) {
2513 klass->SetFinalizable();
2514 }
2515
Elliott Hughes2da50362011-10-10 16:57:08 -07002516 // Inherit reference flags (if any) from the superclass.
2517 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2518 if (reference_flags != 0) {
2519 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2520 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002521 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002522 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002523 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002524 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002525 return false;
2526 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002527
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002528#ifndef NDEBUG
2529 // Ensure super classes are fully resolved prior to resolving fields..
2530 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002531 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002532 super = super->GetSuperClass();
2533 }
2534#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002535 return true;
2536}
2537
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002538// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002539bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002540 if (klass->IsInterface()) {
2541 // No vtable.
2542 size_t count = klass->NumVirtualMethods();
2543 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002544 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002545 return false;
2546 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002547 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002548 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002549 }
jeffhaobdb76512011-09-07 11:43:16 -07002550 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002551 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002552 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002553 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002554 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002555 }
2556 return true;
2557}
2558
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002559bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002560 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002561 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2562 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002563 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002564 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002565 ObjectArray<Method>* vtable = klass->GetSuperClass()->GetVTable()->CopyOf(max_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002566 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002567 MethodHelper local_mh(NULL, this);
2568 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002569 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002570 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002571 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002572 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002573 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002574 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002575 super_mh.ChangeMethod(super_method);
2576 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002577 // Verify
2578 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002579 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002580 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002581 PrettyDescriptor(klass.get()).c_str(),
2582 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002583 return false;
2584 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002585 vtable->Set(j, local_method);
2586 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002587 break;
2588 }
2589 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002590 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002591 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002592 vtable->Set(actual_count, local_method);
2593 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002594 actual_count += 1;
2595 }
2596 }
2597 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002598 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002599 return false;
2600 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002601 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002602 CHECK_LE(actual_count, max_count);
2603 if (actual_count < max_count) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002604 vtable = vtable->CopyOf(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002605 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002606 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002607 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002608 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002609 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002610 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002611 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002612 return false;
2613 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002614 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002615 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002616 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2617 vtable->Set(i, virtual_method);
2618 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002619 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002620 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002621 }
2622 return true;
2623}
2624
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002625bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002626 size_t super_ifcount;
2627 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002628 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002629 } else {
2630 super_ifcount = 0;
2631 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002632 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002633 ClassHelper kh(klass.get(), this);
2634 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2635 ifcount += num_interfaces;
2636 for (size_t i = 0; i < num_interfaces; i++) {
2637 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2638 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002639 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002640 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002641 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002642 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002643 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002644 return true;
2645 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002646 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002647 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002648 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2649 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002650 Class* super_interface = super_iftable->Get(i)->GetInterface();
2651 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002652 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002653 }
2654 // Flatten the interface inheritance hierarchy.
2655 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002656 for (size_t i = 0; i < num_interfaces; i++) {
2657 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002658 DCHECK(interface != NULL);
2659 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002660 ClassHelper ih(interface);
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002661 Thread* thread = Thread::Current();
2662 thread->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002663 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002664 PrettyDescriptor(klass.get()).c_str(),
2665 PrettyDescriptor(ih.GetDescriptor()).c_str());
Ian Rogers5fc5a0c2011-12-13 10:39:49 -08002666 klass->SetVerifyErrorClass(thread->GetException()->GetClass());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002667 return false;
2668 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002669 // Check if interface is already in iftable
2670 bool duplicate = false;
2671 for (size_t j = 0; j < idx; j++) {
2672 Class* existing_interface = iftable->Get(j)->GetInterface();
2673 if (existing_interface == interface) {
2674 duplicate = true;
2675 break;
2676 }
2677 }
2678 if (!duplicate) {
2679 // Add this non-duplicate interface.
2680 iftable->Set(idx++, AllocInterfaceEntry(interface));
2681 // Add this interface's non-duplicate super-interfaces.
2682 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2683 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2684 bool super_duplicate = false;
2685 for (size_t k = 0; k < idx; k++) {
2686 Class* existing_interface = iftable->Get(k)->GetInterface();
2687 if (existing_interface == super_interface) {
2688 super_duplicate = true;
2689 break;
2690 }
2691 }
2692 if (!super_duplicate) {
2693 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2694 }
2695 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002696 }
2697 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002698 // Shrink iftable in case duplicates were found
2699 if (idx < ifcount) {
2700 iftable.reset(iftable->CopyOf(idx));
2701 ifcount = idx;
2702 } else {
2703 CHECK_EQ(idx, ifcount);
2704 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002705 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002706
2707 // If we're an interface, we don't need the vtable pointers, so we're done.
2708 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002709 return true;
2710 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002711 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002712 MethodHelper vtable_mh(NULL, this);
2713 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002714 for (size_t i = 0; i < ifcount; ++i) {
2715 InterfaceEntry* interface_entry = iftable->Get(i);
2716 Class* interface = interface_entry->GetInterface();
2717 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2718 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002719 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002720 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2721 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002722 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002723 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002724 // For each method listed in the interface's method list, find the
2725 // matching method in our class's method list. We want to favor the
2726 // subclass over the superclass, which just requires walking
2727 // back from the end of the vtable. (This only matters if the
2728 // superclass defines a private method and this class redefines
2729 // it -- otherwise it would use the same vtable slot. In .dex files
2730 // those don't end up in the virtual method table, so it shouldn't
2731 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002732 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2733 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002734 vtable_mh.ChangeMethod(vtable_method);
2735 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002736 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002737 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002738 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002739 return false;
2740 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002741 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002742 break;
2743 }
2744 }
2745 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002746 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002747 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002748 Method* mir_method = miranda_list[mir];
2749 vtable_mh.ChangeMethod(mir_method);
2750 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002751 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002752 break;
2753 }
2754 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002755 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002756 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002757 miranda_method.reset(AllocMethod());
2758 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2759 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002760 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002761 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002762 }
2763 }
2764 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002765 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002766 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002767 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002768 klass->SetVirtualMethods((old_method_count == 0)
2769 ? AllocObjectArray<Method>(new_method_count)
2770 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002771
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002772 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2773 CHECK(vtable != NULL);
2774 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002775 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002776 vtable = vtable->CopyOf(new_vtable_count);
Elliott Hughes4681c802011-09-25 18:04:37 -07002777 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002778 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002779 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002780 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2781 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2782 klass->SetVirtualMethod(old_method_count + i, method);
2783 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002784 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002785 // TODO: do not assign to the vtable field until it is fully constructed.
2786 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002787 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002788
2789 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2790 for (int i = 0; i < vtable->GetLength(); ++i) {
2791 CHECK(vtable->Get(i) != NULL);
2792 }
2793
2794// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2795
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002796 return true;
2797}
2798
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002799bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2800 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002801 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002802}
2803
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002804bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2805 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002806 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002807 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002808 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002809 return success;
2810}
2811
Brian Carlstromdbc05252011-09-09 01:59:59 -07002812struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08002813 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002814 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002815 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002816 fh_->ChangeField(field1);
2817 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
2818 fh_->ChangeField(field2);
2819 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002820 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2821 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2822 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2823 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002824 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2825 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2826 if (order1 != order2) {
2827 return order1 < order2;
2828 }
2829
2830 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002831 fh_->ChangeField(field1);
2832 StringPiece name1(fh_->GetName());
2833 fh_->ChangeField(field2);
2834 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07002835 return name1 < name2;
2836 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002837
2838 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002839};
2840
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002841bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002842 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002843 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002844
2845 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002846 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002847
2848 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002849 size_t size;
2850 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002851 if (is_static) {
2852 size = klass->GetClassSize();
2853 field_offset = Class::FieldsOffset();
2854 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002855 Class* super_class = klass->GetSuperClass();
2856 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002857 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002858 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002859 }
2860 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002861 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002862
Brian Carlstromdbc05252011-09-09 01:59:59 -07002863 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002864
Brian Carlstromdbc05252011-09-09 01:59:59 -07002865 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002866 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002867 std::deque<Field*> grouped_and_sorted_fields;
2868 for (size_t i = 0; i < num_fields; i++) {
2869 grouped_and_sorted_fields.push_back(fields->Get(i));
2870 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002871 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002872 std::sort(grouped_and_sorted_fields.begin(),
2873 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002874 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002875
2876 // References should be at the front.
2877 size_t current_field = 0;
2878 size_t num_reference_fields = 0;
2879 for (; current_field < num_fields; current_field++) {
2880 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002881 fh.ChangeField(field);
2882 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002883 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002884 if (isPrimitive) {
2885 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002886 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002887 grouped_and_sorted_fields.pop_front();
2888 num_reference_fields++;
2889 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002890 field->SetOffset(field_offset);
2891 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002892 }
2893
2894 // Now we want to pack all of the double-wide fields together. If
2895 // we're not aligned, though, we want to shuffle one 32-bit field
2896 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002897 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002898 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2899 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002900 fh.ChangeField(field);
2901 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002902 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2903 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002904 continue;
2905 }
2906 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002907 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002908 // drop the consumed field
2909 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2910 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002911 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002912 // whether we found a 32-bit field for padding or not, we advance
2913 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002914 }
2915
2916 // Alignment is good, shuffle any double-wide fields forward, and
2917 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002918 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002919 while (!grouped_and_sorted_fields.empty()) {
2920 Field* field = grouped_and_sorted_fields.front();
2921 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002922 fh.ChangeField(field);
2923 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002924 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002925 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002926 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002927 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002928 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002929 ? sizeof(uint64_t)
2930 : sizeof(uint32_t)));
2931 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002932 }
2933
Elliott Hughesadb460d2011-10-05 17:02:34 -07002934 // 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 -08002935 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
2936 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002937 // We know there are no non-reference fields in the Reference classes, and we know
2938 // that 'referent' is alphabetically last, so this is easy...
2939 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002940 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08002941 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07002942 --num_reference_fields;
2943 }
2944
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002945#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07002946 // Make sure that all reference fields appear before
2947 // non-reference fields, and all double-wide fields are aligned.
2948 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002949 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002950 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002951 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002952 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002953 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002954 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002955 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
2956 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002957 fh.ChangeField(field);
2958 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002959 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002960 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07002961 is_primitive = true; // We lied above, so we have to expect a lie here.
2962 }
2963 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07002964 if (!seen_non_ref) {
2965 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002966 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002967 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002968 } else {
2969 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002970 }
2971 }
Brian Carlstrombe977852011-07-19 14:54:54 -07002972 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07002973 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002974 }
2975#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002976 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002977 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002978 if (is_static) {
2979 klass->SetNumReferenceStaticFields(num_reference_fields);
2980 klass->SetClassSize(size);
2981 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002982 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002983 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002984 klass->SetObjectSize(size);
2985 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002986 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002987 return true;
2988}
2989
2990// Set the bitmap of reference offsets, refOffsets, from the ifields
2991// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002992void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002993 uint32_t reference_offsets = 0;
2994 Class* super_class = klass->GetSuperClass();
2995 if (super_class != NULL) {
2996 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002997 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002998 if (reference_offsets == CLASS_WALK_SUPER) {
2999 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003000 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003001 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003002 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003003 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003004}
3005
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003006void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003007 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003008}
3009
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003010void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003011 uint32_t reference_offsets) {
3012 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003013 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3014 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003015 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003016 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003017 // All of the fields that contain object references are guaranteed
3018 // to be at the beginning of the fields list.
3019 for (size_t i = 0; i < num_reference_fields; ++i) {
3020 // Note that byte_offset is the offset from the beginning of
3021 // object, not the offset into instance data
3022 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003023 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003024 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3025 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3026 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003027 CHECK_NE(new_bit, 0U);
3028 reference_offsets |= new_bit;
3029 } else {
3030 reference_offsets = CLASS_WALK_SUPER;
3031 break;
3032 }
3033 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003034 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003035 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003036 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003037 } else {
3038 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003039 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003040}
3041
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003042String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003043 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003044 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003045 if (resolved != NULL) {
3046 return resolved;
3047 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003048 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3049 int32_t utf16_length = dex_file.GetStringLength(string_id);
3050 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003051 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003052 dex_cache->SetResolvedString(string_idx, string);
3053 return string;
3054}
3055
3056Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003057 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003058 DexCache* dex_cache,
3059 const ClassLoader* class_loader) {
3060 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003061 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003062 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003063 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003064 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003065 // TODO: we used to throw here if resolved's class loader was not the
3066 // boot class loader. This was to permit different classes with the
3067 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003068 dex_cache->SetResolvedType(type_idx, resolved);
3069 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003070 CHECK(Thread::Current()->IsExceptionPending())
3071 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003072 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003073 }
3074 return resolved;
3075}
3076
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003077Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3078 uint32_t method_idx,
3079 DexCache* dex_cache,
3080 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003081 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003082 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3083 if (resolved != NULL) {
3084 return resolved;
3085 }
3086 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3087 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3088 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003089 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003090 return NULL;
3091 }
3092
Ian Rogers0571d352011-11-03 19:51:38 -07003093 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3094 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003095 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003096 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003097 } else if (klass->IsInterface()) {
3098 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003099 } else {
3100 resolved = klass->FindVirtualMethod(name, signature);
3101 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003102 if (resolved != NULL) {
3103 dex_cache->SetResolvedMethod(method_idx, resolved);
3104 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003105 ThrowNoSuchMethodError(is_direct, klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003106 }
3107 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003108}
3109
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003110Field* ClassLinker::ResolveField(const DexFile& dex_file,
3111 uint32_t field_idx,
3112 DexCache* dex_cache,
3113 const ClassLoader* class_loader,
3114 bool is_static) {
3115 Field* resolved = dex_cache->GetResolvedField(field_idx);
3116 if (resolved != NULL) {
3117 return resolved;
3118 }
3119 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3120 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3121 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003122 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003123 return NULL;
3124 }
3125
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003126 const char* name = dex_file.GetFieldName(field_id);
3127 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003128 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003129 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003130 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003131 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003132 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003133 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003134 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003135 } else {
Ian Rogersb067ac22011-12-13 18:05:09 -08003136 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3137 }
3138 return resolved;
3139}
3140
3141Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3142 uint32_t field_idx,
3143 DexCache* dex_cache,
3144 const ClassLoader* class_loader) {
3145 Field* resolved = dex_cache->GetResolvedField(field_idx);
3146 if (resolved != NULL) {
3147 return resolved;
3148 }
3149 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3150 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3151 if (klass == NULL) {
3152 DCHECK(Thread::Current()->IsExceptionPending());
3153 return NULL;
3154 }
3155
3156 const char* name = dex_file.GetFieldName(field_id);
3157 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3158 resolved = klass->FindField(name, type);
3159 if (resolved != NULL) {
3160 dex_cache->SetResolvedField(field_idx, resolved);
3161 } else {
3162 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003163 }
3164 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003165}
3166
Ian Rogersad25ac52011-10-04 19:13:33 -07003167const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
3168 Class* declaring_class = referrer->GetDeclaringClass();
3169 DexCache* dex_cache = declaring_class->GetDexCache();
3170 const DexFile& dex_file = FindDexFile(dex_cache);
3171 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3172 return dex_file.GetShorty(method_id.proto_idx_);
3173}
3174
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003175void ClassLinker::DumpAllClasses(int flags) const {
3176 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3177 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3178 std::vector<Class*> all_classes;
3179 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003180 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003181 typedef Table::const_iterator It; // TODO: C++0x auto
3182 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3183 all_classes.push_back(it->second);
3184 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003185 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3186 all_classes.push_back(it->second);
3187 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003188 }
3189
3190 for (size_t i = 0; i < all_classes.size(); ++i) {
3191 all_classes[i]->DumpClass(std::cerr, flags);
3192 }
3193}
3194
Elliott Hughescac6cc72011-11-03 20:31:21 -07003195void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3196 MutexLock mu(classes_lock_);
3197 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3198 << classes_.size() << " allocated classes\n";
3199}
3200
Elliott Hughese27955c2011-08-26 15:21:24 -07003201size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003202 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003203 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003204}
3205
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003206pid_t ClassLinker::GetClassesLockOwner() {
3207 return classes_lock_.GetOwner();
3208}
3209
3210pid_t ClassLinker::GetDexLockOwner() {
3211 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003212}
3213
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003214void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3215 DCHECK(!init_done_);
3216
3217 DCHECK(klass != NULL);
3218 DCHECK(klass->GetClassLoader() == NULL);
3219
3220 DCHECK(class_roots_ != NULL);
3221 DCHECK(class_roots_->Get(class_root) == NULL);
3222 class_roots_->Set(class_root, klass);
3223}
3224
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003225} // namespace art