blob: 700174eff5580ae376363232dd4fd999b2e99e3f [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 Carlstrom5b332c82012-02-01 15:02:31 -080043#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070044#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070045#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070046#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070047#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070048#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070049#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070050#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070051#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070052#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070053
54namespace art {
55
Elliott Hughes4a2b4172011-09-20 17:08:25 -070056namespace {
57
Elliott Hughes362f9bc2011-10-17 18:56:41 -070058void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070059void ThrowNoClassDefFoundError(const char* fmt, ...) {
60 va_list args;
61 va_start(args, fmt);
62 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
63 va_end(args);
64}
65
Elliott Hughes362f9bc2011-10-17 18:56:41 -070066void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughese555dc02011-09-25 10:46:35 -070067void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070068 va_list args;
69 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070070 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070071 va_end(args);
72}
73
Elliott Hughes362f9bc2011-10-17 18:56:41 -070074void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
Elliott Hughes4a2b4172011-09-20 17:08:25 -070075void ThrowLinkageError(const char* fmt, ...) {
76 va_list args;
77 va_start(args, fmt);
78 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
79 va_end(args);
80}
81
Ian Rogers9f1ab122011-12-12 08:52:43 -080082void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
83 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080084 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070085 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080086 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080087 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080088 std::string location(kh.GetLocation());
89 if (!location.empty()) {
90 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070091 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070092 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070093}
94
Ian Rogersb067ac22011-12-13 18:05:09 -080095void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers9f1ab122011-12-12 08:52:43 -080096 const StringPiece& name) {
97 ClassHelper kh(c);
98 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -080099 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -0800100 << " in class " << kh.GetDescriptor() << " or its superclasses";
101 std::string location(kh.GetLocation());
102 if (!location.empty()) {
103 msg << " (defined in " << location << ")";
104 }
105 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
106}
107
Ian Rogerscab01012012-01-10 17:35:46 -0800108void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
109void ThrowNullPointerException(const char* fmt, ...) {
110 va_list args;
111 va_start(args, fmt);
112 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
113 va_end(args);
114}
115
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700116void ThrowEarlierClassFailure(Class* c) {
117 /*
118 * The class failed to initialize on a previous attempt, so we want to throw
119 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
120 * failed in verification, in which case v2 5.4.1 says we need to re-throw
121 * the previous error.
122 */
123 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
124
Brian Carlstrom4d9716c2012-01-30 01:49:33 -0800125 CHECK(c->IsErroneous()) << PrettyClass(c);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700126 if (c->GetVerifyErrorClass() != NULL) {
127 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800128 ClassHelper ve_ch(c->GetVerifyErrorClass());
129 std::string error_descriptor(ve_ch.GetDescriptor());
130 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700131 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800132 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700133 }
134}
135
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700136void WrapExceptionInInitializer() {
137 JNIEnv* env = Thread::Current()->GetJniEnv();
138
139 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
140 CHECK(cause.get() != NULL);
141
142 env->ExceptionClear();
143
144 // TODO: add java.lang.Error to JniConstants?
145 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
146 CHECK(error_class.get() != NULL);
147 if (env->IsInstanceOf(cause.get(), error_class.get())) {
148 // We only wrap non-Error exceptions; an Error can just be used as-is.
149 env->Throw(cause.get());
150 return;
151 }
152
153 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
154 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
155 CHECK(eiie_class.get() != NULL);
156
157 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
158 CHECK(mid != NULL);
159
160 ScopedLocalRef<jthrowable> eiie(env,
161 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
162 env->Throw(eiie.get());
163}
164
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800165static size_t Hash(const char* s) {
166 // This is the java.lang.String hashcode for convenience, not interoperability.
167 size_t hash = 0;
168 for (; *s != '\0'; ++s) {
169 hash = hash * 31 + *s;
170 }
171 return hash;
172}
173
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700174} // namespace
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700175
Elliott Hughes418d20f2011-09-22 14:00:39 -0700176const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700177 "Ljava/lang/Class;",
178 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700179 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700180 "[Ljava/lang/Object;",
181 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700182 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700183 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700184 "Ljava/lang/reflect/Field;",
185 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700186 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700187 "Ljava/lang/ClassLoader;",
188 "Ldalvik/system/BaseDexClassLoader;",
189 "Ldalvik/system/PathClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800190 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800191 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700192 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700193 "Z",
194 "B",
195 "C",
196 "D",
197 "F",
198 "I",
199 "J",
200 "S",
201 "V",
202 "[Z",
203 "[B",
204 "[C",
205 "[D",
206 "[F",
207 "[I",
208 "[J",
209 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700210 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700211};
212
Brian Carlstroma004aa92012-02-08 18:05:09 -0800213ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
214 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700215 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800216 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800217 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700218 return class_linker.release();
219}
220
Brian Carlstroma004aa92012-02-08 18:05:09 -0800221ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800222 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700223 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700224 return class_linker.release();
225}
226
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800227ClassLinker::ClassLinker(InternTable* intern_table)
228 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700229 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700230 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700231 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700232 init_done_(false),
233 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700234 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700235}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700236
Brian Carlstroma004aa92012-02-08 18:05:09 -0800237void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
238 VLOG(startup) << "ClassLinker::Init";
239 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700240
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700241 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700242
Elliott Hughes30646832011-10-13 16:59:46 -0700243 // java_lang_Class comes first, it's needed for AllocClass
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700244 SirtRef<Class> java_lang_Class(down_cast<Class*>(Heap::AllocObject(NULL, sizeof(ClassClass))));
245 CHECK(java_lang_Class.get() != NULL);
246 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700247 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700248 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700249
Elliott Hughes418d20f2011-09-22 14:00:39 -0700250 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700251 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
252 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700253
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700254 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700255 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
256 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700257 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700258 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700259 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700260
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700261 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700262 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
263 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700264
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700265 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700266 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700267
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700268 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700269 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
270 char_array_class->SetComponentType(char_class.get());
271 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700272
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700274 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
275 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700276 java_lang_String->SetObjectSize(sizeof(String));
277 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400278
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700279 // Create storage for root classes, save away our work so far (requires
280 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700281 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700282 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700283 SetClassRoot(kJavaLangClass, java_lang_Class.get());
284 SetClassRoot(kJavaLangObject, java_lang_Object.get());
285 SetClassRoot(kClassArrayClass, class_array_class.get());
286 SetClassRoot(kObjectArrayClass, object_array_class.get());
287 SetClassRoot(kCharArrayClass, char_array_class.get());
288 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700289
290 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700291 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
292 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
293 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
294 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
295 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
296 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
297 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
298 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700300 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700301 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302
303 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700304 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700306 IntArray::SetArrayClass(int_array_class.get());
307 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700308
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700309 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700310
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700311 // setup boot_class_path_ and register class_path now that we can
312 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800313 CHECK_NE(0U, boot_class_path.size());
314 for (size_t i = 0; i != boot_class_path.size(); ++i) {
315 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700316 CHECK(dex_file != NULL);
317 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700318 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700319
Elliott Hughes80609252011-09-23 17:24:51 -0700320 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700322 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700323 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700325 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
326
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700327 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
328 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700329 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700331 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700333
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700334 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700337 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700338 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700339 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700340
341 // now we can use FindSystemClass
342
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700343 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700344 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700345 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700346
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700347 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348 java_lang_Object->SetStatus(Class::kStatusNotReady);
349 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700350 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
352 java_lang_String->SetStatus(Class::kStatusNotReady);
353 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700354 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700355 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
356
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700357 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
359 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
360
361 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
362 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
363
364 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700365 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700366
367 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
368 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
369
370 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700371 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700372
373 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
374 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
375
376 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
377 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
378
379 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
380 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
381
Elliott Hughes418d20f2011-09-22 14:00:39 -0700382 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700383 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700384
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700385 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700386 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700387
388 // Setup the single, global copies of "interfaces" and "iftable"
389 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
390 CHECK(java_lang_Cloneable != NULL);
391 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
392 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700393 // We assume that Cloneable/Serializable don't have superinterfaces --
394 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700395 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800396 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
397 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700398
Elliott Hughes418d20f2011-09-22 14:00:39 -0700399 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800400 ClassHelper kh(class_array_class.get(), this);
401 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
402 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
403 kh.ChangeClass(object_array_class.get());
404 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
405 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700406 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700407 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700408 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700409 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700410
Elliott Hughes80609252011-09-23 17:24:51 -0700411 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
412 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700413 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700414
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700415 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700416 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700417 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700418
419 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700420 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700421 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700422
Ian Rogers466bb252011-10-14 03:29:56 -0700423 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
424
425 // Create java.lang.reflect.Proxy root
426 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
427 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
428
Brian Carlstrom1f870082011-08-23 16:02:11 -0700429 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700430 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
431 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700432 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700433 java_lang_ref_FinalizerReference->SetAccessFlags(
434 java_lang_ref_FinalizerReference->GetAccessFlags() |
435 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700436 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 java_lang_ref_PhantomReference->SetAccessFlags(
438 java_lang_ref_PhantomReference->GetAccessFlags() |
439 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700440 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700441 java_lang_ref_SoftReference->SetAccessFlags(
442 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700443 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700444 java_lang_ref_WeakReference->SetAccessFlags(
445 java_lang_ref_WeakReference->GetAccessFlags() |
446 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700447
Brian Carlstromaded5f72011-10-07 17:15:04 -0700448 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700449 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700450 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700451 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
452
453 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
454 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
455 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
456
457 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
458 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
459 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
460 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
461
jeffhao8cd6dda2012-02-22 10:15:34 -0800462 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
463 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800464 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
465 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800466 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700467 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
468 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700469 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700470
Brian Carlstroma663ea52011-08-19 23:33:41 -0700471 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700472
Brian Carlstroma004aa92012-02-08 18:05:09 -0800473 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700474}
475
476void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800477 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700478
479 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700480 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700481 // as the types of the field can't be resolved prior to the runtime being
482 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700483 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700484 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700485 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
486
Elliott Hughesadb460d2011-10-05 17:02:34 -0700487 Heap::SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
488
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800489 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
490
Brian Carlstrom16192862011-09-12 17:50:06 -0700491 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800492 FieldHelper fh(pendingNext, this);
493 CHECK_STREQ(fh.GetName(), "pendingNext");
494 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
495 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700496
497 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800498 fh.ChangeField(queue);
499 CHECK_STREQ(fh.GetName(), "queue");
500 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
501 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700502
503 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800504 fh.ChangeField(queueNext);
505 CHECK_STREQ(fh.GetName(), "queueNext");
506 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
507 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700508
509 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800510 fh.ChangeField(referent);
511 CHECK_STREQ(fh.GetName(), "referent");
512 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
513 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700514
515 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800516 fh.ChangeField(zombie);
517 CHECK_STREQ(fh.GetName(), "zombie");
518 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
519 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700520
521 Heap::SetReferenceOffsets(referent->GetOffset(),
522 queue->GetOffset(),
523 queueNext->GetOffset(),
524 pendingNext->GetOffset(),
525 zombie->GetOffset());
526
Brian Carlstroma663ea52011-08-19 23:33:41 -0700527 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700528 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700529 ClassRoot class_root = static_cast<ClassRoot>(i);
530 Class* klass = GetClassRoot(class_root);
531 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700532 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700533 // note SetClassRoot does additional validation.
534 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700535 }
536
Elliott Hughes92f14b22011-10-06 12:29:54 -0700537 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700538
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700539 // disable the slow paths in FindClass and CreatePrimitiveClass now
540 // that Object, Class, and Object[] are setup
541 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700542
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800543 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700544}
545
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700546void ClassLinker::RunRootClinits() {
547 Thread* self = Thread::Current();
548 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
549 Class* c = GetClassRoot(ClassRoot(i));
550 if (!c->IsArrayClass() && !c->IsPrimitive()) {
551 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700552 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700553 }
554 }
555}
556
Brian Carlstromd601af82012-01-06 10:15:19 -0800557bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
558 int oat_fd,
559 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800560 std::string dex2oat_string(GetAndroidRoot());
561 dex2oat_string += "/bin/dex2oat";
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800562#ifndef NDEBUG
563 dex2oat_string += 'd';
564#endif
565 const char* dex2oat = dex2oat_string.c_str();
566
Brian Carlstroma004aa92012-02-08 18:05:09 -0800567 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800568
569 std::string boot_image_option_string("--boot-image=");
Ian Rogers30fab402012-01-23 15:43:46 -0800570 boot_image_option_string += Heap::GetSpaces()[0]->AsImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800571 const char* boot_image_option = boot_image_option_string.c_str();
572
573 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800574 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800575 const char* dex_file_option = dex_file_option_string.c_str();
576
Brian Carlstromd601af82012-01-06 10:15:19 -0800577 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800578 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800579 const char* oat_fd_option = oat_fd_option_string.c_str();
580
Brian Carlstroma004aa92012-02-08 18:05:09 -0800581 std::string oat_location_option_string("--oat-location=");
582 oat_location_option_string += oat_cache_filename;
583 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800584
jeffhao262bf462011-10-20 18:36:32 -0700585 // fork and exec dex2oat
586 pid_t pid = fork();
587 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800588 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800589
590 // change process groups, so we don't get reaped by ProcessManager
591 setpgid(0, 0);
592
jeffhao10037c82012-01-23 15:06:23 -0800593 VLOG(class_linker) << dex2oat
594 << " --runtime-arg -Xms64m"
595 << " --runtime-arg -Xmx64m"
596 << " --runtime-arg -classpath"
597 << " --runtime-arg " << class_path
598 << " " << boot_image_option
599 << " " << dex_file_option
600 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800601 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800602
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800603 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700604 "--runtime-arg", "-Xms64m",
605 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500606 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800607 "--runtime-arg", class_path,
608 boot_image_option,
609 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800610 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800611 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700612 NULL);
613
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800614 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800615 return false;
jeffhao262bf462011-10-20 18:36:32 -0700616 } else {
617 // wait for dex2oat to finish
618 int status;
619 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
620 if (got_pid != pid) {
621 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800622 return false;
jeffhao262bf462011-10-20 18:36:32 -0700623 }
624 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800625 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
626 return false;
jeffhao262bf462011-10-20 18:36:32 -0700627 }
628 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800629 return true;
jeffhao262bf462011-10-20 18:36:32 -0700630}
631
Brian Carlstrom866c8622012-01-06 16:35:13 -0800632void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
633 MutexLock mu(dex_lock_);
634 RegisterOatFileLocked(oat_file);
635}
636
637void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
638 dex_lock_.AssertHeld();
639 oat_files_.push_back(&oat_file);
640}
641
Ian Rogers30fab402012-01-23 15:43:46 -0800642OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700643 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700644 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700645 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800646 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
647 // check the down cast
648 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700649 std::string oat_filename;
650 oat_filename += runtime->GetHostPrefix();
651 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma004aa92012-02-08 18:05:09 -0800652 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatBegin());
Ian Rogers30fab402012-01-23 15:43:46 -0800653 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700654 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700655 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700656 return NULL;
657 }
658 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
659 uint32_t image_oat_checksum = image_header.GetOatChecksum();
660 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800661 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700662 << " to expected oat checksum " << std::hex << oat_checksum
663 << " in image";
664 return NULL;
665 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800666 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800667 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700668 return oat_file;
669}
670
Brian Carlstromae826982011-11-09 01:33:42 -0800671const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800672 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800673}
674
Brian Carlstroma004aa92012-02-08 18:05:09 -0800675const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800676 for (size_t i = 0; i < oat_files_.size(); i++) {
677 const OatFile* oat_file = oat_files_[i];
678 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800679 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800680 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800681 return oat_file;
682 }
683 }
684 return NULL;
685}
686
Brian Carlstromd601af82012-01-06 10:15:19 -0800687class LockedFd {
688 public:
689 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
690 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
691 if (fd == -1) {
692 PLOG(ERROR) << "Failed to open file '" << name << "'";
693 return NULL;
694 }
695 fchmod(fd, mode);
696
697 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
698 // try to lock non-blocking so we can log if we need may need to block
699 int result = flock(fd, LOCK_EX | LOCK_NB);
700 if (result == -1) {
701 LOG(WARNING) << "sleeping while locking file " << name;
702 // retry blocking
703 result = flock(fd, LOCK_EX);
704 }
705 if (result == -1) {
706 PLOG(ERROR) << "Failed to lock file '" << name << "'";
707 close(fd);
708 return NULL;
709 }
710 return new LockedFd(fd);
711 }
712
713 int GetFd() const {
714 return fd_;
715 }
716
717 ~LockedFd() {
718 if (fd_ != -1) {
719 int result = flock(fd_, LOCK_UN);
720 if (result == -1) {
721 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
722 }
723 close(fd_);
724 }
725 }
726
727 private:
728 explicit LockedFd(int fd) : fd_(fd) {}
729
730 int fd_;
731};
732
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800733static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
734 uint32_t dex_location_checksum,
735 const std::string& oat_location) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800736 UniquePtr<OatFile> oat_file(OatFile::Open(oat_location, oat_location, NULL));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800737 if (oat_file.get() == NULL) {
738 return NULL;
739 }
740 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
741 if (oat_dex_file == NULL) {
742 return NULL;
743 }
744 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
745 return NULL;
746 }
747 Runtime::Current()->GetClassLinker()->RegisterOatFile(*oat_file.release());
748 return oat_dex_file->OpenDexFile();
749}
750
751const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
752 const std::string& oat_location) {
753 uint32_t dex_location_checksum;
754 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
755 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
756 return NULL;
757 }
758
759 // Check if we already have an up-to-date output file
760 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
761 dex_location_checksum,
762 oat_location);
763 if (dex_file != NULL) {
764 return dex_file;
765 }
766
767 // Generate the output oat file for the dex file
768 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
769 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
770 if (file.get() == NULL) {
771 LOG(ERROR) << "Failed to create oat file: " << oat_location;
772 return NULL;
773 }
774 if (!class_linker->GenerateOatFile(dex_location, file->Fd(), oat_location)) {
775 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
776 return NULL;
777 }
778 // Open the oat from file descriptor we passed to GenerateOatFile
779 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
780 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
781 return NULL;
782 }
783 const OatFile* oat_file = OatFile::Open(*file.get(), oat_location, NULL);
784 if (oat_file == NULL) {
785 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
786 return NULL;
787 }
788 class_linker->RegisterOatFile(*oat_file);
789 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
790 if (oat_dex_file == NULL) {
791 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
792 return NULL;
793 }
794 return oat_dex_file->OpenDexFile();
795}
796
797const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700798 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800799
Brian Carlstroma004aa92012-02-08 18:05:09 -0800800 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800801 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800802 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800803 }
804
Brian Carlstroma004aa92012-02-08 18:05:09 -0800805 // Look for an existing file next to dex, assuming its up-to-date if found
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800806 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800807 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800808 if (oat_file != NULL) {
809 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800810 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
811 return oat_dex_file->OpenDexFile();
812 }
813 // Look for an existing file in the art-cache, validating the result if found
814 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
815 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
816 oat_file = FindOatFileFromOatLocation(cache_location);
817 if (oat_file != NULL) {
818 uint32_t dex_location_checksum;
819 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
820 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
821 return NULL;
822 }
823 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
824 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800825 if (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum()) {
826 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700827 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800828 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
829 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
830 << ") mismatch with " << dex_location
831 << " (" << std::hex << dex_location_checksum << ")--- regenerating";
832 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
833 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800834 }
jeffhao262bf462011-10-20 18:36:32 -0700835 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800836 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
837
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800838 // Try to generate oat file if it wasn't found or was obsolete.
839 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
840 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700841}
842
Brian Carlstromae826982011-11-09 01:33:42 -0800843const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700844 for (size_t i = 0; i < oat_files_.size(); i++) {
845 const OatFile* oat_file = oat_files_[i];
846 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800847 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700848 return oat_file;
849 }
850 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700851 return NULL;
852}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700853
Brian Carlstromae826982011-11-09 01:33:42 -0800854const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800855 MutexLock mu(dex_lock_);
856 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
857 if (oat_file != NULL) {
858 return oat_file;
859 }
860
Brian Carlstroma004aa92012-02-08 18:05:09 -0800861 oat_file = OatFile::Open(oat_location, oat_location, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700862 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800863 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700864 }
Brian Carlstromae826982011-11-09 01:33:42 -0800865 CHECK(oat_file != NULL) << oat_location;
jeffhaof6174e82012-01-31 16:14:17 -0800866 RegisterOatFileLocked(*oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700867 return oat_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 Carlstrom5b332c82012-02-01 15:02:31 -0800903 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
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));
Ian Rogers5167c972012-02-03 10:41:20 -0800936 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700937 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700938
939 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700940
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800941 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700942}
943
Brian Carlstrom78128a62011-09-15 17:21:19 -0700944void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700945 DCHECK(obj != NULL);
946 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700947 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700948
Elliott Hughesdbb40792011-11-18 17:05:22 -0800949 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700950 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700951 return;
952 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700953 if (obj->IsClass()) {
954 // restore class to ClassLinker::classes_ table
955 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800956 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800957 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
958 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700959 return;
960 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700961}
962
963// Keep in sync with InitCallback. Anything we visit, we need to
964// reinit references to when reinitializing a ClassLinker from a
965// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700966void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
967 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700968
969 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700970 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700971 }
972
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700973 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700974 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700975 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700976 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700977 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700978 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700979 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700980 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700981
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700982 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700983}
984
Elliott Hughesa2155262011-11-16 16:26:58 -0800985void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
986 MutexLock mu(classes_lock_);
987 typedef Table::const_iterator It; // TODO: C++0x auto
988 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
989 if (!visitor(it->second, arg)) {
990 return;
991 }
992 }
993 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
994 if (!visitor(it->second, arg)) {
995 return;
996 }
997 }
998}
999
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001000ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001001 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001002 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001003 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001004 BooleanArray::ResetArrayClass();
1005 ByteArray::ResetArrayClass();
1006 CharArray::ResetArrayClass();
1007 DoubleArray::ResetArrayClass();
1008 FloatArray::ResetArrayClass();
1009 IntArray::ResetArrayClass();
1010 LongArray::ResetArrayClass();
1011 ShortArray::ResetArrayClass();
1012 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001013 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001014 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001015 STLDeleteElements(&boot_class_path_);
1016 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001017}
1018
1019DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001020 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1021 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001022 return NULL;
1023 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001024 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1025 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001026 return NULL;
1027 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001028 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1029 if (strings.get() == NULL) {
1030 return NULL;
1031 }
1032 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1033 if (types.get() == NULL) {
1034 return NULL;
1035 }
1036 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1037 if (methods.get() == NULL) {
1038 return NULL;
1039 }
1040 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1041 if (fields.get() == NULL) {
1042 return NULL;
1043 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001044 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1045 if (initialized_static_storage.get() == NULL) {
1046 return NULL;
1047 }
1048
1049 dex_cache->Init(location.get(),
1050 strings.get(),
1051 types.get(),
1052 methods.get(),
1053 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001054 initialized_static_storage.get());
1055 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001056}
1057
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001058InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1059 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001060 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1061 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001062 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001063 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001064}
1065
Brian Carlstrom4873d462011-08-21 15:23:39 -07001066Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1067 DCHECK_GE(class_size, sizeof(Class));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001068 SirtRef<Class> klass(Heap::AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001069 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001070 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001071 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001072}
1073
Brian Carlstrom4873d462011-08-21 15:23:39 -07001074Class* ClassLinker::AllocClass(size_t class_size) {
1075 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001076}
1077
Jesse Wilson35baaab2011-08-10 16:18:03 -04001078Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001079 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001080}
1081
1082Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001083 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001084}
1085
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001086ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1087 return ObjectArray<StackTraceElement>::Alloc(
1088 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1089 length);
1090}
1091
Brian Carlstromaded5f72011-10-07 17:15:04 -07001092Class* EnsureResolved(Class* klass) {
1093 DCHECK(klass != NULL);
1094 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001095 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001096 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001097 ObjectLock lock(klass);
1098 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001099 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001100 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001101 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001102 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001103 return NULL;
1104 }
1105 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001106 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001107 lock.Wait();
1108 }
1109 }
1110 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001111 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001112 return NULL;
1113 }
1114 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001115 CHECK(klass->IsResolved()) << PrettyClass(klass);
1116 CHECK(!self->IsExceptionPending())
1117 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1118 return klass;
1119}
1120
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001121Class* ClassLinker::FindSystemClass(const char* descriptor) {
1122 return FindClass(descriptor, NULL);
1123}
1124
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001125Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001126 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001127 Thread* self = Thread::Current();
1128 DCHECK(self != NULL);
1129 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001130 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001131 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1132 // for primitive classes that aren't backed by dex files.
1133 return FindPrimitiveClass(descriptor[0]);
1134 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001135 // Find the class in the loaded classes table.
1136 Class* klass = LookupClass(descriptor, class_loader);
1137 if (klass != NULL) {
1138 return EnsureResolved(klass);
1139 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001140 // Class is not yet loaded.
1141 if (descriptor[0] == '[') {
1142 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001143
Jesse Wilson47daf872011-11-23 11:42:45 -05001144 } else if (class_loader == NULL) {
1145 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1146 if (pair.second != NULL) {
1147 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1148 }
1149
1150 } else if (ClassLoader::UseCompileTimeClassPath()) {
1151 // first try the boot class path
1152 Class* system_class = FindSystemClass(descriptor);
1153 if (system_class != NULL) {
1154 return system_class;
1155 }
1156 CHECK(self->IsExceptionPending());
1157 self->ClearException();
1158
1159 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001160 const std::vector<const DexFile*>& class_path
1161 = ClassLoader::GetCompileTimeClassPath(class_loader);
1162 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001163 if (pair.second != NULL) {
1164 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001165 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001166
1167 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001168 std::string class_name_string(DescriptorToDot(descriptor));
Elliott Hughes09d4d012012-02-03 17:44:20 -08001169 ScopedThreadStateChange tsc(self, Thread::kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001170 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001171 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1172 CHECK(c.get() != NULL);
1173 // TODO: cache method?
1174 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1175 CHECK(mid != NULL);
1176 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1177 if (class_name_object.get() == NULL) {
1178 return NULL;
1179 }
1180 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001181 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1182 class_name_object.get()));
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001183 if (env->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001184 // If the ClassLoader threw, pass that exception up.
1185 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001186 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001187 // broken loader - throw NPE to be compatible with Dalvik
1188 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1189 class_name_string.c_str());
1190 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001191 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001192 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001193 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001194 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001195 }
1196
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001197 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001198 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001199}
1200
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001201Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001202 const ClassLoader* class_loader,
1203 const DexFile& dex_file,
1204 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001205 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001206 // Load the class from the dex file.
1207 if (!init_done_) {
1208 // finish up init of hand crafted class_roots_
1209 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001210 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001211 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001212 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001213 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001214 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001215 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001216 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001217 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001218 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001219 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001220 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001221 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001222 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001223 }
1224 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001225 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001226 }
1227 klass->SetDexCache(FindDexCache(dex_file));
1228 LoadClass(dex_file, dex_class_def, klass, class_loader);
1229 // Check for a pending exception during load
1230 Thread* self = Thread::Current();
1231 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001232 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001233 return NULL;
1234 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001235 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001236 klass->SetClinitThreadId(self->GetTid());
1237 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001238 Class* existing = InsertClass(descriptor, klass.get(), false);
1239 if (existing != NULL) {
1240 // We failed to insert because we raced with another thread.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001241 klass->SetClinitThreadId(0);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001242 klass.reset(existing);
1243 return EnsureResolved(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001244 }
1245 // Finish loading (if necessary) by finding parents
1246 CHECK(!klass->IsLoaded());
1247 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1248 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001249 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001250 lock.NotifyAll();
1251 return NULL;
1252 }
1253 CHECK(klass->IsLoaded());
1254 // Link the class (if necessary)
1255 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001256 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001257 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001258 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001259 lock.NotifyAll();
1260 return NULL;
1261 }
1262 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001263
1264 /*
1265 * We send CLASS_PREPARE events to the debugger from here. The
1266 * definition of "preparation" is creating the static fields for a
1267 * class and initializing them to the standard default values, but not
1268 * executing any code (that comes later, during "initialization").
1269 *
1270 * We did the static preparation in LinkClass.
1271 *
1272 * The class has been prepared and resolved but possibly not yet verified
1273 * at this point.
1274 */
1275 Dbg::PostClassPrepare(klass.get());
1276
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001277 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001278}
1279
Brian Carlstrom4873d462011-08-21 15:23:39 -07001280// Precomputes size that will be needed for Class, matching LinkStaticFields
1281size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1282 const DexFile::ClassDef& dex_class_def) {
1283 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001284 size_t num_ref = 0;
1285 size_t num_32 = 0;
1286 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001287 if (class_data != NULL) {
1288 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1289 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001290 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001291 char c = descriptor[0];
1292 if (c == 'L' || c == '[') {
1293 num_ref++;
1294 } else if (c == 'J' || c == 'D') {
1295 num_64++;
1296 } else {
1297 num_32++;
1298 }
1299 }
1300 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001301 // start with generic class data
1302 size_t size = sizeof(Class);
1303 // follow with reference fields which must be contiguous at start
1304 size += (num_ref * sizeof(uint32_t));
1305 // if there are 64-bit fields to add, make sure they are aligned
1306 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1307 if (num_32 != 0) {
1308 // use an available 32-bit field for padding
1309 num_32--;
1310 }
1311 size += sizeof(uint32_t); // either way, we are adding a word
1312 DCHECK_EQ(size, RoundUp(size, 8));
1313 }
1314 // tack on any 64-bit fields now that alignment is assured
1315 size += (num_64 * sizeof(uint64_t));
1316 // tack on any remaining 32-bit fields
1317 size += (num_32 * sizeof(uint32_t));
1318 return size;
1319}
1320
Ian Rogers19846512012-02-24 11:42:47 -08001321const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1322 DCHECK(descriptor != NULL);
1323 if (!Runtime::Current()->IsStarted() || ClassLoader::UseCompileTimeClassPath()) {
1324 return NULL;
1325 }
1326 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1327 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1328 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1329 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1330 uint32_t class_def_index;
1331 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1332 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1333 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1334 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1335 return oat_class;
1336}
1337
1338const void* ClassLinker::GetOatCodeFor(const Method* method) {
1339 // Special case to get oat code without overwriting a trampoline.
1340 CHECK(method->GetDeclaringClass()->IsInitializing());
1341 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
1342 // method for direct methods.
1343 CHECK(method->IsStatic() || method->IsDirect());
1344 ClassHelper kh(method->GetDeclaringClass());
1345 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
1346 size_t method_index = method->GetMethodIndex();
1347 return oat_class->GetOatMethod(method_index).GetCode();
1348}
1349
1350void ClassLinker::FixupStaticTrampolines(Class* klass) {
1351 ClassHelper kh(klass);
1352 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1353 CHECK(dex_class_def != NULL);
1354 const DexFile& dex_file = kh.GetDexFile();
1355 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1356 if (class_data == NULL) {
1357 return; // no fields or methods - for example a marker interface
1358 }
1359 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1360 if (oat_class.get() == NULL) {
1361 // OAT file unavailable
1362 return;
1363 }
1364 ClassDataItemIterator it(dex_file, class_data);
1365 // Skip fields
1366 while (it.HasNextStaticField()) {
1367 it.Next();
1368 }
1369 while (it.HasNextInstanceField()) {
1370 it.Next();
1371 }
1372 size_t method_index = 0;
1373 // Link the code of methods skipped by LinkCode
1374 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1375 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1376 Method* method = klass->GetDirectMethod(i);
1377 if (method->GetCode() == trampoline) {
1378 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1379 CHECK(code != NULL);
1380 method->SetCode(code);
1381 }
1382 method_index++;
1383 }
1384}
1385
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001386void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001387 // Every kind of method should at least get an invoke stub from the oat_method.
1388 // non-abstract methods also get their code pointers.
1389 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001390 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001391
Ian Rogers19846512012-02-24 11:42:47 -08001392 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001393 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001394 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001395 return;
1396 }
Ian Rogers19846512012-02-24 11:42:47 -08001397
1398 if (method->IsStatic() && !method->IsConstructor()) {
1399 // For static methods excluding the class initializer, install the trampoline
1400 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001401 }
1402 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001403 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001404 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001405 }
1406
1407 if (Runtime::Current()->IsMethodTracingActive()) {
1408#if defined(__arm__)
1409 Trace* tracer = Runtime::Current()->GetTracer();
1410 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
1411 tracer->SaveAndUpdateCode(method.get(), trace_stub);
1412#else
1413 UNIMPLEMENTED(WARNING);
1414#endif
Brian Carlstrom92827a52011-10-10 15:50:01 -07001415 }
1416}
1417
Brian Carlstromf615a612011-07-23 12:50:34 -07001418void ClassLinker::LoadClass(const DexFile& dex_file,
1419 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001420 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001421 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001422 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001423 CHECK(klass->GetDexCache() != NULL);
1424 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001425 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001426 CHECK(descriptor != NULL);
1427
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001428 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001429 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001430 // Make sure that none of our runtime-only flags are set.
1431 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001432 klass->SetAccessFlags(access_flags);
1433 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001434 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001435 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001436
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001437 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001438
Ian Rogers0571d352011-11-03 19:51:38 -07001439 // Load fields fields.
1440 const byte* class_data = dex_file.GetClassData(dex_class_def);
1441 if (class_data == NULL) {
1442 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001443 }
Ian Rogers0571d352011-11-03 19:51:38 -07001444 ClassDataItemIterator it(dex_file, class_data);
1445 if (it.NumStaticFields() != 0) {
1446 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1447 }
1448 if (it.NumInstanceFields() != 0) {
1449 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1450 }
1451 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1452 SirtRef<Field> sfield(AllocField());
1453 klass->SetStaticField(i, sfield.get());
1454 LoadField(dex_file, it, klass, sfield);
1455 }
1456 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1457 SirtRef<Field> ifield(AllocField());
1458 klass->SetInstanceField(i, ifield.get());
1459 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001460 }
1461
Ian Rogers19846512012-02-24 11:42:47 -08001462 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, descriptor));
1463
Ian Rogers0571d352011-11-03 19:51:38 -07001464 // Load methods.
1465 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001466 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001467 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001468 }
Ian Rogers0571d352011-11-03 19:51:38 -07001469 if (it.NumVirtualMethods() != 0) {
1470 // TODO: append direct methods to class object
1471 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001472 }
Ian Rogers0571d352011-11-03 19:51:38 -07001473 size_t method_index = 0;
1474 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1475 SirtRef<Method> method(AllocMethod());
1476 klass->SetDirectMethod(i, method.get());
1477 LoadMethod(dex_file, it, klass, method);
1478 if (oat_class.get() != NULL) {
1479 LinkCode(method, oat_class.get(), method_index);
1480 }
Ian Rogers19846512012-02-24 11:42:47 -08001481 method->SetMethodIndex(method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001482 method_index++;
1483 }
1484 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1485 SirtRef<Method> method(AllocMethod());
1486 klass->SetVirtualMethod(i, method.get());
1487 LoadMethod(dex_file, it, klass, method);
1488 if (oat_class.get() != NULL) {
1489 LinkCode(method, oat_class.get(), method_index);
1490 }
1491 method_index++;
1492 }
1493 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001494}
1495
Ian Rogers0571d352011-11-03 19:51:38 -07001496void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1497 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001498 uint32_t field_idx = it.GetMemberIndex();
1499 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001500 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001501 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001502}
1503
Ian Rogers0571d352011-11-03 19:51:38 -07001504void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1505 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001506 uint32_t dex_method_idx = it.GetMemberIndex();
1507 dst->SetDexMethodIndex(dex_method_idx);
1508 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001509 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001510
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001511
1512 StringPiece method_name(dex_file.GetMethodName(method_id));
1513 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001514 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1515 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001516
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001517 if (method_name == "finalize") {
1518 // Create the prototype for a signature of "()V"
1519 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1520 if (void_string_id != NULL) {
1521 const DexFile::TypeId* void_type_id =
1522 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1523 if (void_type_id != NULL) {
1524 std::vector<uint16_t> no_args;
1525 const DexFile::ProtoId* finalizer_proto =
1526 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1527 if (finalizer_proto != NULL) {
1528 // We have the prototype in the dex file
1529 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1530 klass->SetFinalizable();
1531 } else {
1532 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1533 // The Enum class declares a "final" finalize() method to prevent subclasses from
1534 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1535 // subclasses, so we exclude it here.
1536 // We also want to avoid setting the flag on Object, where we know that finalize() is
1537 // empty.
1538 if (klass_descriptor != "Ljava/lang/Object;" &&
1539 klass_descriptor != "Ljava/lang/Enum;") {
1540 klass->SetFinalizable();
1541 }
1542 }
1543 }
1544 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001545 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001546 }
Ian Rogers0571d352011-11-03 19:51:38 -07001547 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001548 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001549
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001550 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001551 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001552 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001553 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001554}
1555
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001556void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001557 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1558 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001559}
1560
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001561void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1562 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001563 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001564 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001565}
1566
Brian Carlstromaded5f72011-10-07 17:15:04 -07001567bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001568 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001569 for (size_t i = 0; i != dex_files_.size(); ++i) {
1570 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001571 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001572 }
1573 }
1574 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001575}
1576
Brian Carlstromaded5f72011-10-07 17:15:04 -07001577bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001578 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001579 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001580}
1581
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001582void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001583 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001584 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001585 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001586 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001587 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001588}
1589
Brian Carlstromaded5f72011-10-07 17:15:04 -07001590void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001591 {
1592 MutexLock mu(dex_lock_);
1593 if (IsDexFileRegisteredLocked(dex_file)) {
1594 return;
1595 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001596 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001597 // Don't alloc while holding the lock, since allocation may need to
1598 // suspend all threads and another thread may need the dex_lock_ to
1599 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001600 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001601 {
1602 MutexLock mu(dex_lock_);
1603 if (IsDexFileRegisteredLocked(dex_file)) {
1604 return;
1605 }
1606 RegisterDexFileLocked(dex_file, dex_cache);
1607 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001608}
1609
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001610void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001611 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001612 RegisterDexFileLocked(dex_file, dex_cache);
1613}
1614
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001615const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001616 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001617 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001618 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1619 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001620 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001621 }
1622 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001623 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001624 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001625}
1626
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001627DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001628 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001629 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001630 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001631 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001632 }
1633 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001634 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001635 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001636}
1637
Ian Rogers19846512012-02-24 11:42:47 -08001638void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1639 MutexLock mu(dex_lock_);
1640 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1641 dex_caches_[i]->Fixup(resolution_method);
1642 }
1643}
1644
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001645Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1646 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001647 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001648 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001649 CHECK(primitive_class != NULL);
1650 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001651 primitive_class->SetPrimitiveType(type);
1652 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001653 Class* existing = InsertClass(descriptor, primitive_class, false);
1654 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001655 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001656}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001657
Brian Carlstrombe977852011-07-19 14:54:54 -07001658// Create an array class (i.e. the class object for the array, not the
1659// array itself). "descriptor" looks like "[C" or "[[[[B" or
1660// "[Ljava/lang/String;".
1661//
1662// If "descriptor" refers to an array of primitives, look up the
1663// primitive type's internally-generated class object.
1664//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001665// "class_loader" is the class loader of the class that's referring to
1666// us. It's used to ensure that we're looking for the element type in
1667// the right context. It does NOT become the class loader for the
1668// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001669//
1670// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001671Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001672 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001673
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001674 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001675 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001676 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001677 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001678 return NULL;
1679 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001680
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001681 // See if the component type is already loaded. Array classes are
1682 // always associated with the class loader of their underlying
1683 // element type -- an array of Strings goes with the loader for
1684 // java/lang/String -- so we need to look for it there. (The
1685 // caller should have checked for the existence of the class
1686 // before calling here, but they did so with *their* class loader,
1687 // not the component type's loader.)
1688 //
1689 // If we find it, the caller adds "loader" to the class' initiating
1690 // loader list, which should prevent us from going through this again.
1691 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001692 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001693 // are the same, because our caller (FindClass) just did the
1694 // lookup. (Even if we get this wrong we still have correct behavior,
1695 // because we effectively do this lookup again when we add the new
1696 // class to the hash table --- necessary because of possible races with
1697 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001698 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001699 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001700 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001701 return new_class;
1702 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001703 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001704
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001705 // Fill out the fields in the Class.
1706 //
1707 // It is possible to execute some methods against arrays, because
1708 // all arrays are subclasses of java_lang_Object_, so we need to set
1709 // up a vtable. We can just point at the one in java_lang_Object_.
1710 //
1711 // Array classes are simple enough that we don't need to do a full
1712 // link step.
1713
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001714 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001715 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001716 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001717 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001718 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001719 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001720 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001721 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001722 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001723 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001724 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001725 }
1726 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001727 if (new_class.get() == NULL) {
1728 new_class.reset(AllocClass(sizeof(Class)));
1729 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001730 return NULL;
1731 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001732 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001733 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001734 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001735 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001736 new_class->SetSuperClass(java_lang_Object);
1737 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001738 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001739 new_class->SetClassLoader(component_type->GetClassLoader());
1740 new_class->SetStatus(Class::kStatusInitialized);
1741 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001742 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001743
1744
1745 // All arrays have java/lang/Cloneable and java/io/Serializable as
1746 // interfaces. We need to set that up here, so that stuff like
1747 // "instanceof" works right.
1748 //
1749 // Note: The GC could run during the call to FindSystemClass,
1750 // so we need to make sure the class object is GC-valid while we're in
1751 // there. Do this by clearing the interface list so the GC will just
1752 // think that the entries are null.
1753
1754
1755 // Use the single, global copies of "interfaces" and "iftable"
1756 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001757 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001758 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001759
1760 // Inherit access flags from the component type. Arrays can't be
1761 // used as a superclass or interface, so we want to add "final"
1762 // and remove "interface".
1763 //
1764 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001765 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001766 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001767 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1768 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001769
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001770 Class* existing = InsertClass(descriptor, new_class.get(), false);
1771 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001772 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001773 }
1774 // Another thread must have loaded the class after we
1775 // started but before we finished. Abandon what we've
1776 // done.
1777 //
1778 // (Yes, this happens.)
1779
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001780 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001781}
1782
1783Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001784 switch (Primitive::GetType(type)) {
1785 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001786 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001787 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001788 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001789 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001790 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001791 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001792 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001793 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001794 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001795 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001796 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001797 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001798 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001799 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001800 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001801 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001802 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001803 case Primitive::kPrimNot:
1804 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001805 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001806 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001807 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001808 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001809}
1810
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001811Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001812 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001813 DexCache* dex_cache = klass->GetDexCache();
1814 std::string source;
1815 if (dex_cache != NULL) {
1816 source += " from ";
1817 source += dex_cache->GetLocation()->ToModifiedUtf8();
1818 }
1819 LOG(INFO) << "Loaded class " << descriptor << source;
1820 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001821 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001822 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001823 Table& classes = image_class ? image_classes_ : classes_;
1824 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1825#ifndef NDEBUG
1826 // Check we don't have the class in the other table in error
1827 Table& other_classes = image_class ? classes_ : image_classes_;
1828 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1829#endif
1830 if (existing != NULL) {
1831 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001832 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001833 classes.insert(std::make_pair(hash, klass));
1834 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001835}
1836
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001837bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1838 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001839 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001840 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001841 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001842 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001843 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001844 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001845 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001846 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001847 classes_.erase(it);
1848 return true;
1849 }
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) {
Brian Carlstromae826982011-11-09 01:33:42 -08001852 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001853 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001854 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001855 image_classes_.erase(it);
1856 return true;
1857 }
1858 }
1859 return false;
1860}
1861
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001862Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1863 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001864 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001865 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001866 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1867 if (klass != NULL) {
1868 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001869 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001870 return LookupClass(descriptor, class_loader, hash, image_classes_);
1871}
1872
1873Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1874 size_t hash, const Table& classes) {
1875 ClassHelper kh(NULL, this);
1876 typedef Table::const_iterator It; // TODO: C++0x auto
1877 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001878 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001879 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001880 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001881#ifndef NDEBUG
1882 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001883 Class* klass2 = it->second;
1884 kh.ChangeClass(klass2);
1885 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001886 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001887 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001888 }
1889#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001890 return klass;
1891 }
1892 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001893 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001894}
1895
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001896void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001897 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001898 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001899 MutexLock mu(classes_lock_);
1900 typedef Table::const_iterator It; // TODO: C++0x auto
1901 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001902 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001903 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001904 Class* klass = it->second;
1905 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001906 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001907 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001908 }
1909 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001910 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001911 Class* klass = it->second;
1912 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001913 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001914 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001915 }
1916 }
1917}
1918
Ian Rogersc20a83e2012-01-18 18:15:32 -08001919#ifndef NDEBUG
1920static void CheckMethodsHaveGcMaps(Class* klass) {
1921 if (!Runtime::Current()->IsStarted()) {
1922 return;
1923 }
1924 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1925 Method* method = klass->GetDirectMethod(i);
1926 if (!method->IsNative() && !method->IsAbstract()) {
1927 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1928 }
1929 }
1930 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1931 Method* method = klass->GetVirtualMethod(i);
1932 if (!method->IsNative() && !method->IsAbstract()) {
1933 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1934 }
1935 }
1936}
1937#else
1938static void CheckMethodsHaveGcMaps(Class* klass) {
1939}
1940#endif
1941
jeffhao98eacac2011-09-14 16:11:53 -07001942void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001943 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08001944 ObjectLock lock(klass);
1945
jeffhao98eacac2011-09-14 16:11:53 -07001946 if (klass->IsVerified()) {
1947 return;
1948 }
1949
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001950 // The class might already be erroneous if we attempted to verify a subclass
1951 if (klass->IsErroneous()) {
1952 ThrowEarlierClassFailure(klass);
1953 return;
1954 }
1955
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001956 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001957 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001958
Ian Rogers1c5eb702012-02-01 09:18:34 -08001959 // Verify super class
1960 Class* super = klass->GetSuperClass();
1961 std::string error_msg;
1962 if (super != NULL) {
1963 // Acquire lock to prevent races on verifying the super class
1964 ObjectLock lock(super);
1965
1966 if (!super->IsVerified() && !super->IsErroneous()) {
1967 Runtime::Current()->GetClassLinker()->VerifyClass(super);
1968 }
1969 if (!super->IsVerified()) {
1970 error_msg = "Rejecting class ";
1971 error_msg += PrettyDescriptor(klass);
1972 error_msg += " that attempts to sub-class erroneous class ";
1973 error_msg += PrettyDescriptor(super);
1974 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
1975 Thread* self = Thread::Current();
1976 SirtRef<Throwable> cause(self->GetException());
1977 if (cause.get() != NULL) {
1978 self->ClearException();
1979 }
1980 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
1981 if (cause.get() != NULL) {
1982 self->GetException()->SetCause(cause.get());
1983 }
1984 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
1985 klass->SetStatus(Class::kStatusError);
1986 return;
1987 }
1988 }
1989
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001990 // Try to use verification information from oat file, otherwise do runtime verification
1991 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Ian Rogers1c5eb702012-02-01 09:18:34 -08001992 if (VerifyClassUsingOatFile(dex_file, klass) ||
1993 verifier::DexVerifier::VerifyClass(klass, error_msg)) {
Ian Rogersc4762272012-02-01 15:55:55 -08001994 DCHECK(!Thread::Current()->IsExceptionPending());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001995 // Make sure all classes referenced by catch blocks are resolved
1996 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07001997 klass->SetStatus(Class::kStatusVerified);
Ian Rogersc20a83e2012-01-18 18:15:32 -08001998 // Sanity check that a verified class has GC maps on all methods
1999 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002000 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002001 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002002 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2003 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002004 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002005 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002006 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2007 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002008 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002009 }
jeffhao98eacac2011-09-14 16:11:53 -07002010}
2011
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002012bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass) {
2013 if (!Runtime::Current()->IsStarted()) {
2014 return false;
2015 }
2016 if (ClassLoader::UseCompileTimeClassPath()) {
2017 return false;
2018 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002019 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2020 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002021 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002022 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002023 const char* descriptor = ClassHelper(klass).GetDescriptor();
2024 uint32_t class_def_index;
2025 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002026 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002027 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002028 CHECK(oat_class.get() != NULL)
2029 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002030 Class::Status status = oat_class->GetStatus();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002031 if (status == Class::kStatusVerified || status == Class::kStatusInitialized) {
2032 return true;
2033 }
Ian Rogersc4762272012-02-01 15:55:55 -08002034 if (status == Class::kStatusError) {
2035 // Compile time verification failed. Compile time verification can fail because we have
2036 // incomplete type information. Consider the following:
2037 // class ... {
2038 // Foo x;
2039 // .... () {
2040 // if (...) {
2041 // v1 gets assigned a type of resolved class Foo
2042 // } else {
2043 // v1 gets assigned a type of unresolved class Bar
2044 // }
2045 // iput x = v1
2046 // } }
2047 // when we merge v1 following the if-the-else it results in Conflict
2048 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2049 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2050 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2051 // at compile time).
2052 return false;
2053 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002054 if (status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002055 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2056 // not loading the class.
2057 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2058 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002059 return false;
2060 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002061 LOG(FATAL) << "Unexpected class status: " << status
2062 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2063
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002064 return false;
2065}
2066
2067void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2068 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2069 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2070 }
2071 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2072 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2073 }
2074}
2075
2076void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2077 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2078 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2079 if (code_item == NULL) {
2080 return; // native or abstract method
2081 }
2082 if (code_item->tries_size_ == 0) {
2083 return; // nothing to process
2084 }
2085 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2086 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2087 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2088 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2089 CatchHandlerIterator iterator(handlers_ptr);
2090 for (; iterator.HasNext(); iterator.Next()) {
2091 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2092 // unresolved exception types will be ignored by exception delivery
2093 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2094 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2095 if (exception_type == NULL) {
2096 DCHECK(Thread::Current()->IsExceptionPending());
2097 Thread::Current()->ClearException();
2098 }
2099 }
2100 }
2101 handlers_ptr = iterator.EndDataPointer();
2102 }
2103}
2104
Ian Rogersc2b44472011-12-14 21:17:17 -08002105static void CheckProxyConstructor(Method* constructor);
2106static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2107
Jesse Wilson95caa792011-10-12 18:14:17 -04002108Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002109 ClassLoader* loader, ObjectArray<Method>* methods,
2110 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002111 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002112 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002113 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002114 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002115 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002116 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002117 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002118 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002119 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002120 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002121
2122 klass->SetStatus(Class::kStatusIdx);
2123
2124 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2125
2126 // Create static field that holds throws, instance fields are inherited
2127 klass->SetSFields(AllocObjectArray<Field>(1));
2128 SirtRef<Field> sfield(AllocField());
2129 klass->SetStaticField(0, sfield.get());
2130 sfield->SetDexFieldIndex(-1);
2131 sfield->SetDeclaringClass(klass.get());
2132 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002133
Ian Rogers466bb252011-10-14 03:29:56 -07002134 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002135 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002136 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002137
Ian Rogers466bb252011-10-14 03:29:56 -07002138 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002139 size_t num_virtual_methods = methods->GetLength();
2140 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2141 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002142 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002143 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002144 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002145
2146 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2147 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2148 DCHECK(!Thread::Current()->IsExceptionPending());
2149
2150 // Link the fields and virtual methods, creating vtable and iftables
2151 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002152 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002153 return NULL;
2154 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002155 sfield->SetObject(NULL, throws); // initialize throws field
2156 klass->SetStatus(Class::kStatusInitialized);
2157
2158 // sanity checks
2159#ifndef NDEBUG
2160 bool debug = true;
2161#else
2162 bool debug = false;
2163#endif
2164 if (debug) {
2165 CHECK(klass->GetIFields() == NULL);
2166 CheckProxyConstructor(klass->GetDirectMethod(0));
2167 for (size_t i = 0; i < num_virtual_methods; ++i) {
2168 SirtRef<Method> prototype(methods->Get(i));
2169 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2170 }
Brian Carlstrom89521892011-12-07 22:05:07 -08002171 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08002172 throws_field_name += name->ToModifiedUtf8();
2173 throws_field_name += ".throws";
2174 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
2175
2176 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
2177 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2178 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002179 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002180}
2181
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002182std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2183 DCHECK(proxy_class->IsProxyClass());
2184 String* name = proxy_class->GetName();
2185 DCHECK(name != NULL);
2186 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2187}
2188
Ian Rogers16f93672012-02-14 12:29:06 -08002189Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2190 DCHECK(proxy_class->IsProxyClass());
2191 DCHECK(proxy_method->IsProxyMethod());
2192 // Locate the dex cache of the original interface/Object
2193 DexCache* dex_cache = NULL;
2194 {
2195 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2196 MutexLock mu(dex_lock_);
2197 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2198 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2199 dex_cache = dex_caches_[i];
2200 break;
2201 }
2202 }
2203 }
2204 CHECK(dex_cache != NULL);
2205 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2206 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2207 CHECK(resolved_method != NULL);
2208 return resolved_method;
2209}
2210
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002211
2212Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002213 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002214 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002215 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002216 Method* proxy_constructor = proxy_direct_methods->Get(2);
2217 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2218 // code_ too)
2219 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2220 // Make this constructor public and fix the class to be our Proxy version
2221 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002222 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002223 return constructor;
2224}
2225
2226static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002227 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002228 MethodHelper mh(constructor);
2229 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002230 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002231 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002232}
2233
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002234Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2235 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2236 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002237 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2238 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002239 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002240 // as necessary
2241 Method* method = down_cast<Method*>(prototype->Clone());
2242
2243 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2244 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002245 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002246 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002247
Ian Rogers466bb252011-10-14 03:29:56 -07002248 // At runtime the method looks like a reference and argument saving method, clone the code
2249 // related parameters from this method.
2250 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2251 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2252 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2253 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
2254 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogers16f93672012-02-14 12:29:06 -08002255
Ian Rogersc2b44472011-12-14 21:17:17 -08002256 return method;
2257}
Jesse Wilson95caa792011-10-12 18:14:17 -04002258
Ian Rogersc2b44472011-12-14 21:17:17 -08002259static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002260 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002261 CHECK(!prototype->IsFinal());
2262 CHECK(method->IsFinal());
2263 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002264
2265 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2266 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2267 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2268 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2269 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2270 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2271 method->GetDexCacheInitializedStaticStorage());
2272 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2273
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002274 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002275 MethodHelper mh2(prototype.get());
2276 CHECK_STREQ(mh.GetName(), mh2.GetName());
2277 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002278 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002279 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002280}
2281
Brian Carlstrom25c33252011-09-18 15:58:35 -07002282bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002283 CHECK(klass->IsResolved() || klass->IsErroneous())
2284 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002285
Carl Shapirob5573532011-07-12 18:22:59 -07002286 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002287
Brian Carlstrom25c33252011-09-18 15:58:35 -07002288 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002289 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002290 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002291 ObjectLock lock(klass);
2292
Brian Carlstromd1422f82011-09-28 11:37:09 -07002293 if (klass->GetStatus() == Class::kStatusInitialized) {
2294 return true;
2295 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002296
Brian Carlstromd1422f82011-09-28 11:37:09 -07002297 if (klass->IsErroneous()) {
2298 ThrowEarlierClassFailure(klass);
2299 return false;
2300 }
2301
2302 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002303 VerifyClass(klass);
2304 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002305 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002306 return false;
2307 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002308 }
2309
Brian Carlstrom25c33252011-09-18 15:58:35 -07002310 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2311 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002312 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002313 // don't bother going to kStatusInitializing. We return false so that
2314 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002315 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2316 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002317 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002318 }
2319
Brian Carlstromd1422f82011-09-28 11:37:09 -07002320 // If the class is kStatusInitializing, either this thread is
2321 // initializing higher up the stack or another thread has beat us
2322 // to initializing and we need to wait. Either way, this
2323 // invocation of InitializeClass will not be responsible for
2324 // running <clinit> and will return.
2325 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002326 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002327 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002328 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002329 return true;
2330 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002331 // No. That's fine. Wait for another thread to finish initializing.
2332 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002333 }
2334
2335 if (!ValidateSuperClassDescriptors(klass)) {
2336 klass->SetStatus(Class::kStatusError);
2337 return false;
2338 }
2339
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002340 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002341
Elliott Hughesdcc24742011-09-07 14:02:44 -07002342 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002343 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002344 }
2345
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002346 uint64_t t0 = NanoTime();
2347
Brian Carlstrom25c33252011-09-18 15:58:35 -07002348 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002349 // Super class initialization failed, this can be because we can't run
2350 // super-class class initializers in which case we'll be verified.
2351 // Otherwise this class is erroneous.
2352 if (!can_run_clinit) {
2353 CHECK(klass->IsVerified());
2354 } else {
2355 CHECK(klass->IsErroneous());
2356 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002357 return false;
2358 }
2359
2360 InitializeStaticFields(klass);
2361
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002362 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002363 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002364 }
2365
Ian Rogers19846512012-02-24 11:42:47 -08002366 FixupStaticTrampolines(klass);
2367
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002368 uint64_t t1 = NanoTime();
2369
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002370 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002371 {
2372 ObjectLock lock(klass);
2373
2374 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002375 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002376 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002377 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002378 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002379 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2380 RuntimeStats* thread_stats = self->GetStats();
2381 ++global_stats->class_init_count;
2382 ++thread_stats->class_init_count;
2383 global_stats->class_init_time_ns += (t1 - t0);
2384 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002385 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002386 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002387 ClassHelper kh(klass);
2388 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002389 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002390 }
2391 lock.NotifyAll();
2392 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002393 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002394}
2395
Brian Carlstromd1422f82011-09-28 11:37:09 -07002396bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2397 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002398 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002399 lock.Wait();
2400
2401 // When we wake up, repeat the test for init-in-progress. If
2402 // there's an exception pending (only possible if
2403 // "interruptShouldThrow" was set), bail out.
2404 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002405 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002406 klass->SetStatus(Class::kStatusError);
2407 return false;
2408 }
2409 // Spurious wakeup? Go back to waiting.
2410 if (klass->GetStatus() == Class::kStatusInitializing) {
2411 continue;
2412 }
2413 if (klass->IsErroneous()) {
2414 // The caller wants an exception, but it was thrown in a
2415 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002416 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002417 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002418 return false;
2419 }
2420 if (klass->IsInitialized()) {
2421 return true;
2422 }
2423 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2424 }
2425 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2426}
2427
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002428bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2429 if (klass->IsInterface()) {
2430 return true;
2431 }
2432 // begin with the methods local to the superclass
2433 if (klass->HasSuperClass() &&
2434 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2435 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002436 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2437 const Method* method = klass->GetVTable()->Get(i);
2438 if (method != super->GetVTable()->Get(i) &&
2439 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002440 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2441 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2442 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002443 return false;
2444 }
2445 }
2446 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002447 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2448 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2449 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002450 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2451 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002452 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002453 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2454 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002455 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2456 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2457 PrettyMethod(method).c_str(),
2458 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002459 return false;
2460 }
2461 }
2462 }
2463 }
2464 return true;
2465}
2466
Ian Rogers595799e2012-01-11 17:32:51 -08002467// Returns true if classes referenced by the signature of the method are the
2468// same classes in klass1 as they are in klass2.
2469bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2470 const Class* klass1,
2471 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002472 if (klass1 == klass2) {
2473 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002474 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002475 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002476 const DexFile::ProtoId& proto_id =
2477 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002478 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2479 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002480 if (descriptor == NULL) {
2481 break;
2482 }
2483 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2484 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002485 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002486 return false;
2487 }
2488 }
2489 }
2490 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002491 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002492 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002493 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002494 return false;
2495 }
2496 }
2497 return true;
2498}
2499
Ian Rogers595799e2012-01-11 17:32:51 -08002500// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2501bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2502 const Class* klass1,
2503 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002504 CHECK(descriptor != NULL);
2505 CHECK(klass1 != NULL);
2506 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002507 if (klass1 == klass2) {
2508 return true;
2509 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002510 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002511 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002512 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002513 }
Ian Rogers595799e2012-01-11 17:32:51 -08002514 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2515 if (found2 == NULL) {
2516 Thread::Current()->ClearException();
2517 }
2518 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002519}
2520
Brian Carlstrom25c33252011-09-18 15:58:35 -07002521bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002522 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002523 if (!klass->IsInterface() && klass->HasSuperClass()) {
2524 Class* super_class = klass->GetSuperClass();
2525 if (super_class->GetStatus() != Class::kStatusInitialized) {
2526 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002527 Thread* self = Thread::Current();
2528 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002529 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002530 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002531 // TODO: check for a pending exception
2532 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002533 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002534 // Don't set status to error when we can't run <clinit>.
2535 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2536 klass->SetStatus(Class::kStatusVerified);
2537 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002538 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002539 klass->SetStatus(Class::kStatusError);
2540 klass->NotifyAll();
2541 return false;
2542 }
2543 }
2544 }
2545 return true;
2546}
2547
Brian Carlstrom25c33252011-09-18 15:58:35 -07002548bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002549 CHECK(c != NULL);
2550 if (c->IsInitialized()) {
2551 return true;
2552 }
2553
Elliott Hughes5f791332011-09-15 17:45:30 -07002554 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002555 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002556 bool success = InitializeClass(c, can_run_clinit);
2557 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002558 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002559 }
2560 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002561}
2562
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002563void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002564 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002565 const ClassLoader* cl = c->GetClassLoader();
2566 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002567 ClassDataItemIterator it(dex_file, class_data);
2568 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2569 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002570 }
2571}
2572
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002573void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002574 size_t num_static_fields = klass->NumStaticFields();
2575 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002576 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002577 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002578 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002579 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002580 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002581 return;
2582 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002583 ClassHelper kh(klass);
2584 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002585 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002586 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002587 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002588
Ian Rogers0571d352011-11-03 19:51:38 -07002589 if (it.HasNext()) {
2590 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2591 std::map<uint32_t, Field*> field_map;
2592 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2593 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2594 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002595 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002596 }
2597}
2598
Ian Rogersc2b44472011-12-14 21:17:17 -08002599bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002600 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002601 if (!LinkSuperClass(klass)) {
2602 return false;
2603 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002604 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002605 return false;
2606 }
2607 if (!LinkInstanceFields(klass)) {
2608 return false;
2609 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002610 if (!LinkStaticFields(klass)) {
2611 return false;
2612 }
2613 CreateReferenceInstanceOffsets(klass);
2614 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002615 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2616 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002617 return true;
2618}
2619
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002620bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002621 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002622 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2623 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002624 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002625 uint16_t super_class_idx = class_def->superclass_idx_;
2626 if (super_class_idx != DexFile::kDexNoIndex16) {
2627 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002628 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002629 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002630 return false;
2631 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002632 // Verify
2633 if (!klass->CanAccess(super_class)) {
2634 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2635 "Class %s extended by class %s is inaccessible",
2636 PrettyDescriptor(super_class).c_str(),
2637 PrettyDescriptor(klass.get()).c_str());
2638 return false;
2639 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002640 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002641 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002642 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2643 if (interfaces != NULL) {
2644 for (size_t i = 0; i < interfaces->Size(); i++) {
2645 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2646 Class* interface = ResolveType(dex_file, idx, klass.get());
2647 if (interface == NULL) {
2648 DCHECK(Thread::Current()->IsExceptionPending());
2649 return false;
2650 }
2651 // Verify
2652 if (!klass->CanAccess(interface)) {
2653 // TODO: the RI seemed to ignore this in my testing.
2654 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2655 "Interface %s implemented by class %s is inaccessible",
2656 PrettyDescriptor(interface).c_str(),
2657 PrettyDescriptor(klass.get()).c_str());
2658 return false;
2659 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002660 }
2661 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002662 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002663 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002664 return true;
2665}
2666
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002667bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002668 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002669 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002670 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002671 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002672 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002673 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002674 return false;
2675 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002676 return true;
2677 }
2678 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002679 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002680 return false;
2681 }
2682 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002683 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002684 Thread* self = Thread::Current();
2685 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002686 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002687 PrettyDescriptor(super).c_str(),
2688 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002689 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002690 return false;
2691 }
2692 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002693 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002694 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002695 PrettyDescriptor(super).c_str(),
2696 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002697 return false;
2698 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002699
2700 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2701 if (super->IsFinalizable()) {
2702 klass->SetFinalizable();
2703 }
2704
Elliott Hughes2da50362011-10-10 16:57:08 -07002705 // Inherit reference flags (if any) from the superclass.
2706 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2707 if (reference_flags != 0) {
2708 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2709 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002710 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002711 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002712 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002713 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002714 return false;
2715 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002716
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002717#ifndef NDEBUG
2718 // Ensure super classes are fully resolved prior to resolving fields..
2719 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002720 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002721 super = super->GetSuperClass();
2722 }
2723#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002724 return true;
2725}
2726
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002727// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002728bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002729 if (klass->IsInterface()) {
2730 // No vtable.
2731 size_t count = klass->NumVirtualMethods();
2732 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002733 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002734 return false;
2735 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002736 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002737 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002738 }
jeffhaobdb76512011-09-07 11:43:16 -07002739 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002740 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002741 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002742 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002743 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002744 }
2745 return true;
2746}
2747
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002748bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002749 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002750 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2751 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002752 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002753 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002754 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002755 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002756 MethodHelper local_mh(NULL, this);
2757 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002758 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002759 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002760 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002761 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002762 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002763 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002764 super_mh.ChangeMethod(super_method);
2765 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002766 // Verify
2767 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002768 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002769 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002770 PrettyDescriptor(klass.get()).c_str(),
2771 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002772 return false;
2773 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002774 vtable->Set(j, local_method);
2775 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002776 break;
2777 }
2778 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002779 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002780 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002781 vtable->Set(actual_count, local_method);
2782 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002783 actual_count += 1;
2784 }
2785 }
2786 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002787 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002788 return false;
2789 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002790 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002791 CHECK_LE(actual_count, max_count);
2792 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002793 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002794 }
Ian Rogers30fab402012-01-23 15:43:46 -08002795 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002796 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002797 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002798 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002799 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002800 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002801 return false;
2802 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002803 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002804 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002805 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2806 vtable->Set(i, virtual_method);
2807 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002808 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002809 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002810 }
2811 return true;
2812}
2813
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002814bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002815 size_t super_ifcount;
2816 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002817 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002818 } else {
2819 super_ifcount = 0;
2820 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002821 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002822 ClassHelper kh(klass.get(), this);
2823 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2824 ifcount += num_interfaces;
2825 for (size_t i = 0; i < num_interfaces; i++) {
2826 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2827 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002828 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002829 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002830 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002831 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002832 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002833 return true;
2834 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002835 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002836 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002837 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2838 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002839 Class* super_interface = super_iftable->Get(i)->GetInterface();
2840 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002841 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002842 }
2843 // Flatten the interface inheritance hierarchy.
2844 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002845 for (size_t i = 0; i < num_interfaces; i++) {
2846 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002847 DCHECK(interface != NULL);
2848 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002849 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002850 Thread* self = Thread::Current();
2851 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002852 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002853 PrettyDescriptor(klass.get()).c_str(),
2854 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002855 return false;
2856 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002857 // Check if interface is already in iftable
2858 bool duplicate = false;
2859 for (size_t j = 0; j < idx; j++) {
2860 Class* existing_interface = iftable->Get(j)->GetInterface();
2861 if (existing_interface == interface) {
2862 duplicate = true;
2863 break;
2864 }
2865 }
2866 if (!duplicate) {
2867 // Add this non-duplicate interface.
2868 iftable->Set(idx++, AllocInterfaceEntry(interface));
2869 // Add this interface's non-duplicate super-interfaces.
2870 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2871 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2872 bool super_duplicate = false;
2873 for (size_t k = 0; k < idx; k++) {
2874 Class* existing_interface = iftable->Get(k)->GetInterface();
2875 if (existing_interface == super_interface) {
2876 super_duplicate = true;
2877 break;
2878 }
2879 }
2880 if (!super_duplicate) {
2881 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2882 }
2883 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002884 }
2885 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002886 // Shrink iftable in case duplicates were found
2887 if (idx < ifcount) {
2888 iftable.reset(iftable->CopyOf(idx));
2889 ifcount = idx;
2890 } else {
2891 CHECK_EQ(idx, ifcount);
2892 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002893 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002894
2895 // If we're an interface, we don't need the vtable pointers, so we're done.
2896 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002897 return true;
2898 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002899 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002900 MethodHelper vtable_mh(NULL, this);
2901 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002902 for (size_t i = 0; i < ifcount; ++i) {
2903 InterfaceEntry* interface_entry = iftable->Get(i);
2904 Class* interface = interface_entry->GetInterface();
2905 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2906 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002907 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002908 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2909 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002910 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002911 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002912 // For each method listed in the interface's method list, find the
2913 // matching method in our class's method list. We want to favor the
2914 // subclass over the superclass, which just requires walking
2915 // back from the end of the vtable. (This only matters if the
2916 // superclass defines a private method and this class redefines
2917 // it -- otherwise it would use the same vtable slot. In .dex files
2918 // those don't end up in the virtual method table, so it shouldn't
2919 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002920 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2921 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002922 vtable_mh.ChangeMethod(vtable_method);
2923 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002924 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002925 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002926 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002927 return false;
2928 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002929 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002930 break;
2931 }
2932 }
2933 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002934 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002935 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002936 Method* mir_method = miranda_list[mir];
2937 vtable_mh.ChangeMethod(mir_method);
2938 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002939 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002940 break;
2941 }
2942 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002943 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002944 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002945 miranda_method.reset(AllocMethod());
2946 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2947 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002948 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002949 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002950 }
2951 }
2952 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002953 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002954 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002955 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002956 klass->SetVirtualMethods((old_method_count == 0)
2957 ? AllocObjectArray<Method>(new_method_count)
2958 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002959
Ian Rogers30fab402012-01-23 15:43:46 -08002960 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
2961 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002962 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002963 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08002964 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07002965 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002966 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002967 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002968 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2969 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2970 klass->SetVirtualMethod(old_method_count + i, method);
2971 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002972 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002973 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002974 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002975 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002976
2977 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2978 for (int i = 0; i < vtable->GetLength(); ++i) {
2979 CHECK(vtable->Get(i) != NULL);
2980 }
2981
2982// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2983
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002984 return true;
2985}
2986
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002987bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
2988 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002989 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002990}
2991
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002992bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
2993 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002994 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07002995 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002996 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07002997 return success;
2998}
2999
Brian Carlstromdbc05252011-09-09 01:59:59 -07003000struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003001 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003002 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003003 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003004 fh_->ChangeField(field1);
3005 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3006 fh_->ChangeField(field2);
3007 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003008 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3009 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3010 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3011 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003012 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3013 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3014 if (order1 != order2) {
3015 return order1 < order2;
3016 }
3017
3018 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003019 fh_->ChangeField(field1);
3020 StringPiece name1(fh_->GetName());
3021 fh_->ChangeField(field2);
3022 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003023 return name1 < name2;
3024 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003025
3026 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003027};
3028
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003029bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003030 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003031 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003032
3033 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003034 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003035
3036 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003037 size_t size;
3038 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003039 if (is_static) {
3040 size = klass->GetClassSize();
3041 field_offset = Class::FieldsOffset();
3042 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003043 Class* super_class = klass->GetSuperClass();
3044 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003045 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003046 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003047 }
3048 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003049 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003050
Brian Carlstromdbc05252011-09-09 01:59:59 -07003051 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003052
Brian Carlstromdbc05252011-09-09 01:59:59 -07003053 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003054 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003055 std::deque<Field*> grouped_and_sorted_fields;
3056 for (size_t i = 0; i < num_fields; i++) {
3057 grouped_and_sorted_fields.push_back(fields->Get(i));
3058 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003059 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003060 std::sort(grouped_and_sorted_fields.begin(),
3061 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003062 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003063
3064 // References should be at the front.
3065 size_t current_field = 0;
3066 size_t num_reference_fields = 0;
3067 for (; current_field < num_fields; current_field++) {
3068 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003069 fh.ChangeField(field);
3070 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003071 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003072 if (isPrimitive) {
3073 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003074 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003075 grouped_and_sorted_fields.pop_front();
3076 num_reference_fields++;
3077 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003078 field->SetOffset(field_offset);
3079 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003080 }
3081
3082 // Now we want to pack all of the double-wide fields together. If
3083 // we're not aligned, though, we want to shuffle one 32-bit field
3084 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003085 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003086 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3087 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003088 fh.ChangeField(field);
3089 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003090 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3091 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003092 continue;
3093 }
3094 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003095 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003096 // drop the consumed field
3097 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3098 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003099 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003100 // whether we found a 32-bit field for padding or not, we advance
3101 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003102 }
3103
3104 // Alignment is good, shuffle any double-wide fields forward, and
3105 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003106 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003107 while (!grouped_and_sorted_fields.empty()) {
3108 Field* field = grouped_and_sorted_fields.front();
3109 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003110 fh.ChangeField(field);
3111 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003112 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003113 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003114 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003115 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003116 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003117 ? sizeof(uint64_t)
3118 : sizeof(uint32_t)));
3119 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003120 }
3121
Elliott Hughesadb460d2011-10-05 17:02:34 -07003122 // 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 -08003123 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3124 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003125 // We know there are no non-reference fields in the Reference classes, and we know
3126 // that 'referent' is alphabetically last, so this is easy...
3127 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003128 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003129 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003130 --num_reference_fields;
3131 }
3132
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003133#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003134 // Make sure that all reference fields appear before
3135 // non-reference fields, and all double-wide fields are aligned.
3136 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003137 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003138 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003139 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003140 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003141 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003142 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003143 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3144 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003145 fh.ChangeField(field);
3146 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003147 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003148 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003149 is_primitive = true; // We lied above, so we have to expect a lie here.
3150 }
3151 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003152 if (!seen_non_ref) {
3153 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003154 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003155 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003156 } else {
3157 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003158 }
3159 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003160 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003161 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003162 }
3163#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003164 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003165 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003166 if (is_static) {
3167 klass->SetNumReferenceStaticFields(num_reference_fields);
3168 klass->SetClassSize(size);
3169 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003170 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003171 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003172 klass->SetObjectSize(size);
3173 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003174 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003175 return true;
3176}
3177
3178// Set the bitmap of reference offsets, refOffsets, from the ifields
3179// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003180void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003181 uint32_t reference_offsets = 0;
3182 Class* super_class = klass->GetSuperClass();
3183 if (super_class != NULL) {
3184 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003185 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003186 if (reference_offsets == CLASS_WALK_SUPER) {
3187 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003188 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003189 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003190 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003191 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003192}
3193
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003194void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003195 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003196}
3197
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003198void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003199 uint32_t reference_offsets) {
3200 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003201 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3202 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003203 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003204 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003205 // All of the fields that contain object references are guaranteed
3206 // to be at the beginning of the fields list.
3207 for (size_t i = 0; i < num_reference_fields; ++i) {
3208 // Note that byte_offset is the offset from the beginning of
3209 // object, not the offset into instance data
3210 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003211 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003212 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3213 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3214 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003215 CHECK_NE(new_bit, 0U);
3216 reference_offsets |= new_bit;
3217 } else {
3218 reference_offsets = CLASS_WALK_SUPER;
3219 break;
3220 }
3221 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003222 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003223 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003224 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003225 } else {
3226 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003227 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003228}
3229
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003230String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003231 uint32_t string_idx, DexCache* dex_cache) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003232 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003233 if (resolved != NULL) {
3234 return resolved;
3235 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003236 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3237 int32_t utf16_length = dex_file.GetStringLength(string_id);
3238 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003239 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003240 dex_cache->SetResolvedString(string_idx, string);
3241 return string;
3242}
3243
3244Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003245 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003246 DexCache* dex_cache,
3247 const ClassLoader* class_loader) {
3248 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003249 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003250 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003251 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003252 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003253 // TODO: we used to throw here if resolved's class loader was not the
3254 // boot class loader. This was to permit different classes with the
3255 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003256 dex_cache->SetResolvedType(type_idx, resolved);
3257 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003258 CHECK(Thread::Current()->IsExceptionPending())
3259 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003260 // Convert a ClassNotFoundException to a NoClassDefFoundError
3261 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3262 Thread::Current()->ClearException();
3263 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3264 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003265 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003266 }
3267 return resolved;
3268}
3269
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003270Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3271 uint32_t method_idx,
3272 DexCache* dex_cache,
3273 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003274 bool is_direct) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003275 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3276 if (resolved != NULL) {
3277 return resolved;
3278 }
3279 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3280 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3281 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003282 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003283 return NULL;
3284 }
3285
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003286 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003287 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003288 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003289 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003290 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003291 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003292 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003293
3294 if (resolved == NULL) {
3295 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3296 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3297 if (is_direct) {
3298 resolved = klass->FindDirectMethod(name, signature);
3299 } else if (klass->IsInterface()) {
3300 resolved = klass->FindInterfaceMethod(name, signature);
3301 } else {
3302 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003303 // If a virtual method isn't found, search the direct methods. This can
3304 // happen when trying to access private methods directly, and allows the
3305 // proper exception to be thrown in the caller.
3306 if (resolved == NULL) {
3307 resolved = klass->FindDirectMethod(name, signature);
3308 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003309 }
3310 if (resolved == NULL) {
3311 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3312 return NULL;
3313 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003314 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003315 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003316 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003317}
3318
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003319Field* ClassLinker::ResolveField(const DexFile& dex_file,
3320 uint32_t field_idx,
3321 DexCache* dex_cache,
3322 const ClassLoader* class_loader,
3323 bool is_static) {
3324 Field* resolved = dex_cache->GetResolvedField(field_idx);
3325 if (resolved != NULL) {
3326 return resolved;
3327 }
3328 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3329 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3330 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003331 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003332 return NULL;
3333 }
3334
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003335 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003336 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003337 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003338 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003339 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003340
3341 if (resolved == NULL) {
3342 const char* name = dex_file.GetFieldName(field_id);
3343 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3344 if (is_static) {
3345 resolved = klass->FindStaticField(name, type);
3346 } else {
3347 resolved = klass->FindInstanceField(name, type);
3348 }
3349 if (resolved == NULL) {
3350 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3351 return NULL;
3352 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003353 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003354 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003355 return resolved;
3356}
3357
3358Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3359 uint32_t field_idx,
3360 DexCache* dex_cache,
3361 const ClassLoader* class_loader) {
3362 Field* resolved = dex_cache->GetResolvedField(field_idx);
3363 if (resolved != NULL) {
3364 return resolved;
3365 }
3366 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3367 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3368 if (klass == NULL) {
3369 DCHECK(Thread::Current()->IsExceptionPending());
3370 return NULL;
3371 }
3372
3373 const char* name = dex_file.GetFieldName(field_id);
3374 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3375 resolved = klass->FindField(name, type);
3376 if (resolved != NULL) {
3377 dex_cache->SetResolvedField(field_idx, resolved);
3378 } else {
3379 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003380 }
3381 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003382}
3383
Ian Rogers19846512012-02-24 11:42:47 -08003384const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003385 Class* declaring_class = referrer->GetDeclaringClass();
3386 DexCache* dex_cache = declaring_class->GetDexCache();
3387 const DexFile& dex_file = FindDexFile(dex_cache);
3388 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003389 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003390}
3391
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003392void ClassLinker::DumpAllClasses(int flags) const {
3393 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3394 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3395 std::vector<Class*> all_classes;
3396 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003397 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003398 typedef Table::const_iterator It; // TODO: C++0x auto
3399 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3400 all_classes.push_back(it->second);
3401 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003402 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3403 all_classes.push_back(it->second);
3404 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003405 }
3406
3407 for (size_t i = 0; i < all_classes.size(); ++i) {
3408 all_classes[i]->DumpClass(std::cerr, flags);
3409 }
3410}
3411
Elliott Hughescac6cc72011-11-03 20:31:21 -07003412void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3413 MutexLock mu(classes_lock_);
3414 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3415 << classes_.size() << " allocated classes\n";
3416}
3417
Elliott Hughese27955c2011-08-26 15:21:24 -07003418size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003419 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003420 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003421}
3422
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003423pid_t ClassLinker::GetClassesLockOwner() {
3424 return classes_lock_.GetOwner();
3425}
3426
3427pid_t ClassLinker::GetDexLockOwner() {
3428 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003429}
3430
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003431void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3432 DCHECK(!init_done_);
3433
3434 DCHECK(klass != NULL);
3435 DCHECK(klass->GetClassLoader() == NULL);
3436
3437 DCHECK(class_roots_ != NULL);
3438 DCHECK(class_roots_->Get(class_root) == NULL);
3439 class_roots_->Set(class_root, klass);
3440}
3441
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003442} // namespace art