blob: 51e5f3c2ec0947dae65e63dbc68ad20d9ffd5149 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Brian Carlstromd601af82012-01-06 10:15:19 -080019#include <fcntl.h>
20#include <sys/file.h>
21#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080022#include <sys/types.h>
23#include <sys/wait.h>
24
Brian Carlstromdbc05252011-09-09 01:59:59 -070025#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070026#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070028#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080032#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070033#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070034#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "dex_verifier.h"
36#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070037#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070038#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070039#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070040#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070041#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080042#include "object_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070043#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070044#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070045#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070046#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070047#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070048#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070049#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070050#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070051#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070052
53namespace art {
54
Elliott Hughes4a2b4172011-09-20 17:08:25 -070055namespace {
56
Elliott Hughes362f9bc2011-10-17 18:56:41 -070057void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070058void ThrowNoClassDefFoundError(const char* fmt, ...) {
59 va_list args;
60 va_start(args, fmt);
61 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
62 va_end(args);
63}
64
Elliott Hughes362f9bc2011-10-17 18:56:41 -070065void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070066void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070067 va_list args;
68 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070069 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070070 va_end(args);
71}
72
Elliott Hughes362f9bc2011-10-17 18:56:41 -070073void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070074void ThrowLinkageError(const char* fmt, ...) {
75 va_list args;
76 va_start(args, fmt);
77 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
78 va_end(args);
79}
80
Ian Rogers9f1ab122011-12-12 08:52:43 -080081void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
82 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080083 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070084 std::ostringstream msg;
Ian Rogers9f1ab122011-12-12 08:52:43 -080085 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << "." << signature
86 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080087 std::string location(kh.GetLocation());
88 if (!location.empty()) {
89 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070090 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070091 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070092}
93
Ian Rogersb067ac22011-12-13 18:05:09 -080094void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers9f1ab122011-12-12 08:52:43 -080095 const StringPiece& name) {
96 ClassHelper kh(c);
97 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -080098 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080099 << " in class " << kh.GetDescriptor() << " or its superclasses";
100 std::string location(kh.GetLocation());
101 if (!location.empty()) {
102 msg << " (defined in " << location << ")";
103 }
104 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
105}
106
Ian Rogerscab01012012-01-10 17:35:46 -0800107void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
108void ThrowNullPointerException(const char* fmt, ...) {
109 va_list args;
110 va_start(args, fmt);
111 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
112 va_end(args);
113}
114
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700115void ThrowEarlierClassFailure(Class* c) {
116 /*
117 * The class failed to initialize on a previous attempt, so we want to throw
118 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
119 * failed in verification, in which case v2 5.4.1 says we need to re-throw
120 * the previous error.
121 */
122 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
123
Brian Carlstrom4d9716c2012-01-30 01:49:33 -0800124 CHECK(c->IsErroneous()) << PrettyClass(c);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700125 if (c->GetVerifyErrorClass() != NULL) {
126 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800127 ClassHelper ve_ch(c->GetVerifyErrorClass());
128 std::string error_descriptor(ve_ch.GetDescriptor());
129 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700130 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800131 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700132 }
133}
134
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700135void WrapExceptionInInitializer() {
136 JNIEnv* env = Thread::Current()->GetJniEnv();
137
138 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
139 CHECK(cause.get() != NULL);
140
141 env->ExceptionClear();
142
143 // TODO: add java.lang.Error to JniConstants?
144 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
145 CHECK(error_class.get() != NULL);
146 if (env->IsInstanceOf(cause.get(), error_class.get())) {
147 // We only wrap non-Error exceptions; an Error can just be used as-is.
148 env->Throw(cause.get());
149 return;
150 }
151
152 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
153 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
154 CHECK(eiie_class.get() != NULL);
155
156 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
157 CHECK(mid != NULL);
158
159 ScopedLocalRef<jthrowable> eiie(env,
160 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
161 env->Throw(eiie.get());
162}
163
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800164static size_t Hash(const char* s) {
165 // This is the java.lang.String hashcode for convenience, not interoperability.
166 size_t hash = 0;
167 for (; *s != '\0'; ++s) {
168 hash = hash * 31 + *s;
169 }
170 return hash;
171}
172
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700173} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700174
Elliott Hughes418d20f2011-09-22 14:00:39 -0700175const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700176 "Ljava/lang/Class;",
177 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700178 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700179 "[Ljava/lang/Object;",
180 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700181 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700182 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700183 "Ljava/lang/reflect/Field;",
184 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700185 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700186 "Ljava/lang/ClassLoader;",
187 "Ldalvik/system/BaseDexClassLoader;",
188 "Ldalvik/system/PathClassLoader;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700189 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700190 "Z",
191 "B",
192 "C",
193 "D",
194 "F",
195 "I",
196 "J",
197 "S",
198 "V",
199 "[Z",
200 "[B",
201 "[C",
202 "[D",
203 "[F",
204 "[I",
205 "[J",
206 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700207 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700208};
209
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800210ClassLinker* ClassLinker::Create(const std::string& boot_class_path, InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700211 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800212 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700213 class_linker->Init(boot_class_path);
214 return class_linker.release();
215}
216
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800217ClassLinker* ClassLinker::Create(InternTable* intern_table) {
218 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700219 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700220 return class_linker.release();
221}
222
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800223ClassLinker::ClassLinker(InternTable* intern_table)
224 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700225 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700226 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700227 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700228 init_done_(false),
229 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700230 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700231}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700232
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700233void CreateClassPath(const std::string& class_path,
234 std::vector<const DexFile*>& class_path_vector) {
235 std::vector<std::string> parsed;
236 Split(class_path, ':', parsed);
237 for (size_t i = 0; i < parsed.size(); ++i) {
238 const DexFile* dex_file = DexFile::Open(parsed[i], Runtime::Current()->GetHostPrefix());
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700239 if (dex_file == NULL) {
240 LOG(WARNING) << "Failed to open dex file " << parsed[i];
241 } else {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700242 class_path_vector.push_back(dex_file);
243 }
244 }
245}
246
247void ClassLinker::Init(const std::string& boot_class_path) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800248 VLOG(startup) << "ClassLinker::InitFrom entering boot_class_path=" << boot_class_path;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700249
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700250 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700251
Elliott Hughes30646832011-10-13 16:59:46 -0700252 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700253 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
254 CHECK(java_lang_Class.get() != NULL);
255 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700256 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700257 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700258
Elliott Hughes418d20f2011-09-22 14:00:39 -0700259 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700260 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
261 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700262
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700263 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700264 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
265 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700266 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700267 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700268 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700269
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700270 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700271 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
272 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700273
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700274 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700275 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700276
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700277 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700278 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
279 char_array_class->SetComponentType(char_class.get());
280 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700281
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700282 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700283 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
284 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700285 java_lang_String->SetObjectSize(sizeof(String));
286 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400287
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700288 // Create storage for root classes, save away our work so far (requires
289 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700290 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700291 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700292 SetClassRoot(kJavaLangClass, java_lang_Class.get());
293 SetClassRoot(kJavaLangObject, java_lang_Object.get());
294 SetClassRoot(kClassArrayClass, class_array_class.get());
295 SetClassRoot(kObjectArrayClass, object_array_class.get());
296 SetClassRoot(kCharArrayClass, char_array_class.get());
297 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700298
299 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700300 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
301 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
302 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
303 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
304 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
305 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
306 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
307 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700308
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700309 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700310 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700311
312 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700313 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700314 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700315 IntArray::SetArrayClass(int_array_class.get());
316 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700317
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700318 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700319
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700320 // setup boot_class_path_ and register class_path now that we can
321 // use AllocObjectArray to create DexCache instances
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700322 std::vector<const DexFile*> boot_class_path_vector;
323 CreateClassPath(boot_class_path, boot_class_path_vector);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700324 CHECK_NE(0U, boot_class_path_vector.size());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700325 for (size_t i = 0; i != boot_class_path_vector.size(); ++i) {
326 const DexFile* dex_file = boot_class_path_vector[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700327 CHECK(dex_file != NULL);
328 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700329 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700330
Elliott Hughes80609252011-09-23 17:24:51 -0700331 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700334 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700336 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
337
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700338 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
339 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700340 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700341 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700342 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700343 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700345 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700346 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700347 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700348 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700349 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700350 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351
352 // now we can use FindSystemClass
353
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700354 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700355 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700356 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700357
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700358 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700359 java_lang_Object->SetStatus(Class::kStatusNotReady);
360 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700361 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700362 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
363 java_lang_String->SetStatus(Class::kStatusNotReady);
364 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700365 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700366 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
367
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700368 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700369 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
370 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
371
372 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
373 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
374
375 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700376 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700377
378 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
379 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
380
381 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700382 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700383
384 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
385 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
386
387 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
388 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
389
390 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
391 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
392
Elliott Hughes418d20f2011-09-22 14:00:39 -0700393 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700394 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700395
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700396 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700397 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700398
399 // Setup the single, global copies of "interfaces" and "iftable"
400 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
401 CHECK(java_lang_Cloneable != NULL);
402 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
403 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700404 // We assume that Cloneable/Serializable don't have superinterfaces --
405 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700406 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800407 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
408 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700409
Elliott Hughes418d20f2011-09-22 14:00:39 -0700410 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800411 ClassHelper kh(class_array_class.get(), this);
412 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
413 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
414 kh.ChangeClass(object_array_class.get());
415 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
416 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700417 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700418 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700419 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700420 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700421
Elliott Hughes80609252011-09-23 17:24:51 -0700422 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
423 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700424 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700425
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700426 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700427 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700428 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700429
430 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700431 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700432 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700433
Ian Rogers466bb252011-10-14 03:29:56 -0700434 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
435
436 // Create java.lang.reflect.Proxy root
437 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
438 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
439
Brian Carlstrom1f870082011-08-23 16:02:11 -0700440 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700441 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
442 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700443 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700444 java_lang_ref_FinalizerReference->SetAccessFlags(
445 java_lang_ref_FinalizerReference->GetAccessFlags() |
446 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700447 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700448 java_lang_ref_PhantomReference->SetAccessFlags(
449 java_lang_ref_PhantomReference->GetAccessFlags() |
450 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700451 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700452 java_lang_ref_SoftReference->SetAccessFlags(
453 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700454 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700455 java_lang_ref_WeakReference->SetAccessFlags(
456 java_lang_ref_WeakReference->GetAccessFlags() |
457 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700458
Brian Carlstromaded5f72011-10-07 17:15:04 -0700459 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700460 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700461 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700462 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
463
464 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
465 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
466 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
467
468 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
469 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
470 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
471 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
472
473 // Set up java.lang.StackTraceElement as a convenience
Brian Carlstrom1f870082011-08-23 16:02:11 -0700474 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
475 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700476 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700477
Brian Carlstroma663ea52011-08-19 23:33:41 -0700478 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700479
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800480 VLOG(startup) << "ClassLinker::InitFrom exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700481}
482
483void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800484 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700485
486 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700487 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700488 // as the types of the field can't be resolved prior to the runtime being
489 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700490 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700491 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700492 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
493
Elliott Hughesadb460d2011-10-05 17:02:34 -0700494 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
495
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
497
Brian Carlstrom16192862011-09-12 17:50:06 -0700498 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800499 FieldHelper fh(pendingNext, this);
500 CHECK_STREQ(fh.GetName(), "pendingNext");
501 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
502 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700503
504 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800505 fh.ChangeField(queue);
506 CHECK_STREQ(fh.GetName(), "queue");
507 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
508 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700509
510 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800511 fh.ChangeField(queueNext);
512 CHECK_STREQ(fh.GetName(), "queueNext");
513 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
514 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700515
516 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800517 fh.ChangeField(referent);
518 CHECK_STREQ(fh.GetName(), "referent");
519 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
520 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700521
522 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800523 fh.ChangeField(zombie);
524 CHECK_STREQ(fh.GetName(), "zombie");
525 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
526 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700527
528 Heap::SetReferenceOffsets(referent->GetOffset(),
529 queue->GetOffset(),
530 queueNext->GetOffset(),
531 pendingNext->GetOffset(),
532 zombie->GetOffset());
533
Brian Carlstroma663ea52011-08-19 23:33:41 -0700534 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700535 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700536 ClassRoot class_root = static_cast<ClassRoot>(i);
537 Class* klass = GetClassRoot(class_root);
538 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700539 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700540 // note SetClassRoot does additional validation.
541 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700542 }
543
Elliott Hughes92f14b22011-10-06 12:29:54 -0700544 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700545
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700546 // disable the slow paths in FindClass and CreatePrimitiveClass now
547 // that Object, Class, and Object[] are setup
548 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700549
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800550 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700551}
552
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700553void ClassLinker::RunRootClinits() {
554 Thread* self = Thread::Current();
555 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
556 Class* c = GetClassRoot(ClassRoot(i));
557 if (!c->IsArrayClass() && !c->IsPrimitive()) {
558 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700559 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700560 }
561 }
562}
563
Brian Carlstromd601af82012-01-06 10:15:19 -0800564bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
565 int oat_fd,
566 const std::string& oat_cache_filename) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800567 std::string dex2oat_string("/system/bin/dex2oat");
568#ifndef NDEBUG
569 dex2oat_string += 'd';
570#endif
571 const char* dex2oat = dex2oat_string.c_str();
572
573 const char* class_path = Runtime::Current()->GetClassPath().c_str();
574
575 std::string boot_image_option_string("--boot-image=");
Ian Rogers30fab402012-01-23 15:43:46 -0800576 boot_image_option_string += Heap::GetSpaces()[0]->AsImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800577 const char* boot_image_option = boot_image_option_string.c_str();
578
579 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800580 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800581 const char* dex_file_option = dex_file_option_string.c_str();
582
Brian Carlstromd601af82012-01-06 10:15:19 -0800583 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800584 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800585 const char* oat_fd_option = oat_fd_option_string.c_str();
586
587 std::string oat_name_option_string("--oat-name=");
588 oat_name_option_string += oat_cache_filename;
589 const char* oat_name_option = oat_name_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800590
jeffhao262bf462011-10-20 18:36:32 -0700591 // fork and exec dex2oat
592 pid_t pid = fork();
593 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800594 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800595
596 // change process groups, so we don't get reaped by ProcessManager
597 setpgid(0, 0);
598
jeffhao10037c82012-01-23 15:06:23 -0800599 VLOG(class_linker) << dex2oat
600 << " --runtime-arg -Xms64m"
601 << " --runtime-arg -Xmx64m"
602 << " --runtime-arg -classpath"
603 << " --runtime-arg " << class_path
604 << " " << boot_image_option
605 << " " << dex_file_option
606 << " " << oat_fd_option
607 << " " << oat_name_option;
608
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800609 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700610 "--runtime-arg", "-Xms64m",
611 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500612 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800613 "--runtime-arg", class_path,
614 boot_image_option,
615 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800616 oat_fd_option,
617 oat_name_option,
jeffhao262bf462011-10-20 18:36:32 -0700618 NULL);
619
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800620 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800621 return false;
jeffhao262bf462011-10-20 18:36:32 -0700622 } else {
623 // wait for dex2oat to finish
624 int status;
625 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
626 if (got_pid != pid) {
627 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800628 return false;
jeffhao262bf462011-10-20 18:36:32 -0700629 }
630 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800631 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
632 return false;
jeffhao262bf462011-10-20 18:36:32 -0700633 }
634 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800635 return true;
jeffhao262bf462011-10-20 18:36:32 -0700636}
637
Brian Carlstrom866c8622012-01-06 16:35:13 -0800638void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
639 MutexLock mu(dex_lock_);
640 RegisterOatFileLocked(oat_file);
641}
642
643void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
644 dex_lock_.AssertHeld();
645 oat_files_.push_back(&oat_file);
646}
647
Ian Rogers30fab402012-01-23 15:43:46 -0800648OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700649 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700650 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700651 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800652 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
653 // check the down cast
654 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700655 std::string oat_filename;
656 oat_filename += runtime->GetHostPrefix();
657 oat_filename += oat_location->ToModifiedUtf8();
Ian Rogers30fab402012-01-23 15:43:46 -0800658 OatFile* oat_file = OatFile::Open(oat_filename, "", image_header.GetOatBegin());
659 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700660 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700661 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700662 return NULL;
663 }
664 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
665 uint32_t image_oat_checksum = image_header.GetOatChecksum();
666 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800667 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700668 << " to expected oat checksum " << std::hex << oat_checksum
669 << " in image";
670 return NULL;
671 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800672 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800673 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700674 return oat_file;
675}
676
Brian Carlstromae826982011-11-09 01:33:42 -0800677const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
678 for (size_t i = 0; i < oat_files_.size(); i++) {
679 const OatFile* oat_file = oat_files_[i];
680 DCHECK(oat_file != NULL);
Ian Rogers7fe2c692011-12-06 16:35:59 -0800681 if (oat_file->GetOatDexFile(dex_file.GetLocation(), false)) {
Brian Carlstromae826982011-11-09 01:33:42 -0800682 return oat_file;
683 }
684 }
685 return NULL;
686}
687
Brian Carlstromd601af82012-01-06 10:15:19 -0800688class LockedFd {
689 public:
690 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
691 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
692 if (fd == -1) {
693 PLOG(ERROR) << "Failed to open file '" << name << "'";
694 return NULL;
695 }
696 fchmod(fd, mode);
697
698 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
699 // try to lock non-blocking so we can log if we need may need to block
700 int result = flock(fd, LOCK_EX | LOCK_NB);
701 if (result == -1) {
702 LOG(WARNING) << "sleeping while locking file " << name;
703 // retry blocking
704 result = flock(fd, LOCK_EX);
705 }
706 if (result == -1) {
707 PLOG(ERROR) << "Failed to lock file '" << name << "'";
708 close(fd);
709 return NULL;
710 }
711 return new LockedFd(fd);
712 }
713
714 int GetFd() const {
715 return fd_;
716 }
717
718 ~LockedFd() {
719 if (fd_ != -1) {
720 int result = flock(fd_, LOCK_UN);
721 if (result == -1) {
722 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
723 }
724 close(fd_);
725 }
726 }
727
728 private:
729 explicit LockedFd(int fd) : fd_(fd) {}
730
731 int fd_;
732};
733
Brian Carlstromae826982011-11-09 01:33:42 -0800734const OatFile* ClassLinker::FindOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700735 MutexLock mu(dex_lock_);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800736 const OatFile* open_oat_file = FindOpenedOatFileForDexFile(dex_file);
737 if (open_oat_file != NULL) {
738 return open_oat_file;
Brian Carlstromae826982011-11-09 01:33:42 -0800739 }
740
Brian Carlstromd601af82012-01-06 10:15:19 -0800741 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_file.GetLocation()));
Brian Carlstrom866c8622012-01-06 16:35:13 -0800742 open_oat_file = FindOpenedOatFileFromOatLocation(oat_filename);
743 if (open_oat_file != NULL) {
744 return open_oat_file;
745 }
746
Brian Carlstromd601af82012-01-06 10:15:19 -0800747 while (true) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800748 UniquePtr<const OatFile> oat_file(FindOatFileFromOatLocation(oat_filename));
749 if (oat_file.get() != NULL) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800750 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
751 if (dex_file.GetHeader().checksum_ == oat_dex_file->GetDexFileChecksum()) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800752 return oat_file.release();
Brian Carlstromd601af82012-01-06 10:15:19 -0800753 }
754 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
755 << " checksum mismatch with " << dex_file.GetLocation() << " --- regenerating";
756 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
757 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
758 }
759 // Fall through...
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700760 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800761 // Try to generate oat file if it wasn't found or was obsolete.
762 // Note we can be racing with another runtime to do this.
763 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
764 UniquePtr<LockedFd> locked_fd(LockedFd::CreateAndLock(oat_cache_filename, 0644));
765 if (locked_fd.get() == NULL) {
766 LOG(ERROR) << "Failed to create and lock oat file " << oat_cache_filename;
767 return NULL;
Elliott Hughes234da572011-11-03 22:13:06 -0700768 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800769 // Check to see if the fd we opened and locked matches the file in
770 // the filesystem. If they don't, then somebody else unlinked ours
771 // and created a new file, and we need to use that one instead. (If
772 // we caught them between the unlink and the create, we'll get an
773 // ENOENT from the file stat.)
774 struct stat fd_stat;
775 int fd_stat_result = fstat(locked_fd->GetFd(), &fd_stat);
776 if (fd_stat_result != 0) {
777 PLOG(ERROR) << "Failed to fstat file descriptor of oat file " << oat_cache_filename;
778 return NULL;
779 }
780 struct stat file_stat;
781 int file_stat_result = stat(oat_cache_filename.c_str(), &file_stat);
782 if (file_stat_result != 0
783 || fd_stat.st_dev != file_stat.st_dev
784 || fd_stat.st_ino != file_stat.st_ino) {
785 LOG(INFO) << "Opened oat file " << oat_cache_filename << " is stale; sleeping and retrying";
786 usleep(250 * 1000); // if something is hosed, don't peg machine
787 continue;
788 }
789
790 // We have the correct file open and locked. If the file size is
791 // zero, then it was just created by us and we can generate its
792 // contents. If not, someone else created it. Either way, we'll
793 // loop to retry opening the file.
794 if (fd_stat.st_size == 0) {
795 bool success = GenerateOatFile(dex_file.GetLocation(),
796 locked_fd->GetFd(),
797 oat_cache_filename);
798 if (!success) {
799 LOG(ERROR) << "Failed to generate oat file " << oat_cache_filename;
800 return NULL;
801 }
802 }
jeffhao262bf462011-10-20 18:36:32 -0700803 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800804 // Not reached
Brian Carlstromaded5f72011-10-07 17:15:04 -0700805}
806
Brian Carlstromae826982011-11-09 01:33:42 -0800807const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700808 for (size_t i = 0; i < oat_files_.size(); i++) {
809 const OatFile* oat_file = oat_files_[i];
810 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800811 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700812 return oat_file;
813 }
814 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700815 return NULL;
816}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700817
Brian Carlstromae826982011-11-09 01:33:42 -0800818const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800819 MutexLock mu(dex_lock_);
820 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
821 if (oat_file != NULL) {
822 return oat_file;
823 }
824
825 oat_file = OatFile::Open(oat_location, "", NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700826 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800827 if (oat_location.empty() || oat_location[0] != '/') {
828 LOG(ERROR) << "Failed to open oat file from " << oat_location;
Brian Carlstroma9f19782011-10-13 00:14:47 -0700829 return NULL;
830 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700831
Brian Carlstroma9f19782011-10-13 00:14:47 -0700832 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
Elliott Hughes95572412011-12-13 18:14:20 -0800833 std::string cache_location(GetArtCacheFilenameOrDie(oat_location));
Brian Carlstromae826982011-11-09 01:33:42 -0800834 oat_file = FindOpenedOatFileFromOatLocation(cache_location);
Brian Carlstromfad71432011-10-16 20:25:10 -0700835 if (oat_file != NULL) {
836 return oat_file;
837 }
Brian Carlstroma9f19782011-10-13 00:14:47 -0700838 oat_file = OatFile::Open(cache_location, "", NULL);
839 if (oat_file == NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800840 LOG(INFO) << "Failed to open oat file from " << oat_location << " or " << cache_location << ".";
Brian Carlstroma9f19782011-10-13 00:14:47 -0700841 return NULL;
842 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700843 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700844
Brian Carlstromae826982011-11-09 01:33:42 -0800845 CHECK(oat_file != NULL) << oat_location;
jeffhaof6174e82012-01-31 16:14:17 -0800846 RegisterOatFileLocked(*oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700847 return oat_file;
848}
849
jeffhaof6174e82012-01-31 16:14:17 -0800850const DexFile* ClassLinker::FindDexFileFromDexLocation(const std::string& location) {
851 std::string oat_location(OatFile::DexFilenameToOatFilename(location));
852 const OatFile* oat_file = FindOatFileFromOatLocation(oat_location);
853 if (oat_file == NULL) {
854 return NULL;
855 }
856 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(location);
857 if (oat_dex_file == NULL) {
858 return NULL;
859 }
860 const DexFile* dex_file = oat_dex_file->OpenDexFile();
861 if (dex_file == NULL) {
862 return NULL;
863 }
864 if (oat_dex_file->GetDexFileChecksum() != dex_file->GetHeader().checksum_) {
865 return NULL;
866 }
867 return dex_file;
868}
869
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700870void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800871 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700872 CHECK(!init_done_);
873
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700874 const std::vector<Space*>& spaces = Heap::GetSpaces();
875 for (size_t i = 0; i < spaces.size(); i++) {
Ian Rogers30fab402012-01-23 15:43:46 -0800876 if (spaces[i]->IsImageSpace()) {
877 ImageSpace* space = spaces[i]->AsImageSpace();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700878 OatFile* oat_file = OpenOat(space);
879 CHECK(oat_file != NULL) << "Failed to open oat file for image";
880 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
881 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
882
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800883 if (i == 0) {
884 // Special case of setting up the String class early so that we can test arbitrary objects
885 // as being Strings or not
Ian Rogers30fab402012-01-23 15:43:46 -0800886 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800887 ->AsObjectArray<Class>()->Get(kJavaLangString);
888 String::SetClass(java_lang_String);
889 }
890
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700891 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
892 static_cast<uint32_t>(dex_caches->GetLength()));
893 for (int i = 0; i < dex_caches->GetLength(); i++) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700894 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
Elliott Hughes95572412011-12-13 18:14:20 -0800895 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Brian Carlstrom89521892011-12-07 22:05:07 -0800896 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
897 const DexFile* dex_file = oat_dex_file->OpenDexFile();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700898 if (dex_file == NULL) {
Brian Carlstrom89521892011-12-07 22:05:07 -0800899 LOG(FATAL) << "Failed to open dex file " << dex_file_location
900 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700901 }
902
Brian Carlstromaded5f72011-10-07 17:15:04 -0700903 CHECK_EQ(dex_file->GetHeader().checksum_, oat_dex_file->GetDexFileChecksum());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700904
Brian Carlstromdf143242011-10-10 18:05:34 -0700905 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700906 }
907 }
908 }
909
Brian Carlstroma663ea52011-08-19 23:33:41 -0700910 HeapBitmap* heap_bitmap = Heap::GetLiveBits();
911 DCHECK(heap_bitmap != NULL);
912
Brian Carlstroma663ea52011-08-19 23:33:41 -0700913 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700914 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700915
916 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800917 Object* class_roots_object =
918 spaces[0]->AsImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700919 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700920
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800921 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700922 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
923 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800924 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700925 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700926 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700927 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
928 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
929 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
930 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
931 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
932 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
933 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
934 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700935 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700936 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700937
938 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700939
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800940 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700941}
942
Brian Carlstrom78128a62011-09-15 17:21:19 -0700943void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700944 DCHECK(obj != NULL);
945 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700946 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700947
Elliott Hughesdbb40792011-11-18 17:05:22 -0800948 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700949 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700950 return;
951 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700952 if (obj->IsClass()) {
953 // restore class to ClassLinker::classes_ table
954 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800955 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800956 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
957 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700958 return;
959 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700960}
961
962// Keep in sync with InitCallback. Anything we visit, we need to
963// reinit references to when reinitializing a ClassLinker from a
964// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700965void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
966 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700967
968 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700969 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700970 }
971
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700972 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700973 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700974 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700975 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700976 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700977 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700978 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700979 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700980
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700981 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700982}
983
Elliott Hughesa2155262011-11-16 16:26:58 -0800984void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
985 MutexLock mu(classes_lock_);
986 typedef Table::const_iterator It; // TODO: C++0x auto
987 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
988 if (!visitor(it->second, arg)) {
989 return;
990 }
991 }
992 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
993 if (!visitor(it->second, arg)) {
994 return;
995 }
996 }
997}
998
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700999ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001000 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001001 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001002 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001003 BooleanArray::ResetArrayClass();
1004 ByteArray::ResetArrayClass();
1005 CharArray::ResetArrayClass();
1006 DoubleArray::ResetArrayClass();
1007 FloatArray::ResetArrayClass();
1008 IntArray::ResetArrayClass();
1009 LongArray::ResetArrayClass();
1010 ShortArray::ResetArrayClass();
1011 PathClassLoader::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001012 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001013 STLDeleteElements(&boot_class_path_);
1014 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001015}
1016
1017DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001018 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1019 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001020 return NULL;
1021 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001022 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1023 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001024 return NULL;
1025 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001026 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1027 if (strings.get() == NULL) {
1028 return NULL;
1029 }
1030 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1031 if (types.get() == NULL) {
1032 return NULL;
1033 }
1034 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1035 if (methods.get() == NULL) {
1036 return NULL;
1037 }
1038 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1039 if (fields.get() == NULL) {
1040 return NULL;
1041 }
1042 SirtRef<CodeAndDirectMethods> code_and_direct_methods(AllocCodeAndDirectMethods(dex_file.NumMethodIds()));
1043 if (code_and_direct_methods.get() == NULL) {
1044 return NULL;
1045 }
1046 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1047 if (initialized_static_storage.get() == NULL) {
1048 return NULL;
1049 }
1050
1051 dex_cache->Init(location.get(),
1052 strings.get(),
1053 types.get(),
1054 methods.get(),
1055 fields.get(),
1056 code_and_direct_methods.get(),
1057 initialized_static_storage.get());
1058 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001059}
1060
Brian Carlstrom9cc262e2011-08-28 12:45:30 -07001061CodeAndDirectMethods* ClassLinker::AllocCodeAndDirectMethods(size_t length) {
1062 return down_cast<CodeAndDirectMethods*>(IntArray::Alloc(CodeAndDirectMethods::LengthAsArray(length)));
Brian Carlstrom83db7722011-08-26 17:32:56 -07001063}
1064
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001065InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1066 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001067 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1068 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001069 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001070 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001071}
1072
Brian Carlstrom4873d462011-08-21 15:23:39 -07001073Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1074 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001075 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001076 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001077 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001078 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001079}
1080
Brian Carlstrom4873d462011-08-21 15:23:39 -07001081Class* ClassLinker::AllocClass(size_t class_size) {
1082 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001083}
1084
Jesse Wilson35baaab2011-08-10 16:18:03 -04001085Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001086 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001087}
1088
1089Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001090 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001091}
1092
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001093ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1094 return ObjectArray<StackTraceElement>::Alloc(
1095 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1096 length);
1097}
1098
Brian Carlstromaded5f72011-10-07 17:15:04 -07001099Class* EnsureResolved(Class* klass) {
1100 DCHECK(klass != NULL);
1101 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001102 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001103 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001104 ObjectLock lock(klass);
1105 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001106 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001107 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001108 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001109 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001110 return NULL;
1111 }
1112 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001113 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001114 lock.Wait();
1115 }
1116 }
1117 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001118 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001119 return NULL;
1120 }
1121 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001122 CHECK(klass->IsResolved()) << PrettyClass(klass);
1123 CHECK(!self->IsExceptionPending())
1124 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1125 return klass;
1126}
1127
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001128Class* ClassLinker::FindSystemClass(const char* descriptor) {
1129 return FindClass(descriptor, NULL);
1130}
1131
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001132Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001133 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001134 Thread* self = Thread::Current();
1135 DCHECK(self != NULL);
1136 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001137 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001138 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1139 // for primitive classes that aren't backed by dex files.
1140 return FindPrimitiveClass(descriptor[0]);
1141 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001142 // Find the class in the loaded classes table.
1143 Class* klass = LookupClass(descriptor, class_loader);
1144 if (klass != NULL) {
1145 return EnsureResolved(klass);
1146 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001147 // Class is not yet loaded.
1148 if (descriptor[0] == '[') {
1149 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001150
Jesse Wilson47daf872011-11-23 11:42:45 -05001151 } else if (class_loader == NULL) {
1152 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1153 if (pair.second != NULL) {
1154 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1155 }
1156
1157 } else if (ClassLoader::UseCompileTimeClassPath()) {
1158 // first try the boot class path
1159 Class* system_class = FindSystemClass(descriptor);
1160 if (system_class != NULL) {
1161 return system_class;
1162 }
1163 CHECK(self->IsExceptionPending());
1164 self->ClearException();
1165
1166 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001167 const std::vector<const DexFile*>& class_path
1168 = ClassLoader::GetCompileTimeClassPath(class_loader);
1169 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001170 if (pair.second != NULL) {
1171 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001172 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001173
1174 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001175 std::string class_name_string(DescriptorToDot(descriptor));
Jesse Wilson47daf872011-11-23 11:42:45 -05001176 ScopedThreadStateChange(self, Thread::kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001177 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001178 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1179 CHECK(c.get() != NULL);
1180 // TODO: cache method?
1181 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1182 CHECK(mid != NULL);
1183 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1184 if (class_name_object.get() == NULL) {
1185 return NULL;
1186 }
1187 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001188 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1189 class_name_object.get()));
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001190 if (env->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001191 // If the ClassLoader threw, pass that exception up.
1192 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001193 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001194 // broken loader - throw NPE to be compatible with Dalvik
1195 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1196 class_name_string.c_str());
1197 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001198 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001199 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001200 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001201 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001202 }
1203
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001204 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001205 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001206}
1207
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001208Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001209 const ClassLoader* class_loader,
1210 const DexFile& dex_file,
1211 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001212 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001213 // Load the class from the dex file.
1214 if (!init_done_) {
1215 // finish up init of hand crafted class_roots_
1216 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001217 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001218 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001219 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001220 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001221 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001222 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001223 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001224 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001225 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001226 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001227 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001228 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001229 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001230 }
1231 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001232 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001233 }
1234 klass->SetDexCache(FindDexCache(dex_file));
1235 LoadClass(dex_file, dex_class_def, klass, class_loader);
1236 // Check for a pending exception during load
1237 Thread* self = Thread::Current();
1238 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001239 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001240 return NULL;
1241 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001242 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001243 klass->SetClinitThreadId(self->GetTid());
1244 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001245 Class* existing = InsertClass(descriptor, klass.get(), false);
1246 if (existing != NULL) {
1247 // We failed to insert because we raced with another thread.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001248 klass->SetClinitThreadId(0);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001249 klass.reset(existing);
1250 return EnsureResolved(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001251 }
1252 // Finish loading (if necessary) by finding parents
1253 CHECK(!klass->IsLoaded());
1254 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1255 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001256 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001257 lock.NotifyAll();
1258 return NULL;
1259 }
1260 CHECK(klass->IsLoaded());
1261 // Link the class (if necessary)
1262 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001263 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001264 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001265 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001266 lock.NotifyAll();
1267 return NULL;
1268 }
1269 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001270
1271 /*
1272 * We send CLASS_PREPARE events to the debugger from here. The
1273 * definition of "preparation" is creating the static fields for a
1274 * class and initializing them to the standard default values, but not
1275 * executing any code (that comes later, during "initialization").
1276 *
1277 * We did the static preparation in LinkClass.
1278 *
1279 * The class has been prepared and resolved but possibly not yet verified
1280 * at this point.
1281 */
1282 Dbg::PostClassPrepare(klass.get());
1283
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001284 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001285}
1286
Brian Carlstrom4873d462011-08-21 15:23:39 -07001287// Precomputes size that will be needed for Class, matching LinkStaticFields
1288size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1289 const DexFile::ClassDef& dex_class_def) {
1290 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001291 size_t num_ref = 0;
1292 size_t num_32 = 0;
1293 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001294 if (class_data != NULL) {
1295 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1296 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001297 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001298 char c = descriptor[0];
1299 if (c == 'L' || c == '[') {
1300 num_ref++;
1301 } else if (c == 'J' || c == 'D') {
1302 num_64++;
1303 } else {
1304 num_32++;
1305 }
1306 }
1307 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001308 // start with generic class data
1309 size_t size = sizeof(Class);
1310 // follow with reference fields which must be contiguous at start
1311 size += (num_ref * sizeof(uint32_t));
1312 // if there are 64-bit fields to add, make sure they are aligned
1313 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1314 if (num_32 != 0) {
1315 // use an available 32-bit field for padding
1316 num_32--;
1317 }
1318 size += sizeof(uint32_t); // either way, we are adding a word
1319 DCHECK_EQ(size, RoundUp(size, 8));
1320 }
1321 // tack on any 64-bit fields now that alignment is assured
1322 size += (num_64 * sizeof(uint64_t));
1323 // tack on any remaining 32-bit fields
1324 size += (num_32 * sizeof(uint32_t));
1325 return size;
1326}
1327
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001328void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001329 // Every kind of method should at least get an invoke stub from the oat_method.
1330 // non-abstract methods also get their code pointers.
1331 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001332 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001333
1334 if (method->IsAbstract()) {
1335 method->SetCode(Runtime::Current()->GetAbstractMethodErrorStubArray()->GetData());
1336 return;
1337 }
1338 if (method->IsNative()) {
1339 // unregistering restores the dlsym lookup stub
1340 method->UnregisterNative();
jeffhao26c0a1a2012-01-17 16:28:33 -08001341 }
1342
1343 if (Runtime::Current()->IsMethodTracingActive()) {
1344#if defined(__arm__)
1345 Trace* tracer = Runtime::Current()->GetTracer();
1346 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
1347 tracer->SaveAndUpdateCode(method.get(), trace_stub);
1348#else
1349 UNIMPLEMENTED(WARNING);
1350#endif
Brian Carlstrom92827a52011-10-10 15:50:01 -07001351 }
1352}
1353
Brian Carlstromf615a612011-07-23 12:50:34 -07001354void ClassLinker::LoadClass(const DexFile& dex_file,
1355 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001356 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001357 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001358 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001359 CHECK(klass->GetDexCache() != NULL);
1360 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001361 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001362 CHECK(descriptor != NULL);
1363
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001364 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001365 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001366 // Make sure that none of our runtime-only flags are set.
1367 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001368 klass->SetAccessFlags(access_flags);
1369 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001370 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001371 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001372
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001373 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001374
Ian Rogers0571d352011-11-03 19:51:38 -07001375 // Load fields fields.
1376 const byte* class_data = dex_file.GetClassData(dex_class_def);
1377 if (class_data == NULL) {
1378 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001379 }
Ian Rogers0571d352011-11-03 19:51:38 -07001380 ClassDataItemIterator it(dex_file, class_data);
1381 if (it.NumStaticFields() != 0) {
1382 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1383 }
1384 if (it.NumInstanceFields() != 0) {
1385 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1386 }
1387 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1388 SirtRef<Field> sfield(AllocField());
1389 klass->SetStaticField(i, sfield.get());
1390 LoadField(dex_file, it, klass, sfield);
1391 }
1392 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1393 SirtRef<Field> ifield(AllocField());
1394 klass->SetInstanceField(i, ifield.get());
1395 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001396 }
1397
Brian Carlstromaded5f72011-10-07 17:15:04 -07001398 UniquePtr<const OatFile::OatClass> oat_class;
1399 if (Runtime::Current()->IsStarted() && !ClassLoader::UseCompileTimeClassPath()) {
Brian Carlstromae826982011-11-09 01:33:42 -08001400 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001401 if (oat_file != NULL) {
1402 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1403 if (oat_dex_file != NULL) {
1404 uint32_t class_def_index;
1405 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1406 CHECK(found) << descriptor;
1407 oat_class.reset(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom92827a52011-10-10 15:50:01 -07001408 CHECK(oat_class.get() != NULL) << descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001409 }
1410 }
1411 }
Ian Rogers0571d352011-11-03 19:51:38 -07001412 // Load methods.
1413 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001414 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001415 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001416 }
Ian Rogers0571d352011-11-03 19:51:38 -07001417 if (it.NumVirtualMethods() != 0) {
1418 // TODO: append direct methods to class object
1419 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001420 }
Ian Rogers0571d352011-11-03 19:51:38 -07001421 size_t method_index = 0;
1422 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1423 SirtRef<Method> method(AllocMethod());
1424 klass->SetDirectMethod(i, method.get());
1425 LoadMethod(dex_file, it, klass, method);
1426 if (oat_class.get() != NULL) {
1427 LinkCode(method, oat_class.get(), method_index);
1428 }
1429 method_index++;
1430 }
1431 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1432 SirtRef<Method> method(AllocMethod());
1433 klass->SetVirtualMethod(i, method.get());
1434 LoadMethod(dex_file, it, klass, method);
1435 if (oat_class.get() != NULL) {
1436 LinkCode(method, oat_class.get(), method_index);
1437 }
1438 method_index++;
1439 }
1440 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001441}
1442
Ian Rogers0571d352011-11-03 19:51:38 -07001443void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1444 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001445 uint32_t field_idx = it.GetMemberIndex();
1446 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001447 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001448 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001449}
1450
Ian Rogers0571d352011-11-03 19:51:38 -07001451void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1452 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001453 uint32_t method_idx = it.GetMemberIndex();
1454 dst->SetDexMethodIndex(method_idx);
1455 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001456 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001457
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001458
1459 StringPiece method_name(dex_file.GetMethodName(method_id));
1460 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001461 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1462 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001463
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001464 if (method_name == "finalize") {
1465 // Create the prototype for a signature of "()V"
1466 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1467 if (void_string_id != NULL) {
1468 const DexFile::TypeId* void_type_id =
1469 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1470 if (void_type_id != NULL) {
1471 std::vector<uint16_t> no_args;
1472 const DexFile::ProtoId* finalizer_proto =
1473 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1474 if (finalizer_proto != NULL) {
1475 // We have the prototype in the dex file
1476 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1477 klass->SetFinalizable();
1478 } else {
1479 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1480 // The Enum class declares a "final" finalize() method to prevent subclasses from
1481 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1482 // subclasses, so we exclude it here.
1483 // We also want to avoid setting the flag on Object, where we know that finalize() is
1484 // empty.
1485 if (klass_descriptor != "Ljava/lang/Object;" &&
1486 klass_descriptor != "Ljava/lang/Enum;") {
1487 klass->SetFinalizable();
1488 }
1489 }
1490 }
1491 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001492 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001493 }
Ian Rogers0571d352011-11-03 19:51:38 -07001494 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001495 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001496
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001497 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
1498 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
1499 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
1500 dst->SetDexCacheResolvedFields(klass->GetDexCache()->GetResolvedFields());
1501 dst->SetDexCacheCodeAndDirectMethods(klass->GetDexCache()->GetCodeAndDirectMethods());
1502 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001503}
1504
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001505void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001506 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1507 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001508}
1509
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001510void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1511 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001512 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001513 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001514}
1515
Brian Carlstromaded5f72011-10-07 17:15:04 -07001516bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001517 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001518 for (size_t i = 0; i != dex_files_.size(); ++i) {
1519 if (dex_files_[i] == &dex_file) {
1520 return true;
1521 }
1522 }
1523 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001524}
1525
Brian Carlstromaded5f72011-10-07 17:15:04 -07001526bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001527 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001528 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001529}
1530
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001531void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001532 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001533 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001534 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001535 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001536 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001537}
1538
Brian Carlstromaded5f72011-10-07 17:15:04 -07001539void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001540 {
1541 MutexLock mu(dex_lock_);
1542 if (IsDexFileRegisteredLocked(dex_file)) {
1543 return;
1544 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001545 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001546 // Don't alloc while holding the lock, since allocation may need to
1547 // suspend all threads and another thread may need the dex_lock_ to
1548 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001549 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001550 {
1551 MutexLock mu(dex_lock_);
1552 if (IsDexFileRegisteredLocked(dex_file)) {
1553 return;
1554 }
1555 RegisterDexFileLocked(dex_file, dex_cache);
1556 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001557}
1558
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001559void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001560 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001561 RegisterDexFileLocked(dex_file, dex_cache);
1562}
1563
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001564const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001565 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001566 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001567 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1568 if (dex_caches_[i] == dex_cache) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001569 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001570 }
1571 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001572 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001573 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001574}
1575
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001576DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001577 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001578 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001579 if (dex_files_[i] == &dex_file) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001580 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001581 }
1582 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001583 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001584 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001585}
1586
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001587Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1588 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001589 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001590 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001591 CHECK(primitive_class != NULL);
1592 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001593 primitive_class->SetPrimitiveType(type);
1594 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001595 Class* existing = InsertClass(descriptor, primitive_class, false);
1596 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001597 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001598}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001599
Brian Carlstrombe977852011-07-19 14:54:54 -07001600// Create an array class (i.e. the class object for the array, not the
1601// array itself). "descriptor" looks like "[C" or "[[[[B" or
1602// "[Ljava/lang/String;".
1603//
1604// If "descriptor" refers to an array of primitives, look up the
1605// primitive type's internally-generated class object.
1606//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001607// "class_loader" is the class loader of the class that's referring to
1608// us. It's used to ensure that we're looking for the element type in
1609// the right context. It does NOT become the class loader for the
1610// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001611//
1612// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001613Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001614 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001615
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001616 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001617 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001618 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001619 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001620 return NULL;
1621 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001622
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001623 // See if the component type is already loaded. Array classes are
1624 // always associated with the class loader of their underlying
1625 // element type -- an array of Strings goes with the loader for
1626 // java/lang/String -- so we need to look for it there. (The
1627 // caller should have checked for the existence of the class
1628 // before calling here, but they did so with *their* class loader,
1629 // not the component type's loader.)
1630 //
1631 // If we find it, the caller adds "loader" to the class' initiating
1632 // loader list, which should prevent us from going through this again.
1633 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001634 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001635 // are the same, because our caller (FindClass) just did the
1636 // lookup. (Even if we get this wrong we still have correct behavior,
1637 // because we effectively do this lookup again when we add the new
1638 // class to the hash table --- necessary because of possible races with
1639 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001640 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001641 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001642 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001643 return new_class;
1644 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001645 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001646
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001647 // Fill out the fields in the Class.
1648 //
1649 // It is possible to execute some methods against arrays, because
1650 // all arrays are subclasses of java_lang_Object_, so we need to set
1651 // up a vtable. We can just point at the one in java_lang_Object_.
1652 //
1653 // Array classes are simple enough that we don't need to do a full
1654 // link step.
1655
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001656 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001657 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001658 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001659 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001660 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001661 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001662 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001663 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001664 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001665 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001666 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001667 }
1668 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001669 if (new_class.get() == NULL) {
1670 new_class.reset(AllocClass(sizeof(Class)));
1671 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001672 return NULL;
1673 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001674 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001675 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001676 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001677 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001678 new_class->SetSuperClass(java_lang_Object);
1679 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001680 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001681 new_class->SetClassLoader(component_type->GetClassLoader());
1682 new_class->SetStatus(Class::kStatusInitialized);
1683 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001684 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001685
1686
1687 // All arrays have java/lang/Cloneable and java/io/Serializable as
1688 // interfaces. We need to set that up here, so that stuff like
1689 // "instanceof" works right.
1690 //
1691 // Note: The GC could run during the call to FindSystemClass,
1692 // so we need to make sure the class object is GC-valid while we're in
1693 // there. Do this by clearing the interface list so the GC will just
1694 // think that the entries are null.
1695
1696
1697 // Use the single, global copies of "interfaces" and "iftable"
1698 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001699 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001700 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001701
1702 // Inherit access flags from the component type. Arrays can't be
1703 // used as a superclass or interface, so we want to add "final"
1704 // and remove "interface".
1705 //
1706 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001707 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001708 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001709 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1710 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001711
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001712 Class* existing = InsertClass(descriptor, new_class.get(), false);
1713 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001714 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001715 }
1716 // Another thread must have loaded the class after we
1717 // started but before we finished. Abandon what we've
1718 // done.
1719 //
1720 // (Yes, this happens.)
1721
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001722 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001723}
1724
1725Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001726 switch (Primitive::GetType(type)) {
1727 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001728 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001729 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001730 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001731 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001732 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001733 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001734 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001735 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001736 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001737 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001738 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001739 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001740 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001741 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001742 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001743 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001744 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001745 case Primitive::kPrimNot:
1746 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001747 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001748 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001749 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001750 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001751}
1752
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001753Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001754 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001755 DexCache* dex_cache = klass->GetDexCache();
1756 std::string source;
1757 if (dex_cache != NULL) {
1758 source += " from ";
1759 source += dex_cache->GetLocation()->ToModifiedUtf8();
1760 }
1761 LOG(INFO) << "Loaded class " << descriptor << source;
1762 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001763 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001764 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001765 Table& classes = image_class ? image_classes_ : classes_;
1766 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1767#ifndef NDEBUG
1768 // Check we don't have the class in the other table in error
1769 Table& other_classes = image_class ? classes_ : image_classes_;
1770 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1771#endif
1772 if (existing != NULL) {
1773 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001774 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001775 classes.insert(std::make_pair(hash, klass));
1776 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001777}
1778
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001779bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1780 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001781 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001782 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001783 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001784 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001785 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001786 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001787 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001788 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001789 classes_.erase(it);
1790 return true;
1791 }
1792 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001793 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001794 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001795 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001796 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001797 image_classes_.erase(it);
1798 return true;
1799 }
1800 }
1801 return false;
1802}
1803
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001804Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1805 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001806 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001807 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001808 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1809 if (klass != NULL) {
1810 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001811 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001812 return LookupClass(descriptor, class_loader, hash, image_classes_);
1813}
1814
1815Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1816 size_t hash, const Table& classes) {
1817 ClassHelper kh(NULL, this);
1818 typedef Table::const_iterator It; // TODO: C++0x auto
1819 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001820 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001821 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001822 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001823#ifndef NDEBUG
1824 for (++it; it != end && it->first == hash; ++it) {
1825 kh.ChangeClass(it->second);
1826 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader))
1827 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
1828 << PrettyClass(it->second) << " " << it->second << " " << it->second->GetClassLoader();
1829 }
1830#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001831 return klass;
1832 }
1833 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001834 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001835}
1836
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001837void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001838 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001839 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001840 MutexLock mu(classes_lock_);
1841 typedef Table::const_iterator It; // TODO: C++0x auto
1842 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001843 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001844 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001845 Class* klass = it->second;
1846 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001847 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001848 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001849 }
1850 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001851 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001852 Class* klass = it->second;
1853 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001854 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001855 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001856 }
1857 }
1858}
1859
Ian Rogersc20a83e2012-01-18 18:15:32 -08001860#ifndef NDEBUG
1861static void CheckMethodsHaveGcMaps(Class* klass) {
1862 if (!Runtime::Current()->IsStarted()) {
1863 return;
1864 }
1865 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1866 Method* method = klass->GetDirectMethod(i);
1867 if (!method->IsNative() && !method->IsAbstract()) {
1868 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1869 }
1870 }
1871 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1872 Method* method = klass->GetVirtualMethod(i);
1873 if (!method->IsNative() && !method->IsAbstract()) {
1874 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1875 }
1876 }
1877}
1878#else
1879static void CheckMethodsHaveGcMaps(Class* klass) {
1880}
1881#endif
1882
jeffhao98eacac2011-09-14 16:11:53 -07001883void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001884 // TODO: assert that the monitor on the Class is held
jeffhao98eacac2011-09-14 16:11:53 -07001885 if (klass->IsVerified()) {
1886 return;
1887 }
1888
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001889 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001890 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001891
Ian Rogers1c5eb702012-02-01 09:18:34 -08001892 // Verify super class
1893 Class* super = klass->GetSuperClass();
1894 std::string error_msg;
1895 if (super != NULL) {
1896 // Acquire lock to prevent races on verifying the super class
1897 ObjectLock lock(super);
1898
1899 if (!super->IsVerified() && !super->IsErroneous()) {
1900 Runtime::Current()->GetClassLinker()->VerifyClass(super);
1901 }
1902 if (!super->IsVerified()) {
1903 error_msg = "Rejecting class ";
1904 error_msg += PrettyDescriptor(klass);
1905 error_msg += " that attempts to sub-class erroneous class ";
1906 error_msg += PrettyDescriptor(super);
1907 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
1908 Thread* self = Thread::Current();
1909 SirtRef<Throwable> cause(self->GetException());
1910 if (cause.get() != NULL) {
1911 self->ClearException();
1912 }
1913 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
1914 if (cause.get() != NULL) {
1915 self->GetException()->SetCause(cause.get());
1916 }
1917 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
1918 klass->SetStatus(Class::kStatusError);
1919 return;
1920 }
1921 }
1922
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001923 // Try to use verification information from oat file, otherwise do runtime verification
1924 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Ian Rogers1c5eb702012-02-01 09:18:34 -08001925 if (VerifyClassUsingOatFile(dex_file, klass) ||
1926 verifier::DexVerifier::VerifyClass(klass, error_msg)) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001927 // Make sure all classes referenced by catch blocks are resolved
1928 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001929 klass->SetStatus(Class::kStatusVerified);
Ian Rogersc20a83e2012-01-18 18:15:32 -08001930 // Sanity check that a verified class has GC maps on all methods
1931 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001932 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08001933 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08001934 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
1935 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001936 Thread* self = Thread::Current();
Ian Rogers09f6b562012-01-31 21:58:52 -08001937 CHECK(!self->IsExceptionPending()) << self->GetException()->Dump();
Ian Rogers1c5eb702012-02-01 09:18:34 -08001938 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
1939 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07001940 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001941 }
jeffhao98eacac2011-09-14 16:11:53 -07001942}
1943
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001944bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass) {
1945 if (!Runtime::Current()->IsStarted()) {
1946 return false;
1947 }
1948 if (ClassLoader::UseCompileTimeClassPath()) {
1949 return false;
1950 }
1951 const OatFile* oat_file = FindOatFileForDexFile(dex_file);
1952 if (oat_file == NULL) {
1953 return false;
1954 }
1955 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1956 CHECK(oat_dex_file != NULL) << PrettyClass(klass);
1957 const char* descriptor = ClassHelper(klass).GetDescriptor();
1958 uint32_t class_def_index;
1959 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1960 CHECK(found) << descriptor;
1961 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
1962 CHECK(oat_class.get() != NULL) << descriptor;
1963 Class::Status status = oat_class->GetStatus();
1964 if (status == Class::kStatusError) {
Brian Carlstrom09cc2d32012-01-31 18:53:00 -08001965 Thread* self = Thread::Current();
1966 self->ThrowNewExceptionF("Ljava/lang/VerifyError;", "Compile-time verification of %s failed",
1967 PrettyDescriptor(klass).c_str());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001968 klass->SetStatus(Class::kStatusError);
1969 return true;
1970 }
1971 if (status == Class::kStatusVerified || status == Class::kStatusInitialized) {
1972 return true;
1973 }
1974 if (status == Class::kStatusNotReady) {
1975 return false;
1976 }
1977 LOG(FATAL) << "Unexpected class status: " << status;
1978 return false;
1979}
1980
1981void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
1982 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1983 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
1984 }
1985 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1986 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
1987 }
1988}
1989
1990void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
1991 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
1992 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
1993 if (code_item == NULL) {
1994 return; // native or abstract method
1995 }
1996 if (code_item->tries_size_ == 0) {
1997 return; // nothing to process
1998 }
1999 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2000 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2001 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2002 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2003 CatchHandlerIterator iterator(handlers_ptr);
2004 for (; iterator.HasNext(); iterator.Next()) {
2005 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2006 // unresolved exception types will be ignored by exception delivery
2007 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2008 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2009 if (exception_type == NULL) {
2010 DCHECK(Thread::Current()->IsExceptionPending());
2011 Thread::Current()->ClearException();
2012 }
2013 }
2014 }
2015 handlers_ptr = iterator.EndDataPointer();
2016 }
2017}
2018
Ian Rogersc2b44472011-12-14 21:17:17 -08002019static void CheckProxyConstructor(Method* constructor);
2020static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2021
Jesse Wilson95caa792011-10-12 18:14:17 -04002022Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002023 ClassLoader* loader, ObjectArray<Method>* methods,
2024 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002025 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002026 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002027 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002028 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002029 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002030 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002031 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002032 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002033 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002034 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002035
2036 klass->SetStatus(Class::kStatusIdx);
2037
2038 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2039
2040 // Create static field that holds throws, instance fields are inherited
2041 klass->SetSFields(AllocObjectArray<Field>(1));
2042 SirtRef<Field> sfield(AllocField());
2043 klass->SetStaticField(0, sfield.get());
2044 sfield->SetDexFieldIndex(-1);
2045 sfield->SetDeclaringClass(klass.get());
2046 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002047
Ian Rogers466bb252011-10-14 03:29:56 -07002048 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002049 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002050 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002051
Ian Rogers466bb252011-10-14 03:29:56 -07002052 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002053 size_t num_virtual_methods = methods->GetLength();
2054 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2055 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002056 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002057 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002058 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002059
2060 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2061 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2062 DCHECK(!Thread::Current()->IsExceptionPending());
2063
2064 // Link the fields and virtual methods, creating vtable and iftables
2065 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002066 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002067 return NULL;
2068 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002069 sfield->SetObject(NULL, throws); // initialize throws field
2070 klass->SetStatus(Class::kStatusInitialized);
2071
2072 // sanity checks
2073#ifndef NDEBUG
2074 bool debug = true;
2075#else
2076 bool debug = false;
2077#endif
2078 if (debug) {
2079 CHECK(klass->GetIFields() == NULL);
2080 CheckProxyConstructor(klass->GetDirectMethod(0));
2081 for (size_t i = 0; i < num_virtual_methods; ++i) {
2082 SirtRef<Method> prototype(methods->Get(i));
2083 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2084 }
Brian Carlstrom89521892011-12-07 22:05:07 -08002085 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08002086 throws_field_name += name->ToModifiedUtf8();
2087 throws_field_name += ".throws";
2088 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
2089
2090 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
2091 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2092 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002093 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002094}
2095
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002096std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2097 DCHECK(proxy_class->IsProxyClass());
2098 String* name = proxy_class->GetName();
2099 DCHECK(name != NULL);
2100 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2101}
2102
2103
2104Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002105 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002106 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002107 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002108 Method* proxy_constructor = proxy_direct_methods->Get(2);
2109 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2110 // code_ too)
2111 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2112 // Make this constructor public and fix the class to be our Proxy version
2113 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002114 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002115 return constructor;
2116}
2117
2118static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002119 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002120 MethodHelper mh(constructor);
2121 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002122 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002123 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002124}
2125
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002126Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2127 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2128 // prototype method
2129 prototype->GetDexCacheResolvedMethods()->Set(prototype->GetDexMethodIndex(), prototype.get());
2130 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002131 // as necessary
2132 Method* method = down_cast<Method*>(prototype->Clone());
2133
2134 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2135 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002136 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002137 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002138
Ian Rogers466bb252011-10-14 03:29:56 -07002139 // At runtime the method looks like a reference and argument saving method, clone the code
2140 // related parameters from this method.
2141 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2142 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2143 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2144 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
2145 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogersc2b44472011-12-14 21:17:17 -08002146 return method;
2147}
Jesse Wilson95caa792011-10-12 18:14:17 -04002148
Ian Rogersc2b44472011-12-14 21:17:17 -08002149static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002150 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002151 CHECK(!prototype->IsFinal());
2152 CHECK(method->IsFinal());
2153 CHECK(!method->IsAbstract());
2154 MethodHelper mh(method);
2155 const char* method_name = mh.GetName();
2156 const char* method_shorty = mh.GetShorty();
2157 Class* method_return = mh.GetReturnType();
2158
2159 mh.ChangeMethod(prototype.get());
2160
2161 CHECK_STREQ(mh.GetName(), method_name);
2162 CHECK_STREQ(mh.GetShorty(), method_shorty);
Ian Rogers466bb252011-10-14 03:29:56 -07002163
2164 // More complex sanity - via dex cache
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002165 CHECK_EQ(mh.GetReturnType(), method_return);
Jesse Wilson95caa792011-10-12 18:14:17 -04002166}
2167
Brian Carlstrom25c33252011-09-18 15:58:35 -07002168bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002169 CHECK(klass->IsResolved() || klass->IsErroneous())
2170 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002171
Carl Shapirob5573532011-07-12 18:22:59 -07002172 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002173
Brian Carlstrom25c33252011-09-18 15:58:35 -07002174 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002175 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002176 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002177 ObjectLock lock(klass);
2178
Brian Carlstromd1422f82011-09-28 11:37:09 -07002179 if (klass->GetStatus() == Class::kStatusInitialized) {
2180 return true;
2181 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002182
Brian Carlstromd1422f82011-09-28 11:37:09 -07002183 if (klass->IsErroneous()) {
2184 ThrowEarlierClassFailure(klass);
2185 return false;
2186 }
2187
2188 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002189 VerifyClass(klass);
2190 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002191 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002192 return false;
2193 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002194 }
2195
Brian Carlstrom25c33252011-09-18 15:58:35 -07002196 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2197 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002198 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers595799e2012-01-11 17:32:51 -08002199 // don't bother going to kStatusInitializing. We return true to maintain
2200 // the invariant that a false result implies there is a pending exception.
2201 return true;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002202 }
2203
Brian Carlstromd1422f82011-09-28 11:37:09 -07002204 // If the class is kStatusInitializing, either this thread is
2205 // initializing higher up the stack or another thread has beat us
2206 // to initializing and we need to wait. Either way, this
2207 // invocation of InitializeClass will not be responsible for
2208 // running <clinit> and will return.
2209 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002210 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002211 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002212 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002213 return true;
2214 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002215 // No. That's fine. Wait for another thread to finish initializing.
2216 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002217 }
2218
2219 if (!ValidateSuperClassDescriptors(klass)) {
2220 klass->SetStatus(Class::kStatusError);
2221 return false;
2222 }
2223
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002224 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002225
Elliott Hughesdcc24742011-09-07 14:02:44 -07002226 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002227 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002228 }
2229
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002230 uint64_t t0 = NanoTime();
2231
Brian Carlstrom25c33252011-09-18 15:58:35 -07002232 if (!InitializeSuperClass(klass, can_run_clinit)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002233 CHECK(klass->IsErroneous());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002234 return false;
2235 }
2236
2237 InitializeStaticFields(klass);
2238
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002239 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002240 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002241 }
2242
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002243 uint64_t t1 = NanoTime();
2244
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002245 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002246 {
2247 ObjectLock lock(klass);
2248
2249 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002250 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002251 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002252 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002253 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002254 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2255 RuntimeStats* thread_stats = self->GetStats();
2256 ++global_stats->class_init_count;
2257 ++thread_stats->class_init_count;
2258 global_stats->class_init_time_ns += (t1 - t0);
2259 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002260 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002261 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002262 ClassHelper kh(klass);
2263 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002264 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002265 }
2266 lock.NotifyAll();
2267 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002268 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002269}
2270
Brian Carlstromd1422f82011-09-28 11:37:09 -07002271bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2272 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002273 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002274 lock.Wait();
2275
2276 // When we wake up, repeat the test for init-in-progress. If
2277 // there's an exception pending (only possible if
2278 // "interruptShouldThrow" was set), bail out.
2279 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002280 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002281 klass->SetStatus(Class::kStatusError);
2282 return false;
2283 }
2284 // Spurious wakeup? Go back to waiting.
2285 if (klass->GetStatus() == Class::kStatusInitializing) {
2286 continue;
2287 }
2288 if (klass->IsErroneous()) {
2289 // The caller wants an exception, but it was thrown in a
2290 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002291 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002292 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002293 return false;
2294 }
2295 if (klass->IsInitialized()) {
2296 return true;
2297 }
2298 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2299 }
2300 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2301}
2302
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002303bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2304 if (klass->IsInterface()) {
2305 return true;
2306 }
2307 // begin with the methods local to the superclass
2308 if (klass->HasSuperClass() &&
2309 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2310 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002311 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2312 const Method* method = klass->GetVTable()->Get(i);
2313 if (method != super->GetVTable()->Get(i) &&
2314 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002315 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2316 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2317 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002318 return false;
2319 }
2320 }
2321 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002322 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2323 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2324 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002325 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2326 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002327 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002328 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2329 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002330 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2331 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2332 PrettyMethod(method).c_str(),
2333 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002334 return false;
2335 }
2336 }
2337 }
2338 }
2339 return true;
2340}
2341
Ian Rogers595799e2012-01-11 17:32:51 -08002342// Returns true if classes referenced by the signature of the method are the
2343// same classes in klass1 as they are in klass2.
2344bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2345 const Class* klass1,
2346 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002347 if (klass1 == klass2) {
2348 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002349 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002350 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002351 const DexFile::ProtoId& proto_id =
2352 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002353 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2354 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002355 if (descriptor == NULL) {
2356 break;
2357 }
2358 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2359 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002360 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002361 return false;
2362 }
2363 }
2364 }
2365 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002366 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002367 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002368 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002369 return false;
2370 }
2371 }
2372 return true;
2373}
2374
Ian Rogers595799e2012-01-11 17:32:51 -08002375// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2376bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2377 const Class* klass1,
2378 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002379 CHECK(descriptor != NULL);
2380 CHECK(klass1 != NULL);
2381 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002382 if (klass1 == klass2) {
2383 return true;
2384 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002385 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002386 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002387 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002388 }
Ian Rogers595799e2012-01-11 17:32:51 -08002389 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2390 if (found2 == NULL) {
2391 Thread::Current()->ClearException();
2392 }
2393 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002394}
2395
Brian Carlstrom25c33252011-09-18 15:58:35 -07002396bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002397 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002398 if (!klass->IsInterface() && klass->HasSuperClass()) {
2399 Class* super_class = klass->GetSuperClass();
2400 if (super_class->GetStatus() != Class::kStatusInitialized) {
2401 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002402 Thread* self = Thread::Current();
2403 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002404 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002405 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002406 // TODO: check for a pending exception
2407 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002408 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002409 // Don't set status to error when we can't run <clinit>.
2410 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2411 klass->SetStatus(Class::kStatusVerified);
2412 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002413 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002414 klass->SetStatus(Class::kStatusError);
2415 klass->NotifyAll();
2416 return false;
2417 }
2418 }
2419 }
2420 return true;
2421}
2422
Brian Carlstrom25c33252011-09-18 15:58:35 -07002423bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002424 CHECK(c != NULL);
2425 if (c->IsInitialized()) {
2426 return true;
2427 }
2428
Elliott Hughes5f791332011-09-15 17:45:30 -07002429 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002430 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002431 bool success = InitializeClass(c, can_run_clinit);
2432 if (!success) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002433 CHECK(self->IsExceptionPending()) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002434 }
2435 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002436}
2437
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002438void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002439 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002440 const ClassLoader* cl = c->GetClassLoader();
2441 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002442 ClassDataItemIterator it(dex_file, class_data);
2443 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2444 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002445 }
2446}
2447
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002448void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002449 size_t num_static_fields = klass->NumStaticFields();
2450 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002451 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002452 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002453 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002454 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002455 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002456 return;
2457 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002458 ClassHelper kh(klass);
2459 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002460 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002461 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002462 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002463
Ian Rogers0571d352011-11-03 19:51:38 -07002464 if (it.HasNext()) {
2465 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2466 std::map<uint32_t, Field*> field_map;
2467 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2468 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2469 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002470 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002471 }
2472}
2473
Ian Rogersc2b44472011-12-14 21:17:17 -08002474bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002475 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002476 if (!LinkSuperClass(klass)) {
2477 return false;
2478 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002479 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002480 return false;
2481 }
2482 if (!LinkInstanceFields(klass)) {
2483 return false;
2484 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002485 if (!LinkStaticFields(klass)) {
2486 return false;
2487 }
2488 CreateReferenceInstanceOffsets(klass);
2489 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002490 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2491 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002492 return true;
2493}
2494
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002495bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002496 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002497 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2498 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002499 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002500 uint16_t super_class_idx = class_def->superclass_idx_;
2501 if (super_class_idx != DexFile::kDexNoIndex16) {
2502 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002503 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002504 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002505 return false;
2506 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002507 // Verify
2508 if (!klass->CanAccess(super_class)) {
2509 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2510 "Class %s extended by class %s is inaccessible",
2511 PrettyDescriptor(super_class).c_str(),
2512 PrettyDescriptor(klass.get()).c_str());
2513 return false;
2514 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002515 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002516 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002517 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2518 if (interfaces != NULL) {
2519 for (size_t i = 0; i < interfaces->Size(); i++) {
2520 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2521 Class* interface = ResolveType(dex_file, idx, klass.get());
2522 if (interface == NULL) {
2523 DCHECK(Thread::Current()->IsExceptionPending());
2524 return false;
2525 }
2526 // Verify
2527 if (!klass->CanAccess(interface)) {
2528 // TODO: the RI seemed to ignore this in my testing.
2529 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2530 "Interface %s implemented by class %s is inaccessible",
2531 PrettyDescriptor(interface).c_str(),
2532 PrettyDescriptor(klass.get()).c_str());
2533 return false;
2534 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002535 }
2536 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002537 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002538 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002539 return true;
2540}
2541
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002542bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002543 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002544 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002545 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002546 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002547 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002548 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002549 return false;
2550 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002551 return true;
2552 }
2553 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002554 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002555 return false;
2556 }
2557 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002558 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002559 Thread* self = Thread::Current();
2560 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002561 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002562 PrettyDescriptor(super).c_str(),
2563 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002564 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002565 return false;
2566 }
2567 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002568 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002569 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002570 PrettyDescriptor(super).c_str(),
2571 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002572 return false;
2573 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002574
2575 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2576 if (super->IsFinalizable()) {
2577 klass->SetFinalizable();
2578 }
2579
Elliott Hughes2da50362011-10-10 16:57:08 -07002580 // Inherit reference flags (if any) from the superclass.
2581 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2582 if (reference_flags != 0) {
2583 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2584 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002585 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002586 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002587 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002588 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002589 return false;
2590 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002591
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002592#ifndef NDEBUG
2593 // Ensure super classes are fully resolved prior to resolving fields..
2594 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002595 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002596 super = super->GetSuperClass();
2597 }
2598#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002599 return true;
2600}
2601
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002602// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002603bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002604 if (klass->IsInterface()) {
2605 // No vtable.
2606 size_t count = klass->NumVirtualMethods();
2607 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002608 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002609 return false;
2610 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002611 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002612 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002613 }
jeffhaobdb76512011-09-07 11:43:16 -07002614 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002615 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002616 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002617 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002618 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002619 }
2620 return true;
2621}
2622
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002623bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002624 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002625 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2626 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002627 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002628 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002629 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002630 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002631 MethodHelper local_mh(NULL, this);
2632 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002633 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002634 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002635 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002636 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002637 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002638 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002639 super_mh.ChangeMethod(super_method);
2640 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002641 // Verify
2642 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002643 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002644 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002645 PrettyDescriptor(klass.get()).c_str(),
2646 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002647 return false;
2648 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002649 vtable->Set(j, local_method);
2650 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002651 break;
2652 }
2653 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002654 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002655 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002656 vtable->Set(actual_count, local_method);
2657 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002658 actual_count += 1;
2659 }
2660 }
2661 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002662 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002663 return false;
2664 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002665 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002666 CHECK_LE(actual_count, max_count);
2667 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002668 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002669 }
Ian Rogers30fab402012-01-23 15:43:46 -08002670 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002671 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002672 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002673 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002674 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002675 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002676 return false;
2677 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002678 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002679 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002680 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2681 vtable->Set(i, virtual_method);
2682 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002683 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002684 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002685 }
2686 return true;
2687}
2688
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002689bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002690 size_t super_ifcount;
2691 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002692 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002693 } else {
2694 super_ifcount = 0;
2695 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002696 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002697 ClassHelper kh(klass.get(), this);
2698 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2699 ifcount += num_interfaces;
2700 for (size_t i = 0; i < num_interfaces; i++) {
2701 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2702 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002703 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002704 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002705 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002706 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002707 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002708 return true;
2709 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002710 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002711 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002712 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2713 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002714 Class* super_interface = super_iftable->Get(i)->GetInterface();
2715 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002716 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002717 }
2718 // Flatten the interface inheritance hierarchy.
2719 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002720 for (size_t i = 0; i < num_interfaces; i++) {
2721 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002722 DCHECK(interface != NULL);
2723 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002724 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002725 Thread* self = Thread::Current();
2726 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002727 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002728 PrettyDescriptor(klass.get()).c_str(),
2729 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002730 return false;
2731 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002732 // Check if interface is already in iftable
2733 bool duplicate = false;
2734 for (size_t j = 0; j < idx; j++) {
2735 Class* existing_interface = iftable->Get(j)->GetInterface();
2736 if (existing_interface == interface) {
2737 duplicate = true;
2738 break;
2739 }
2740 }
2741 if (!duplicate) {
2742 // Add this non-duplicate interface.
2743 iftable->Set(idx++, AllocInterfaceEntry(interface));
2744 // Add this interface's non-duplicate super-interfaces.
2745 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2746 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2747 bool super_duplicate = false;
2748 for (size_t k = 0; k < idx; k++) {
2749 Class* existing_interface = iftable->Get(k)->GetInterface();
2750 if (existing_interface == super_interface) {
2751 super_duplicate = true;
2752 break;
2753 }
2754 }
2755 if (!super_duplicate) {
2756 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2757 }
2758 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002759 }
2760 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002761 // Shrink iftable in case duplicates were found
2762 if (idx < ifcount) {
2763 iftable.reset(iftable->CopyOf(idx));
2764 ifcount = idx;
2765 } else {
2766 CHECK_EQ(idx, ifcount);
2767 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002768 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002769
2770 // If we're an interface, we don't need the vtable pointers, so we're done.
2771 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002772 return true;
2773 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002774 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002775 MethodHelper vtable_mh(NULL, this);
2776 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002777 for (size_t i = 0; i < ifcount; ++i) {
2778 InterfaceEntry* interface_entry = iftable->Get(i);
2779 Class* interface = interface_entry->GetInterface();
2780 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2781 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002782 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002783 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2784 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002785 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002786 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002787 // For each method listed in the interface's method list, find the
2788 // matching method in our class's method list. We want to favor the
2789 // subclass over the superclass, which just requires walking
2790 // back from the end of the vtable. (This only matters if the
2791 // superclass defines a private method and this class redefines
2792 // it -- otherwise it would use the same vtable slot. In .dex files
2793 // those don't end up in the virtual method table, so it shouldn't
2794 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002795 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2796 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002797 vtable_mh.ChangeMethod(vtable_method);
2798 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002799 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002800 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002801 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002802 return false;
2803 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002804 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002805 break;
2806 }
2807 }
2808 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002809 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002810 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002811 Method* mir_method = miranda_list[mir];
2812 vtable_mh.ChangeMethod(mir_method);
2813 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002814 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002815 break;
2816 }
2817 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002818 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002819 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002820 miranda_method.reset(AllocMethod());
2821 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2822 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002823 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002824 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002825 }
2826 }
2827 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002828 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002829 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002830 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002831 klass->SetVirtualMethods((old_method_count == 0)
2832 ? AllocObjectArray<Method>(new_method_count)
2833 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002834
Ian Rogers30fab402012-01-23 15:43:46 -08002835 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
2836 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002837 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002838 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08002839 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07002840 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002841 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002842 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002843 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2844 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2845 klass->SetVirtualMethod(old_method_count + i, method);
2846 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002847 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002848 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002849 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002850 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002851
2852 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2853 for (int i = 0; i < vtable->GetLength(); ++i) {
2854 CHECK(vtable->Get(i) != NULL);
2855 }
2856
2857// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2858
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002859 return true;
2860}
2861
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002862bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2863 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002864 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002865}
2866
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002867bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2868 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002869 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002870 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002871 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002872 return success;
2873}
2874
Brian Carlstromdbc05252011-09-09 01:59:59 -07002875struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08002876 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07002877 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002878 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002879 fh_->ChangeField(field1);
2880 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
2881 fh_->ChangeField(field2);
2882 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002883 bool isPrimitive1 = type1 != Primitive::kPrimNot;
2884 bool isPrimitive2 = type2 != Primitive::kPrimNot;
2885 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
2886 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002887 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
2888 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
2889 if (order1 != order2) {
2890 return order1 < order2;
2891 }
2892
2893 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002894 fh_->ChangeField(field1);
2895 StringPiece name1(fh_->GetName());
2896 fh_->ChangeField(field2);
2897 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07002898 return name1 < name2;
2899 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002900
2901 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002902};
2903
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002904bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002905 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002906 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002907
2908 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002909 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002910
2911 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07002912 size_t size;
2913 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002914 if (is_static) {
2915 size = klass->GetClassSize();
2916 field_offset = Class::FieldsOffset();
2917 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002918 Class* super_class = klass->GetSuperClass();
2919 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002920 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002921 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002922 }
2923 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002924 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002925
Brian Carlstromdbc05252011-09-09 01:59:59 -07002926 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002927
Brian Carlstromdbc05252011-09-09 01:59:59 -07002928 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07002929 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07002930 std::deque<Field*> grouped_and_sorted_fields;
2931 for (size_t i = 0; i < num_fields; i++) {
2932 grouped_and_sorted_fields.push_back(fields->Get(i));
2933 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002934 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002935 std::sort(grouped_and_sorted_fields.begin(),
2936 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002937 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002938
2939 // References should be at the front.
2940 size_t current_field = 0;
2941 size_t num_reference_fields = 0;
2942 for (; current_field < num_fields; current_field++) {
2943 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002944 fh.ChangeField(field);
2945 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002946 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07002947 if (isPrimitive) {
2948 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002949 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002950 grouped_and_sorted_fields.pop_front();
2951 num_reference_fields++;
2952 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002953 field->SetOffset(field_offset);
2954 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002955 }
2956
2957 // Now we want to pack all of the double-wide fields together. If
2958 // we're not aligned, though, we want to shuffle one 32-bit field
2959 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002960 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002961 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
2962 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002963 fh.ChangeField(field);
2964 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002965 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
2966 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07002967 continue;
2968 }
2969 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002970 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002971 // drop the consumed field
2972 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
2973 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002974 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07002975 // whether we found a 32-bit field for padding or not, we advance
2976 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002977 }
2978
2979 // Alignment is good, shuffle any double-wide fields forward, and
2980 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07002981 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07002982 while (!grouped_and_sorted_fields.empty()) {
2983 Field* field = grouped_and_sorted_fields.front();
2984 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002985 fh.ChangeField(field);
2986 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002987 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07002988 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002989 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07002990 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002991 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07002992 ? sizeof(uint64_t)
2993 : sizeof(uint32_t)));
2994 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002995 }
2996
Elliott Hughesadb460d2011-10-05 17:02:34 -07002997 // 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 -08002998 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
2999 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003000 // We know there are no non-reference fields in the Reference classes, and we know
3001 // that 'referent' is alphabetically last, so this is easy...
3002 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003003 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003004 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003005 --num_reference_fields;
3006 }
3007
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003008#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003009 // Make sure that all reference fields appear before
3010 // non-reference fields, and all double-wide fields are aligned.
3011 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003012 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003013 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003014 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003015 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003016 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003017 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003018 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3019 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003020 fh.ChangeField(field);
3021 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003022 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003023 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003024 is_primitive = true; // We lied above, so we have to expect a lie here.
3025 }
3026 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003027 if (!seen_non_ref) {
3028 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003029 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003030 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003031 } else {
3032 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003033 }
3034 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003035 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003036 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003037 }
3038#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003039 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003040 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003041 if (is_static) {
3042 klass->SetNumReferenceStaticFields(num_reference_fields);
3043 klass->SetClassSize(size);
3044 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003045 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003046 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003047 klass->SetObjectSize(size);
3048 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003049 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003050 return true;
3051}
3052
3053// Set the bitmap of reference offsets, refOffsets, from the ifields
3054// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003055void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003056 uint32_t reference_offsets = 0;
3057 Class* super_class = klass->GetSuperClass();
3058 if (super_class != NULL) {
3059 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003060 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003061 if (reference_offsets == CLASS_WALK_SUPER) {
3062 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003063 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003064 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003065 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003066 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003067}
3068
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003069void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003070 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003071}
3072
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003073void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003074 uint32_t reference_offsets) {
3075 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003076 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3077 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003078 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003079 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003080 // All of the fields that contain object references are guaranteed
3081 // to be at the beginning of the fields list.
3082 for (size_t i = 0; i < num_reference_fields; ++i) {
3083 // Note that byte_offset is the offset from the beginning of
3084 // object, not the offset into instance data
3085 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003086 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003087 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3088 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3089 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003090 CHECK_NE(new_bit, 0U);
3091 reference_offsets |= new_bit;
3092 } else {
3093 reference_offsets = CLASS_WALK_SUPER;
3094 break;
3095 }
3096 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003097 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003098 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003099 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003100 } else {
3101 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003102 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003103}
3104
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003105String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003106 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003107 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003108 if (resolved != NULL) {
3109 return resolved;
3110 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003111 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3112 int32_t utf16_length = dex_file.GetStringLength(string_id);
3113 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003114 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003115 dex_cache->SetResolvedString(string_idx, string);
3116 return string;
3117}
3118
3119Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003120 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003121 DexCache* dex_cache,
3122 const ClassLoader* class_loader) {
3123 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003124 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003125 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003126 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003127 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003128 // TODO: we used to throw here if resolved's class loader was not the
3129 // boot class loader. This was to permit different classes with the
3130 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003131 dex_cache->SetResolvedType(type_idx, resolved);
3132 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003133 CHECK(Thread::Current()->IsExceptionPending())
3134 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003135 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003136 }
3137 return resolved;
3138}
3139
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003140Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3141 uint32_t method_idx,
3142 DexCache* dex_cache,
3143 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003144 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003145 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3146 if (resolved != NULL) {
3147 return resolved;
3148 }
3149 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3150 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3151 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003152 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003153 return NULL;
3154 }
3155
Ian Rogers0571d352011-11-03 19:51:38 -07003156 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3157 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003158 if (is_direct) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003159 resolved = klass->FindDirectMethod(name, signature);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003160 } else if (klass->IsInterface()) {
3161 resolved = klass->FindInterfaceMethod(name, signature);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003162 } else {
3163 resolved = klass->FindVirtualMethod(name, signature);
3164 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003165 if (resolved != NULL) {
3166 dex_cache->SetResolvedMethod(method_idx, resolved);
3167 } else {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003168 ThrowNoSuchMethodError(is_direct, klass, name, signature);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003169 }
3170 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003171}
3172
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003173Field* ClassLinker::ResolveField(const DexFile& dex_file,
3174 uint32_t field_idx,
3175 DexCache* dex_cache,
3176 const ClassLoader* class_loader,
3177 bool is_static) {
3178 Field* resolved = dex_cache->GetResolvedField(field_idx);
3179 if (resolved != NULL) {
3180 return resolved;
3181 }
3182 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3183 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3184 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003185 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003186 return NULL;
3187 }
3188
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003189 const char* name = dex_file.GetFieldName(field_id);
3190 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003191 if (is_static) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003192 resolved = klass->FindStaticField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003193 } else {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003194 resolved = klass->FindInstanceField(name, type);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003195 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003196 if (resolved != NULL) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003197 dex_cache->SetResolvedField(field_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003198 } else {
Ian Rogersb067ac22011-12-13 18:05:09 -08003199 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3200 }
3201 return resolved;
3202}
3203
3204Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3205 uint32_t field_idx,
3206 DexCache* dex_cache,
3207 const ClassLoader* class_loader) {
3208 Field* resolved = dex_cache->GetResolvedField(field_idx);
3209 if (resolved != NULL) {
3210 return resolved;
3211 }
3212 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3213 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3214 if (klass == NULL) {
3215 DCHECK(Thread::Current()->IsExceptionPending());
3216 return NULL;
3217 }
3218
3219 const char* name = dex_file.GetFieldName(field_id);
3220 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3221 resolved = klass->FindField(name, type);
3222 if (resolved != NULL) {
3223 dex_cache->SetResolvedField(field_idx, resolved);
3224 } else {
3225 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003226 }
3227 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003228}
3229
Ian Rogersad25ac52011-10-04 19:13:33 -07003230const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer) {
3231 Class* declaring_class = referrer->GetDeclaringClass();
3232 DexCache* dex_cache = declaring_class->GetDexCache();
3233 const DexFile& dex_file = FindDexFile(dex_cache);
3234 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3235 return dex_file.GetShorty(method_id.proto_idx_);
3236}
3237
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003238void ClassLinker::DumpAllClasses(int flags) const {
3239 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3240 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3241 std::vector<Class*> all_classes;
3242 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003243 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003244 typedef Table::const_iterator It; // TODO: C++0x auto
3245 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3246 all_classes.push_back(it->second);
3247 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003248 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3249 all_classes.push_back(it->second);
3250 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003251 }
3252
3253 for (size_t i = 0; i < all_classes.size(); ++i) {
3254 all_classes[i]->DumpClass(std::cerr, flags);
3255 }
3256}
3257
Elliott Hughescac6cc72011-11-03 20:31:21 -07003258void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3259 MutexLock mu(classes_lock_);
3260 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3261 << classes_.size() << " allocated classes\n";
3262}
3263
Elliott Hughese27955c2011-08-26 15:21:24 -07003264size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003265 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003266 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003267}
3268
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003269pid_t ClassLinker::GetClassesLockOwner() {
3270 return classes_lock_.GetOwner();
3271}
3272
3273pid_t ClassLinker::GetDexLockOwner() {
3274 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003275}
3276
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003277void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3278 DCHECK(!init_done_);
3279
3280 DCHECK(klass != NULL);
3281 DCHECK(klass->GetClassLoader() == NULL);
3282
3283 DCHECK(class_roots_ != NULL);
3284 DCHECK(class_roots_->Get(class_root) == NULL);
3285 class_roots_->Set(class_root, klass);
3286}
3287
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003288} // namespace art