blob: 80dd7eb8148674c9228e1d83c262dab061847534 [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 Hughes0512f022012-03-15 22:10:52 -070056static void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
57static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070058 va_list args;
59 va_start(args, fmt);
60 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
61 va_end(args);
62}
63
Elliott Hughes0512f022012-03-15 22:10:52 -070064static void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
65static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070066 va_list args;
67 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070068 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070069 va_end(args);
70}
71
Elliott Hughes0512f022012-03-15 22:10:52 -070072static void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
73static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070074 va_list args;
75 va_start(args, fmt);
76 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
77 va_end(args);
78}
79
Elliott Hughes0512f022012-03-15 22:10:52 -070080static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
81 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080082 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070083 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080084 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080085 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080086 std::string location(kh.GetLocation());
87 if (!location.empty()) {
88 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070089 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070090 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070091}
92
Elliott Hughes0512f022012-03-15 22:10:52 -070093static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
94 const StringPiece& name) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080095 ClassHelper kh(c);
96 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -080097 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080098 << " in class " << kh.GetDescriptor() << " or its superclasses";
99 std::string location(kh.GetLocation());
100 if (!location.empty()) {
101 msg << " (defined in " << location << ")";
102 }
103 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
104}
105
Elliott Hughes0512f022012-03-15 22:10:52 -0700106static void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
107static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800108 va_list args;
109 va_start(args, fmt);
110 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
111 va_end(args);
112}
113
Elliott Hughes0512f022012-03-15 22:10:52 -0700114static void ThrowEarlierClassFailure(Class* c) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700115 /*
116 * The class failed to initialize on a previous attempt, so we want to throw
117 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
118 * failed in verification, in which case v2 5.4.1 says we need to re-throw
119 * the previous error.
120 */
121 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
122
Brian Carlstrom4d9716c2012-01-30 01:49:33 -0800123 CHECK(c->IsErroneous()) << PrettyClass(c);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700124 if (c->GetVerifyErrorClass() != NULL) {
125 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800126 ClassHelper ve_ch(c->GetVerifyErrorClass());
127 std::string error_descriptor(ve_ch.GetDescriptor());
128 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700129 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800130 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700131 }
132}
133
Elliott Hughes0512f022012-03-15 22:10:52 -0700134static void WrapExceptionInInitializer() {
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700135 JNIEnv* env = Thread::Current()->GetJniEnv();
136
137 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
138 CHECK(cause.get() != NULL);
139
140 env->ExceptionClear();
141
142 // TODO: add java.lang.Error to JniConstants?
143 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
144 CHECK(error_class.get() != NULL);
145 if (env->IsInstanceOf(cause.get(), error_class.get())) {
146 // We only wrap non-Error exceptions; an Error can just be used as-is.
147 env->Throw(cause.get());
148 return;
149 }
150
151 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
152 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
153 CHECK(eiie_class.get() != NULL);
154
155 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
156 CHECK(mid != NULL);
157
158 ScopedLocalRef<jthrowable> eiie(env,
159 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
160 env->Throw(eiie.get());
161}
162
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800163static size_t Hash(const char* s) {
164 // This is the java.lang.String hashcode for convenience, not interoperability.
165 size_t hash = 0;
166 for (; *s != '\0'; ++s) {
167 hash = hash * 31 + *s;
168 }
169 return hash;
170}
171
Elliott Hughes418d20f2011-09-22 14:00:39 -0700172const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700173 "Ljava/lang/Class;",
174 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700175 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700176 "[Ljava/lang/Object;",
177 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700178 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700179 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700180 "Ljava/lang/reflect/Field;",
181 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700182 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700183 "Ljava/lang/ClassLoader;",
184 "Ldalvik/system/BaseDexClassLoader;",
185 "Ldalvik/system/PathClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800186 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800187 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700188 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700189 "Z",
190 "B",
191 "C",
192 "D",
193 "F",
194 "I",
195 "J",
196 "S",
197 "V",
198 "[Z",
199 "[B",
200 "[C",
201 "[D",
202 "[F",
203 "[I",
204 "[J",
205 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700206 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700207};
208
Brian Carlstroma004aa92012-02-08 18:05:09 -0800209ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
210 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700211 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800212 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800213 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700214 return class_linker.release();
215}
216
Brian Carlstroma004aa92012-02-08 18:05:09 -0800217ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800218 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700219 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700220 return class_linker.release();
221}
222
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800223ClassLinker::ClassLinker(InternTable* intern_table)
224 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700225 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700226 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700227 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700228 init_done_(false),
229 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700230 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700231}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700232
Brian Carlstroma004aa92012-02-08 18:05:09 -0800233void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
234 VLOG(startup) << "ClassLinker::Init";
235 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700236
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700237 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700238
Elliott Hughes30646832011-10-13 16:59:46 -0700239 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800240 Heap* heap = Runtime::Current()->GetHeap();
241 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700242 CHECK(java_lang_Class.get() != NULL);
243 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700244 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700245 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700246
Elliott Hughes418d20f2011-09-22 14:00:39 -0700247 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700248 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
249 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700250
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700251 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
253 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700254 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700255 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700256 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700257
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700258 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700259 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
260 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700261
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700262 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700263 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700264
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700265 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700266 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
267 char_array_class->SetComponentType(char_class.get());
268 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700269
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700270 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700271 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
272 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 java_lang_String->SetObjectSize(sizeof(String));
274 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400275
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700276 // Create storage for root classes, save away our work so far (requires
277 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700278 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700279 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700280 SetClassRoot(kJavaLangClass, java_lang_Class.get());
281 SetClassRoot(kJavaLangObject, java_lang_Object.get());
282 SetClassRoot(kClassArrayClass, class_array_class.get());
283 SetClassRoot(kObjectArrayClass, object_array_class.get());
284 SetClassRoot(kCharArrayClass, char_array_class.get());
285 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700286
287 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700288 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
289 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
290 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
291 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
292 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
293 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
294 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
295 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700297 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700298 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299
300 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700301 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700303 IntArray::SetArrayClass(int_array_class.get());
304 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700306 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700307
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700308 // setup boot_class_path_ and register class_path now that we can
309 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800310 CHECK_NE(0U, boot_class_path.size());
311 for (size_t i = 0; i != boot_class_path.size(); ++i) {
312 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700313 CHECK(dex_file != NULL);
314 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700315 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700316
Elliott Hughes80609252011-09-23 17:24:51 -0700317 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700319 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700320 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700322 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
323
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
325 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700326 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700327 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700328 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700329 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700330
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700333 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700334 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700335 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700336 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700337
338 // now we can use FindSystemClass
339
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700340 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700341 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700342 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700343
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700344 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700345 java_lang_Object->SetStatus(Class::kStatusNotReady);
346 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700347 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
349 java_lang_String->SetStatus(Class::kStatusNotReady);
350 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700351 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700352 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
353
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700354 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700355 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
356 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
357
358 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
359 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
360
361 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700362 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700363
364 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
365 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
366
367 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700368 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700369
370 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
371 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
372
373 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
374 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
375
376 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
377 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
378
Elliott Hughes418d20f2011-09-22 14:00:39 -0700379 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700380 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700381
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700382 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700383 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700384
385 // Setup the single, global copies of "interfaces" and "iftable"
386 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
387 CHECK(java_lang_Cloneable != NULL);
388 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
389 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700390 // We assume that Cloneable/Serializable don't have superinterfaces --
391 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700392 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800393 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
394 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700395
Elliott Hughes418d20f2011-09-22 14:00:39 -0700396 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800397 ClassHelper kh(class_array_class.get(), this);
398 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
399 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
400 kh.ChangeClass(object_array_class.get());
401 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
402 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700403 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700404 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700405 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700406 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700407
Elliott Hughes80609252011-09-23 17:24:51 -0700408 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
409 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700410 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700411
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700412 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700413 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700414 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700415
416 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700417 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700418 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700419
Ian Rogers466bb252011-10-14 03:29:56 -0700420 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
421
422 // Create java.lang.reflect.Proxy root
423 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
424 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
425
Brian Carlstrom1f870082011-08-23 16:02:11 -0700426 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700427 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
428 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700429 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700430 java_lang_ref_FinalizerReference->SetAccessFlags(
431 java_lang_ref_FinalizerReference->GetAccessFlags() |
432 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700433 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700434 java_lang_ref_PhantomReference->SetAccessFlags(
435 java_lang_ref_PhantomReference->GetAccessFlags() |
436 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700437 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700438 java_lang_ref_SoftReference->SetAccessFlags(
439 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700440 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700441 java_lang_ref_WeakReference->SetAccessFlags(
442 java_lang_ref_WeakReference->GetAccessFlags() |
443 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700444
Brian Carlstromaded5f72011-10-07 17:15:04 -0700445 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700446 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700447 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700448 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
449
450 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
451 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
452 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
453
454 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
455 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
456 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
457 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
458
jeffhao8cd6dda2012-02-22 10:15:34 -0800459 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
460 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800461 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
462 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800463 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700464 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
465 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700466 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700467
Brian Carlstroma663ea52011-08-19 23:33:41 -0700468 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700469
Brian Carlstroma004aa92012-02-08 18:05:09 -0800470 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700471}
472
473void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800474 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700475
476 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700477 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700478 // as the types of the field can't be resolved prior to the runtime being
479 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700480 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700481 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700482 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
483
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800484 Heap* heap = Runtime::Current()->GetHeap();
485 heap->SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700486
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800487 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
488
Brian Carlstrom16192862011-09-12 17:50:06 -0700489 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800490 FieldHelper fh(pendingNext, this);
491 CHECK_STREQ(fh.GetName(), "pendingNext");
492 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
493 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700494
495 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 fh.ChangeField(queue);
497 CHECK_STREQ(fh.GetName(), "queue");
498 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
499 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700500
501 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800502 fh.ChangeField(queueNext);
503 CHECK_STREQ(fh.GetName(), "queueNext");
504 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
505 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700506
507 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800508 fh.ChangeField(referent);
509 CHECK_STREQ(fh.GetName(), "referent");
510 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
511 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700512
513 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800514 fh.ChangeField(zombie);
515 CHECK_STREQ(fh.GetName(), "zombie");
516 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
517 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700518
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800519 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700520 queue->GetOffset(),
521 queueNext->GetOffset(),
522 pendingNext->GetOffset(),
523 zombie->GetOffset());
524
Brian Carlstroma663ea52011-08-19 23:33:41 -0700525 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700526 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700527 ClassRoot class_root = static_cast<ClassRoot>(i);
528 Class* klass = GetClassRoot(class_root);
529 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700530 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700531 // note SetClassRoot does additional validation.
532 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700533 }
534
Elliott Hughes92f14b22011-10-06 12:29:54 -0700535 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700536
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700537 // disable the slow paths in FindClass and CreatePrimitiveClass now
538 // that Object, Class, and Object[] are setup
539 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700540
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800541 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700542}
543
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700544void ClassLinker::RunRootClinits() {
545 Thread* self = Thread::Current();
546 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
547 Class* c = GetClassRoot(ClassRoot(i));
548 if (!c->IsArrayClass() && !c->IsPrimitive()) {
549 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700550 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700551 }
552 }
553}
554
Brian Carlstromd601af82012-01-06 10:15:19 -0800555bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
556 int oat_fd,
557 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800558 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700559 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800560 const char* dex2oat = dex2oat_string.c_str();
561
Brian Carlstroma004aa92012-02-08 18:05:09 -0800562 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800563
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800564 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800565 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700566 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800567 const char* boot_image_option = boot_image_option_string.c_str();
568
569 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800570 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800571 const char* dex_file_option = dex_file_option_string.c_str();
572
Brian Carlstromd601af82012-01-06 10:15:19 -0800573 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800574 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800575 const char* oat_fd_option = oat_fd_option_string.c_str();
576
Brian Carlstroma004aa92012-02-08 18:05:09 -0800577 std::string oat_location_option_string("--oat-location=");
578 oat_location_option_string += oat_cache_filename;
579 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800580
jeffhao262bf462011-10-20 18:36:32 -0700581 // fork and exec dex2oat
582 pid_t pid = fork();
583 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800584 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800585
586 // change process groups, so we don't get reaped by ProcessManager
587 setpgid(0, 0);
588
jeffhao10037c82012-01-23 15:06:23 -0800589 VLOG(class_linker) << dex2oat
590 << " --runtime-arg -Xms64m"
591 << " --runtime-arg -Xmx64m"
592 << " --runtime-arg -classpath"
593 << " --runtime-arg " << class_path
594 << " " << boot_image_option
595 << " " << dex_file_option
596 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800597 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800598
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800599 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700600 "--runtime-arg", "-Xms64m",
601 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500602 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800603 "--runtime-arg", class_path,
604 boot_image_option,
605 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800606 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800607 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700608 NULL);
609
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800610 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800611 return false;
jeffhao262bf462011-10-20 18:36:32 -0700612 } else {
613 // wait for dex2oat to finish
614 int status;
615 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
616 if (got_pid != pid) {
617 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800618 return false;
jeffhao262bf462011-10-20 18:36:32 -0700619 }
620 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800621 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
622 return false;
jeffhao262bf462011-10-20 18:36:32 -0700623 }
624 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800625 return true;
jeffhao262bf462011-10-20 18:36:32 -0700626}
627
Brian Carlstrom866c8622012-01-06 16:35:13 -0800628void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
629 MutexLock mu(dex_lock_);
630 RegisterOatFileLocked(oat_file);
631}
632
633void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
634 dex_lock_.AssertHeld();
635 oat_files_.push_back(&oat_file);
636}
637
Ian Rogers30fab402012-01-23 15:43:46 -0800638OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700639 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700640 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700641 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800642 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
643 // check the down cast
644 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700645 std::string oat_filename;
646 oat_filename += runtime->GetHostPrefix();
647 oat_filename += oat_location->ToModifiedUtf8();
Brian Carlstroma004aa92012-02-08 18:05:09 -0800648 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatBegin());
Ian Rogers30fab402012-01-23 15:43:46 -0800649 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700650 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700651 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700652 return NULL;
653 }
654 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
655 uint32_t image_oat_checksum = image_header.GetOatChecksum();
656 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800657 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700658 << " to expected oat checksum " << std::hex << oat_checksum
659 << " in image";
660 return NULL;
661 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800662 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800663 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700664 return oat_file;
665}
666
Brian Carlstromae826982011-11-09 01:33:42 -0800667const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800668 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800669}
670
Brian Carlstroma004aa92012-02-08 18:05:09 -0800671const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800672 for (size_t i = 0; i < oat_files_.size(); i++) {
673 const OatFile* oat_file = oat_files_[i];
674 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800675 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800676 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800677 return oat_file;
678 }
679 }
680 return NULL;
681}
682
Brian Carlstromd601af82012-01-06 10:15:19 -0800683class LockedFd {
684 public:
685 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
686 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
687 if (fd == -1) {
688 PLOG(ERROR) << "Failed to open file '" << name << "'";
689 return NULL;
690 }
691 fchmod(fd, mode);
692
693 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
694 // try to lock non-blocking so we can log if we need may need to block
695 int result = flock(fd, LOCK_EX | LOCK_NB);
696 if (result == -1) {
697 LOG(WARNING) << "sleeping while locking file " << name;
698 // retry blocking
699 result = flock(fd, LOCK_EX);
700 }
701 if (result == -1) {
702 PLOG(ERROR) << "Failed to lock file '" << name << "'";
703 close(fd);
704 return NULL;
705 }
706 return new LockedFd(fd);
707 }
708
709 int GetFd() const {
710 return fd_;
711 }
712
713 ~LockedFd() {
714 if (fd_ != -1) {
715 int result = flock(fd_, LOCK_UN);
716 if (result == -1) {
717 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
718 }
719 close(fd_);
720 }
721 }
722
723 private:
724 explicit LockedFd(int fd) : fd_(fd) {}
725
726 int fd_;
727};
728
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800729static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
730 uint32_t dex_location_checksum,
731 const std::string& oat_location) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800732 UniquePtr<OatFile> oat_file(OatFile::Open(oat_location, oat_location, NULL));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800733 if (oat_file.get() == NULL) {
734 return NULL;
735 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700736 Runtime* runtime = Runtime::Current();
737 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
738 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
739 return NULL;
740 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800741 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
742 if (oat_dex_file == NULL) {
743 return NULL;
744 }
745 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
746 return NULL;
747 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700748 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800749 return oat_dex_file->OpenDexFile();
750}
751
752const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
753 const std::string& oat_location) {
754 uint32_t dex_location_checksum;
755 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
756 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
757 return NULL;
758 }
759
760 // Check if we already have an up-to-date output file
761 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
762 dex_location_checksum,
763 oat_location);
764 if (dex_file != NULL) {
765 return dex_file;
766 }
767
768 // Generate the output oat file for the dex file
769 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
770 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
771 if (file.get() == NULL) {
772 LOG(ERROR) << "Failed to create oat file: " << oat_location;
773 return NULL;
774 }
775 if (!class_linker->GenerateOatFile(dex_location, file->Fd(), oat_location)) {
776 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
777 return NULL;
778 }
779 // Open the oat from file descriptor we passed to GenerateOatFile
780 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
781 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
782 return NULL;
783 }
784 const OatFile* oat_file = OatFile::Open(*file.get(), oat_location, NULL);
785 if (oat_file == NULL) {
786 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
787 return NULL;
788 }
789 class_linker->RegisterOatFile(*oat_file);
790 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
791 if (oat_dex_file == NULL) {
792 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
793 return NULL;
794 }
795 return oat_dex_file->OpenDexFile();
796}
797
798const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700799 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800800
Brian Carlstroma004aa92012-02-08 18:05:09 -0800801 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800802 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800803 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800804 }
805
Brian Carlstroma004aa92012-02-08 18:05:09 -0800806 // Look for an existing file next to dex, assuming its up-to-date if found
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800807 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800808 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800809 if (oat_file != NULL) {
810 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800811 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
812 return oat_dex_file->OpenDexFile();
813 }
814 // Look for an existing file in the art-cache, validating the result if found
815 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
816 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
817 oat_file = FindOatFileFromOatLocation(cache_location);
818 if (oat_file != NULL) {
819 uint32_t dex_location_checksum;
820 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
821 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
822 return NULL;
823 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700824
825 Runtime* runtime = Runtime::Current();
826 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
827 uint32_t image_checksum = image_header.GetOatChecksum();
828 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
829
Brian Carlstroma004aa92012-02-08 18:05:09 -0800830 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
831 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700832 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
833
834 if (image_check && dex_check) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800835 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700836 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700837 if (!image_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700838 std::string image_file(image_header.GetImageRoot(
839 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
840 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
841 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
842 << ") mismatch with " << image_file
843 << " (" << std::hex << image_checksum << ")--- regenerating";
844 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700845 if (!dex_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700846 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
847 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
848 << ") mismatch with " << dex_location
849 << " (" << std::hex << dex_location_checksum << ")--- regenerating";
850 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800851 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700852 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800853 }
jeffhao262bf462011-10-20 18:36:32 -0700854 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800855 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
856
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800857 // Try to generate oat file if it wasn't found or was obsolete.
858 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
859 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700860}
861
Brian Carlstromae826982011-11-09 01:33:42 -0800862const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700863 for (size_t i = 0; i < oat_files_.size(); i++) {
864 const OatFile* oat_file = oat_files_[i];
865 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800866 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700867 return oat_file;
868 }
869 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700870 return NULL;
871}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700872
Brian Carlstromae826982011-11-09 01:33:42 -0800873const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800874 MutexLock mu(dex_lock_);
875 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
876 if (oat_file != NULL) {
877 return oat_file;
878 }
879
Brian Carlstroma004aa92012-02-08 18:05:09 -0800880 oat_file = OatFile::Open(oat_location, oat_location, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700881 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800882 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700883 }
Brian Carlstromae826982011-11-09 01:33:42 -0800884 CHECK(oat_file != NULL) << oat_location;
jeffhaof6174e82012-01-31 16:14:17 -0800885 RegisterOatFileLocked(*oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700886 return oat_file;
887}
888
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700889void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800890 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700891 CHECK(!init_done_);
892
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800893 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700894 ImageSpace* space = heap->GetImageSpace();
895 OatFile* oat_file = OpenOat(space);
896 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700897 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
898 CHECK(oat_file->GetOatHeader().GetImageFileLocation() == "");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700899 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
900 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700901
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700902 // Special case of setting up the String class early so that we can test arbitrary objects
903 // as being Strings or not
904 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
905 ->AsObjectArray<Class>()->Get(kJavaLangString);
906 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800907
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700908 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
909 static_cast<uint32_t>(dex_caches->GetLength()));
910 for (int i = 0; i < dex_caches->GetLength(); i++) {
911 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
912 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
913 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
914 const DexFile* dex_file = oat_dex_file->OpenDexFile();
915 if (dex_file == NULL) {
916 LOG(FATAL) << "Failed to open dex file " << dex_file_location
917 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700918 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700919
920 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
921
922 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700923 }
924
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800925 HeapBitmap* heap_bitmap = heap->GetLiveBits();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700926 DCHECK(heap_bitmap != NULL);
927
Brian Carlstroma663ea52011-08-19 23:33:41 -0700928 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700929 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700930
931 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800932 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700933 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700934 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700935
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800936 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700937 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
938 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800939 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700940 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700941 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700942 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
943 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
944 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
945 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
946 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
947 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
948 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
949 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700950 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Ian Rogers5167c972012-02-03 10:41:20 -0800951 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700952 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700953
954 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700955
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800956 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700957}
958
Brian Carlstrom78128a62011-09-15 17:21:19 -0700959void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700960 DCHECK(obj != NULL);
961 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700962 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700963
Elliott Hughesdbb40792011-11-18 17:05:22 -0800964 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700965 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700966 return;
967 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700968 if (obj->IsClass()) {
969 // restore class to ClassLinker::classes_ table
970 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800971 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800972 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
973 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700974 return;
975 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700976}
977
978// Keep in sync with InitCallback. Anything we visit, we need to
979// reinit references to when reinitializing a ClassLinker from a
980// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700981void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
982 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700983
984 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700985 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700986 }
987
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700988 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700989 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700990 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700991 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700992 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700993 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700994 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700995 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700996
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700997 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700998}
999
Elliott Hughesa2155262011-11-16 16:26:58 -08001000void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
1001 MutexLock mu(classes_lock_);
1002 typedef Table::const_iterator It; // TODO: C++0x auto
1003 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
1004 if (!visitor(it->second, arg)) {
1005 return;
1006 }
1007 }
1008 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
1009 if (!visitor(it->second, arg)) {
1010 return;
1011 }
1012 }
1013}
1014
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001015ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001016 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001017 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001018 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001019 BooleanArray::ResetArrayClass();
1020 ByteArray::ResetArrayClass();
1021 CharArray::ResetArrayClass();
1022 DoubleArray::ResetArrayClass();
1023 FloatArray::ResetArrayClass();
1024 IntArray::ResetArrayClass();
1025 LongArray::ResetArrayClass();
1026 ShortArray::ResetArrayClass();
1027 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001028 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001029 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001030 STLDeleteElements(&boot_class_path_);
1031 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001032}
1033
1034DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001035 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1036 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001037 return NULL;
1038 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001039 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1040 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001041 return NULL;
1042 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001043 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1044 if (strings.get() == NULL) {
1045 return NULL;
1046 }
1047 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1048 if (types.get() == NULL) {
1049 return NULL;
1050 }
1051 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1052 if (methods.get() == NULL) {
1053 return NULL;
1054 }
1055 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1056 if (fields.get() == NULL) {
1057 return NULL;
1058 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001059 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1060 if (initialized_static_storage.get() == NULL) {
1061 return NULL;
1062 }
1063
1064 dex_cache->Init(location.get(),
1065 strings.get(),
1066 types.get(),
1067 methods.get(),
1068 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001069 initialized_static_storage.get());
1070 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001071}
1072
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001073InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1074 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001075 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1076 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001077 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001078 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001079}
1080
Brian Carlstrom4873d462011-08-21 15:23:39 -07001081Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1082 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001083 Heap* heap = Runtime::Current()->GetHeap();
1084 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001085 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001086 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001087 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001088}
1089
Brian Carlstrom4873d462011-08-21 15:23:39 -07001090Class* ClassLinker::AllocClass(size_t class_size) {
1091 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001092}
1093
Jesse Wilson35baaab2011-08-10 16:18:03 -04001094Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001095 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001096}
1097
1098Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001099 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001100}
1101
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001102ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1103 return ObjectArray<StackTraceElement>::Alloc(
1104 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1105 length);
1106}
1107
Brian Carlstromaded5f72011-10-07 17:15:04 -07001108Class* EnsureResolved(Class* klass) {
1109 DCHECK(klass != NULL);
1110 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001111 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001112 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001113 ObjectLock lock(klass);
1114 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001115 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001116 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001117 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001118 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001119 return NULL;
1120 }
1121 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001122 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001123 lock.Wait();
1124 }
1125 }
1126 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001127 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001128 return NULL;
1129 }
1130 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001131 CHECK(klass->IsResolved()) << PrettyClass(klass);
1132 CHECK(!self->IsExceptionPending())
1133 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1134 return klass;
1135}
1136
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001137Class* ClassLinker::FindSystemClass(const char* descriptor) {
1138 return FindClass(descriptor, NULL);
1139}
1140
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001141Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001142 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001143 Thread* self = Thread::Current();
1144 DCHECK(self != NULL);
1145 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001146 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001147 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1148 // for primitive classes that aren't backed by dex files.
1149 return FindPrimitiveClass(descriptor[0]);
1150 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001151 // Find the class in the loaded classes table.
1152 Class* klass = LookupClass(descriptor, class_loader);
1153 if (klass != NULL) {
1154 return EnsureResolved(klass);
1155 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001156 // Class is not yet loaded.
1157 if (descriptor[0] == '[') {
1158 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001159
Jesse Wilson47daf872011-11-23 11:42:45 -05001160 } else if (class_loader == NULL) {
1161 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1162 if (pair.second != NULL) {
1163 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1164 }
1165
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001166 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001167 // first try the boot class path
1168 Class* system_class = FindSystemClass(descriptor);
1169 if (system_class != NULL) {
1170 return system_class;
1171 }
1172 CHECK(self->IsExceptionPending());
1173 self->ClearException();
1174
1175 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001176 const std::vector<const DexFile*>& class_path
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001177 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001178 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001179 if (pair.second != NULL) {
1180 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001181 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001182
1183 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001184 std::string class_name_string(DescriptorToDot(descriptor));
Elliott Hughes09d4d012012-02-03 17:44:20 -08001185 ScopedThreadStateChange tsc(self, Thread::kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001186 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001187 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1188 CHECK(c.get() != NULL);
1189 // TODO: cache method?
1190 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1191 CHECK(mid != NULL);
1192 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1193 if (class_name_object.get() == NULL) {
1194 return NULL;
1195 }
1196 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001197 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1198 class_name_object.get()));
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001199 if (env->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001200 // If the ClassLoader threw, pass that exception up.
1201 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001202 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001203 // broken loader - throw NPE to be compatible with Dalvik
1204 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1205 class_name_string.c_str());
1206 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001207 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001208 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001209 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001210 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001211 }
1212
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001213 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001214 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001215}
1216
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001217Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001218 const ClassLoader* class_loader,
1219 const DexFile& dex_file,
1220 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001221 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001222 // Load the class from the dex file.
1223 if (!init_done_) {
1224 // finish up init of hand crafted class_roots_
1225 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001226 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001227 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001228 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001229 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001230 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001231 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001232 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001233 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001234 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001235 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001236 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001237 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001238 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001239 }
1240 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001241 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001242 }
1243 klass->SetDexCache(FindDexCache(dex_file));
1244 LoadClass(dex_file, dex_class_def, klass, class_loader);
1245 // Check for a pending exception during load
1246 Thread* self = Thread::Current();
1247 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001248 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001249 return NULL;
1250 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001251 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001252 klass->SetClinitThreadId(self->GetTid());
1253 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001254 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1255 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001256 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001257 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001258 }
1259 // Finish loading (if necessary) by finding parents
1260 CHECK(!klass->IsLoaded());
1261 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1262 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001263 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001264 lock.NotifyAll();
1265 return NULL;
1266 }
1267 CHECK(klass->IsLoaded());
1268 // Link the class (if necessary)
1269 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001270 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001271 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001272 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001273 lock.NotifyAll();
1274 return NULL;
1275 }
1276 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001277
1278 /*
1279 * We send CLASS_PREPARE events to the debugger from here. The
1280 * definition of "preparation" is creating the static fields for a
1281 * class and initializing them to the standard default values, but not
1282 * executing any code (that comes later, during "initialization").
1283 *
1284 * We did the static preparation in LinkClass.
1285 *
1286 * The class has been prepared and resolved but possibly not yet verified
1287 * at this point.
1288 */
1289 Dbg::PostClassPrepare(klass.get());
1290
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001291 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001292}
1293
Brian Carlstrom4873d462011-08-21 15:23:39 -07001294// Precomputes size that will be needed for Class, matching LinkStaticFields
1295size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1296 const DexFile::ClassDef& dex_class_def) {
1297 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001298 size_t num_ref = 0;
1299 size_t num_32 = 0;
1300 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001301 if (class_data != NULL) {
1302 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1303 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001304 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001305 char c = descriptor[0];
1306 if (c == 'L' || c == '[') {
1307 num_ref++;
1308 } else if (c == 'J' || c == 'D') {
1309 num_64++;
1310 } else {
1311 num_32++;
1312 }
1313 }
1314 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001315 // start with generic class data
1316 size_t size = sizeof(Class);
1317 // follow with reference fields which must be contiguous at start
1318 size += (num_ref * sizeof(uint32_t));
1319 // if there are 64-bit fields to add, make sure they are aligned
1320 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1321 if (num_32 != 0) {
1322 // use an available 32-bit field for padding
1323 num_32--;
1324 }
1325 size += sizeof(uint32_t); // either way, we are adding a word
1326 DCHECK_EQ(size, RoundUp(size, 8));
1327 }
1328 // tack on any 64-bit fields now that alignment is assured
1329 size += (num_64 * sizeof(uint64_t));
1330 // tack on any remaining 32-bit fields
1331 size += (num_32 * sizeof(uint32_t));
1332 return size;
1333}
1334
Ian Rogers19846512012-02-24 11:42:47 -08001335const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1336 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001337 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1338 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1339 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1340 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1341 uint32_t class_def_index;
1342 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1343 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1344 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1345 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1346 return oat_class;
1347}
1348
Brian Carlstromf5822582012-03-19 22:34:31 -07001349// Special case to get oat code without overwriting a trampoline.
Ian Rogers19846512012-02-24 11:42:47 -08001350const void* ClassLinker::GetOatCodeFor(const Method* method) {
Brian Carlstromf5822582012-03-19 22:34:31 -07001351 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
Ian Rogers19846512012-02-24 11:42:47 -08001352 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001353 // method for direct methods (or virtual methods made direct).
1354 Class* declaring_class = method->GetDeclaringClass();
1355 size_t oat_method_index;
1356 if (method->IsStatic() || method->IsDirect()) {
1357 // Simple case where the oat method index was stashed at load time.
1358 oat_method_index = method->GetMethodIndex();
1359 } else {
1360 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1361 // by search for its position in the declared virtual methods.
1362 oat_method_index = declaring_class->NumDirectMethods();
1363 size_t end = declaring_class->NumVirtualMethods();
1364 bool found = false;
1365 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001366 if (declaring_class->GetVirtualMethod(i) == method) {
1367 found = true;
1368 break;
1369 }
Ian Rogersf320b632012-03-13 18:47:47 -07001370 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001371 }
1372 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1373 }
1374 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001375 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001376 CHECK(oat_class.get() != NULL);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001377 return oat_class->GetOatMethod(oat_method_index).GetCode();
Ian Rogers19846512012-02-24 11:42:47 -08001378}
1379
1380void ClassLinker::FixupStaticTrampolines(Class* klass) {
1381 ClassHelper kh(klass);
1382 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1383 CHECK(dex_class_def != NULL);
1384 const DexFile& dex_file = kh.GetDexFile();
1385 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1386 if (class_data == NULL) {
1387 return; // no fields or methods - for example a marker interface
1388 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001389 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001390 // OAT file unavailable
1391 return;
1392 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001393 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1394 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001395 ClassDataItemIterator it(dex_file, class_data);
1396 // Skip fields
1397 while (it.HasNextStaticField()) {
1398 it.Next();
1399 }
1400 while (it.HasNextInstanceField()) {
1401 it.Next();
1402 }
1403 size_t method_index = 0;
1404 // Link the code of methods skipped by LinkCode
1405 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1406 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1407 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001408 if (Runtime::Current()->IsMethodTracingActive()) {
1409 Trace* tracer = Runtime::Current()->GetTracer();
1410 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1411 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1412 tracer->ResetSavedCode(method);
1413 method->SetCode(code);
1414 tracer->SaveAndUpdateCode(method);
1415 }
1416 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001417 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1418 CHECK(code != NULL);
1419 method->SetCode(code);
1420 }
1421 method_index++;
1422 }
1423}
1424
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001425void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001426 // Every kind of method should at least get an invoke stub from the oat_method.
1427 // non-abstract methods also get their code pointers.
1428 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001429 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001430
Ian Rogers19846512012-02-24 11:42:47 -08001431 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001432 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001433 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001434 return;
1435 }
Ian Rogers19846512012-02-24 11:42:47 -08001436
1437 if (method->IsStatic() && !method->IsConstructor()) {
1438 // For static methods excluding the class initializer, install the trampoline
1439 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001440 }
1441 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001442 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001443 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001444 }
1445
1446 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001447 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001448 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001449 }
1450}
1451
Brian Carlstromf615a612011-07-23 12:50:34 -07001452void ClassLinker::LoadClass(const DexFile& dex_file,
1453 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001454 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001455 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001456 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001457 CHECK(klass->GetDexCache() != NULL);
1458 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001459 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001460 CHECK(descriptor != NULL);
1461
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001462 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001463 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001464 // Make sure that none of our runtime-only flags are set.
1465 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001466 klass->SetAccessFlags(access_flags);
1467 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001468 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001469 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001470
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001471 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001472
Ian Rogers0571d352011-11-03 19:51:38 -07001473 // Load fields fields.
1474 const byte* class_data = dex_file.GetClassData(dex_class_def);
1475 if (class_data == NULL) {
1476 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001477 }
Ian Rogers0571d352011-11-03 19:51:38 -07001478 ClassDataItemIterator it(dex_file, class_data);
1479 if (it.NumStaticFields() != 0) {
1480 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1481 }
1482 if (it.NumInstanceFields() != 0) {
1483 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1484 }
1485 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1486 SirtRef<Field> sfield(AllocField());
1487 klass->SetStaticField(i, sfield.get());
1488 LoadField(dex_file, it, klass, sfield);
1489 }
1490 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1491 SirtRef<Field> ifield(AllocField());
1492 klass->SetInstanceField(i, ifield.get());
1493 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001494 }
1495
Brian Carlstromf5822582012-03-19 22:34:31 -07001496 UniquePtr<const OatFile::OatClass> oat_class;
1497 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1498 oat_class.reset(GetOatClass(dex_file, descriptor));
1499 }
Ian Rogers19846512012-02-24 11:42:47 -08001500
Ian Rogers0571d352011-11-03 19:51:38 -07001501 // Load methods.
1502 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001503 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001504 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001505 }
Ian Rogers0571d352011-11-03 19:51:38 -07001506 if (it.NumVirtualMethods() != 0) {
1507 // TODO: append direct methods to class object
1508 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001509 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001510 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001511 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1512 SirtRef<Method> method(AllocMethod());
1513 klass->SetDirectMethod(i, method.get());
1514 LoadMethod(dex_file, it, klass, method);
1515 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001516 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001517 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001518 method->SetMethodIndex(class_def_method_index);
1519 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001520 }
1521 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1522 SirtRef<Method> method(AllocMethod());
1523 klass->SetVirtualMethod(i, method.get());
1524 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001525 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001526 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001527 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001528 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001529 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001530 }
1531 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001532}
1533
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001534void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001535 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001536 uint32_t field_idx = it.GetMemberIndex();
1537 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001538 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001539 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001540}
1541
Ian Rogers0571d352011-11-03 19:51:38 -07001542void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1543 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001544 uint32_t dex_method_idx = it.GetMemberIndex();
1545 dst->SetDexMethodIndex(dex_method_idx);
1546 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001547 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001548
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001549
1550 StringPiece method_name(dex_file.GetMethodName(method_id));
1551 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001552 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1553 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001554
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001555 if (method_name == "finalize") {
1556 // Create the prototype for a signature of "()V"
1557 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1558 if (void_string_id != NULL) {
1559 const DexFile::TypeId* void_type_id =
1560 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1561 if (void_type_id != NULL) {
1562 std::vector<uint16_t> no_args;
1563 const DexFile::ProtoId* finalizer_proto =
1564 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1565 if (finalizer_proto != NULL) {
1566 // We have the prototype in the dex file
1567 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1568 klass->SetFinalizable();
1569 } else {
1570 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1571 // The Enum class declares a "final" finalize() method to prevent subclasses from
1572 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1573 // subclasses, so we exclude it here.
1574 // We also want to avoid setting the flag on Object, where we know that finalize() is
1575 // empty.
1576 if (klass_descriptor != "Ljava/lang/Object;" &&
1577 klass_descriptor != "Ljava/lang/Enum;") {
1578 klass->SetFinalizable();
1579 }
1580 }
1581 }
1582 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001583 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001584 }
Ian Rogers0571d352011-11-03 19:51:38 -07001585 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001586 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001587
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001588 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001589 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001590 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001591 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001592}
1593
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001594void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001595 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1596 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001597}
1598
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001599void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1600 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001601 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001602 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001603}
1604
Brian Carlstromaded5f72011-10-07 17:15:04 -07001605bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001606 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001607 for (size_t i = 0; i != dex_files_.size(); ++i) {
1608 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001609 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001610 }
1611 }
1612 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001613}
1614
Brian Carlstromaded5f72011-10-07 17:15:04 -07001615bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001616 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001617 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001618}
1619
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001620void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001621 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001622 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001623 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001624 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001625 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001626}
1627
Brian Carlstromaded5f72011-10-07 17:15:04 -07001628void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001629 {
1630 MutexLock mu(dex_lock_);
1631 if (IsDexFileRegisteredLocked(dex_file)) {
1632 return;
1633 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001634 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001635 // Don't alloc while holding the lock, since allocation may need to
1636 // suspend all threads and another thread may need the dex_lock_ to
1637 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001638 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001639 {
1640 MutexLock mu(dex_lock_);
1641 if (IsDexFileRegisteredLocked(dex_file)) {
1642 return;
1643 }
1644 RegisterDexFileLocked(dex_file, dex_cache);
1645 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001646}
1647
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001648void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001649 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001650 RegisterDexFileLocked(dex_file, dex_cache);
1651}
1652
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001653const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001654 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001655 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001656 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1657 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001658 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001659 }
1660 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001661 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001662 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001663}
1664
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001665DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001666 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001667 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001668 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001669 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001670 }
1671 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001672 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001673 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001674}
1675
Ian Rogers19846512012-02-24 11:42:47 -08001676void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1677 MutexLock mu(dex_lock_);
1678 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1679 dex_caches_[i]->Fixup(resolution_method);
1680 }
1681}
1682
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001683Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1684 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001685 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001686 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001687 CHECK(primitive_class != NULL);
1688 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001689 primitive_class->SetPrimitiveType(type);
1690 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001691 Class* existing = InsertClass(descriptor, primitive_class, false);
1692 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001693 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001694}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001695
Brian Carlstrombe977852011-07-19 14:54:54 -07001696// Create an array class (i.e. the class object for the array, not the
1697// array itself). "descriptor" looks like "[C" or "[[[[B" or
1698// "[Ljava/lang/String;".
1699//
1700// If "descriptor" refers to an array of primitives, look up the
1701// primitive type's internally-generated class object.
1702//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001703// "class_loader" is the class loader of the class that's referring to
1704// us. It's used to ensure that we're looking for the element type in
1705// the right context. It does NOT become the class loader for the
1706// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001707//
1708// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001709Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001710 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001711
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001712 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001713 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001714 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001715 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001716 return NULL;
1717 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001718
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001719 // See if the component type is already loaded. Array classes are
1720 // always associated with the class loader of their underlying
1721 // element type -- an array of Strings goes with the loader for
1722 // java/lang/String -- so we need to look for it there. (The
1723 // caller should have checked for the existence of the class
1724 // before calling here, but they did so with *their* class loader,
1725 // not the component type's loader.)
1726 //
1727 // If we find it, the caller adds "loader" to the class' initiating
1728 // loader list, which should prevent us from going through this again.
1729 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001730 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001731 // are the same, because our caller (FindClass) just did the
1732 // lookup. (Even if we get this wrong we still have correct behavior,
1733 // because we effectively do this lookup again when we add the new
1734 // class to the hash table --- necessary because of possible races with
1735 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001736 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001737 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001738 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001739 return new_class;
1740 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001741 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001742
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001743 // Fill out the fields in the Class.
1744 //
1745 // It is possible to execute some methods against arrays, because
1746 // all arrays are subclasses of java_lang_Object_, so we need to set
1747 // up a vtable. We can just point at the one in java_lang_Object_.
1748 //
1749 // Array classes are simple enough that we don't need to do a full
1750 // link step.
1751
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001752 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001753 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001754 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001755 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001756 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001757 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001758 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001759 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001760 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001761 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001762 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001763 }
1764 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001765 if (new_class.get() == NULL) {
1766 new_class.reset(AllocClass(sizeof(Class)));
1767 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001768 return NULL;
1769 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001770 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001771 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001772 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001773 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001774 new_class->SetSuperClass(java_lang_Object);
1775 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001776 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001777 new_class->SetClassLoader(component_type->GetClassLoader());
1778 new_class->SetStatus(Class::kStatusInitialized);
1779 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001780 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001781
1782
1783 // All arrays have java/lang/Cloneable and java/io/Serializable as
1784 // interfaces. We need to set that up here, so that stuff like
1785 // "instanceof" works right.
1786 //
1787 // Note: The GC could run during the call to FindSystemClass,
1788 // so we need to make sure the class object is GC-valid while we're in
1789 // there. Do this by clearing the interface list so the GC will just
1790 // think that the entries are null.
1791
1792
1793 // Use the single, global copies of "interfaces" and "iftable"
1794 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001795 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001796 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001797
1798 // Inherit access flags from the component type. Arrays can't be
1799 // used as a superclass or interface, so we want to add "final"
1800 // and remove "interface".
1801 //
1802 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001803 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001804 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001805 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1806 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001807
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001808 Class* existing = InsertClass(descriptor, new_class.get(), false);
1809 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001810 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001811 }
1812 // Another thread must have loaded the class after we
1813 // started but before we finished. Abandon what we've
1814 // done.
1815 //
1816 // (Yes, this happens.)
1817
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001818 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001819}
1820
1821Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001822 switch (Primitive::GetType(type)) {
1823 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001824 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001825 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001826 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001827 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001828 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001829 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001830 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001831 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001832 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001833 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001834 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001835 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001836 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001837 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001838 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001839 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001840 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001841 case Primitive::kPrimNot:
1842 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001843 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001844 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001845 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001846 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001847}
1848
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001849Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001850 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001851 DexCache* dex_cache = klass->GetDexCache();
1852 std::string source;
1853 if (dex_cache != NULL) {
1854 source += " from ";
1855 source += dex_cache->GetLocation()->ToModifiedUtf8();
1856 }
1857 LOG(INFO) << "Loaded class " << descriptor << source;
1858 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001859 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001860 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001861 Table& classes = image_class ? image_classes_ : classes_;
1862 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1863#ifndef NDEBUG
1864 // Check we don't have the class in the other table in error
1865 Table& other_classes = image_class ? classes_ : image_classes_;
1866 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1867#endif
1868 if (existing != NULL) {
1869 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001870 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001871 classes.insert(std::make_pair(hash, klass));
1872 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001873}
1874
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001875bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1876 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001877 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001878 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001879 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001880 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001881 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001882 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001883 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001884 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001885 classes_.erase(it);
1886 return true;
1887 }
1888 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001889 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001890 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001891 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001892 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001893 image_classes_.erase(it);
1894 return true;
1895 }
1896 }
1897 return false;
1898}
1899
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001900Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1901 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001902 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001903 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001904 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1905 if (klass != NULL) {
1906 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001907 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001908 return LookupClass(descriptor, class_loader, hash, image_classes_);
1909}
1910
1911Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1912 size_t hash, const Table& classes) {
1913 ClassHelper kh(NULL, this);
1914 typedef Table::const_iterator It; // TODO: C++0x auto
1915 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001916 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001917 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001918 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001919#ifndef NDEBUG
1920 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001921 Class* klass2 = it->second;
1922 kh.ChangeClass(klass2);
1923 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001924 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001925 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001926 }
1927#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001928 return klass;
1929 }
1930 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001931 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001932}
1933
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001934void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001935 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001936 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001937 MutexLock mu(classes_lock_);
1938 typedef Table::const_iterator It; // TODO: C++0x auto
1939 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001940 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001941 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001942 Class* klass = it->second;
1943 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001944 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001945 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001946 }
1947 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001948 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001949 Class* klass = it->second;
1950 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001951 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001952 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001953 }
1954 }
1955}
1956
Ian Rogersc20a83e2012-01-18 18:15:32 -08001957#ifndef NDEBUG
1958static void CheckMethodsHaveGcMaps(Class* klass) {
1959 if (!Runtime::Current()->IsStarted()) {
1960 return;
1961 }
1962 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1963 Method* method = klass->GetDirectMethod(i);
1964 if (!method->IsNative() && !method->IsAbstract()) {
1965 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1966 }
1967 }
1968 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1969 Method* method = klass->GetVirtualMethod(i);
1970 if (!method->IsNative() && !method->IsAbstract()) {
1971 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1972 }
1973 }
1974}
1975#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001976static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08001977}
1978#endif
1979
jeffhao98eacac2011-09-14 16:11:53 -07001980void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001981 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08001982 ObjectLock lock(klass);
1983
jeffhao98eacac2011-09-14 16:11:53 -07001984 if (klass->IsVerified()) {
1985 return;
1986 }
1987
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001988 // The class might already be erroneous if we attempted to verify a subclass
1989 if (klass->IsErroneous()) {
1990 ThrowEarlierClassFailure(klass);
1991 return;
1992 }
1993
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001994 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001995 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001996
Ian Rogers1c5eb702012-02-01 09:18:34 -08001997 // Verify super class
1998 Class* super = klass->GetSuperClass();
1999 std::string error_msg;
2000 if (super != NULL) {
2001 // Acquire lock to prevent races on verifying the super class
2002 ObjectLock lock(super);
2003
2004 if (!super->IsVerified() && !super->IsErroneous()) {
2005 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2006 }
2007 if (!super->IsVerified()) {
2008 error_msg = "Rejecting class ";
2009 error_msg += PrettyDescriptor(klass);
2010 error_msg += " that attempts to sub-class erroneous class ";
2011 error_msg += PrettyDescriptor(super);
2012 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2013 Thread* self = Thread::Current();
2014 SirtRef<Throwable> cause(self->GetException());
2015 if (cause.get() != NULL) {
2016 self->ClearException();
2017 }
2018 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2019 if (cause.get() != NULL) {
2020 self->GetException()->SetCause(cause.get());
2021 }
2022 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2023 klass->SetStatus(Class::kStatusError);
2024 return;
2025 }
2026 }
2027
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002028 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002029 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002030 Class::Status oat_file_class_status(Class::kStatusNotReady);
2031 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
2032 bool verified = preverified || verifier::DexVerifier::VerifyClass(klass, error_msg);
2033 if (verified) {
2034 if (!preverified && oat_file_class_status == Class::kStatusError) {
2035 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2036 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2037 }
Ian Rogersc4762272012-02-01 15:55:55 -08002038 DCHECK(!Thread::Current()->IsExceptionPending());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002039 // Make sure all classes referenced by catch blocks are resolved
2040 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002041 klass->SetStatus(Class::kStatusVerified);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002042 // Sanity check that a verified class has GC maps on all methods
2043 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002044 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002045 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002046 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2047 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002048 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002049 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002050 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2051 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002052 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002053 }
jeffhao98eacac2011-09-14 16:11:53 -07002054}
2055
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002056bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2057 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002058 if (!Runtime::Current()->IsStarted()) {
2059 return false;
2060 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002061 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002062 return false;
2063 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002064 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2065 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002066 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002067 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002068 const char* descriptor = ClassHelper(klass).GetDescriptor();
2069 uint32_t class_def_index;
2070 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002071 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002072 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002073 CHECK(oat_class.get() != NULL)
2074 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002075 oat_file_class_status = oat_class->GetStatus();
2076 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002077 return true;
2078 }
jeffhao1ac29442012-03-26 11:37:32 -07002079 if (oat_file_class_status == Class::kStatusResolved) {
2080 // Compile time verification failed with a soft error. Compile time verification can fail
2081 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002082 // class ... {
2083 // Foo x;
2084 // .... () {
2085 // if (...) {
2086 // v1 gets assigned a type of resolved class Foo
2087 // } else {
2088 // v1 gets assigned a type of unresolved class Bar
2089 // }
2090 // iput x = v1
2091 // } }
2092 // when we merge v1 following the if-the-else it results in Conflict
2093 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2094 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2095 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2096 // at compile time).
2097 return false;
2098 }
jeffhao1ac29442012-03-26 11:37:32 -07002099 if (oat_file_class_status == Class::kStatusError) {
2100 // Compile time verification failed with a hard error. This is caused by invalid instructions
2101 // in the class. These errors are unrecoverable.
2102 return false;
2103 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002104 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002105 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2106 // not loading the class.
2107 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2108 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002109 return false;
2110 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002111 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002112 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2113
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002114 return false;
2115}
2116
2117void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2118 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2119 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2120 }
2121 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2122 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2123 }
2124}
2125
2126void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2127 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2128 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2129 if (code_item == NULL) {
2130 return; // native or abstract method
2131 }
2132 if (code_item->tries_size_ == 0) {
2133 return; // nothing to process
2134 }
2135 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2136 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2137 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2138 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2139 CatchHandlerIterator iterator(handlers_ptr);
2140 for (; iterator.HasNext(); iterator.Next()) {
2141 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2142 // unresolved exception types will be ignored by exception delivery
2143 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2144 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2145 if (exception_type == NULL) {
2146 DCHECK(Thread::Current()->IsExceptionPending());
2147 Thread::Current()->ClearException();
2148 }
2149 }
2150 }
2151 handlers_ptr = iterator.EndDataPointer();
2152 }
2153}
2154
Ian Rogersc2b44472011-12-14 21:17:17 -08002155static void CheckProxyConstructor(Method* constructor);
2156static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2157
Jesse Wilson95caa792011-10-12 18:14:17 -04002158Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002159 ClassLoader* loader, ObjectArray<Method>* methods,
2160 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002161 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002162 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002163 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002164 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002165 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002166 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002167 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002168 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002169 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002170 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002171
2172 klass->SetStatus(Class::kStatusIdx);
2173
2174 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2175
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002176 // Instance fields are inherited, but we add a couple of static fields...
2177 klass->SetSFields(AllocObjectArray<Field>(2));
2178 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2179 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2180 SirtRef<Field> interfaces_sfield(AllocField());
2181 klass->SetStaticField(0, interfaces_sfield.get());
2182 interfaces_sfield->SetDexFieldIndex(0);
2183 interfaces_sfield->SetDeclaringClass(klass.get());
2184 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2185 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2186 SirtRef<Field> throws_sfield(AllocField());
2187 klass->SetStaticField(1, throws_sfield.get());
2188 throws_sfield->SetDexFieldIndex(1);
2189 throws_sfield->SetDeclaringClass(klass.get());
2190 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002191
Ian Rogers466bb252011-10-14 03:29:56 -07002192 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002193 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002194 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002195
Ian Rogers466bb252011-10-14 03:29:56 -07002196 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002197 size_t num_virtual_methods = methods->GetLength();
2198 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2199 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002200 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002201 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002202 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002203
2204 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2205 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2206 DCHECK(!Thread::Current()->IsExceptionPending());
2207
2208 // Link the fields and virtual methods, creating vtable and iftables
2209 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002210 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002211 return NULL;
2212 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002213 interfaces_sfield->SetObject(NULL, interfaces);
2214 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002215 klass->SetStatus(Class::kStatusInitialized);
2216
2217 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002218 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002219 CHECK(klass->GetIFields() == NULL);
2220 CheckProxyConstructor(klass->GetDirectMethod(0));
2221 for (size_t i = 0; i < num_virtual_methods; ++i) {
2222 SirtRef<Method> prototype(methods->Get(i));
2223 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2224 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002225
2226 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2227 name->ToModifiedUtf8().c_str()));
2228 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2229
2230 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2231 name->ToModifiedUtf8().c_str()));
2232 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002233
2234 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002235 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002236 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2237 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002238 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002239}
2240
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002241std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2242 DCHECK(proxy_class->IsProxyClass());
2243 String* name = proxy_class->GetName();
2244 DCHECK(name != NULL);
2245 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2246}
2247
Ian Rogers16f93672012-02-14 12:29:06 -08002248Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2249 DCHECK(proxy_class->IsProxyClass());
2250 DCHECK(proxy_method->IsProxyMethod());
2251 // Locate the dex cache of the original interface/Object
2252 DexCache* dex_cache = NULL;
2253 {
2254 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2255 MutexLock mu(dex_lock_);
2256 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2257 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2258 dex_cache = dex_caches_[i];
2259 break;
2260 }
2261 }
2262 }
2263 CHECK(dex_cache != NULL);
2264 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2265 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2266 CHECK(resolved_method != NULL);
2267 return resolved_method;
2268}
2269
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002270
2271Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002272 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002273 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002274 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002275 Method* proxy_constructor = proxy_direct_methods->Get(2);
2276 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2277 // code_ too)
2278 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2279 // Make this constructor public and fix the class to be our Proxy version
2280 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002281 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002282 return constructor;
2283}
2284
2285static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002286 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002287 MethodHelper mh(constructor);
2288 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002289 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002290 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002291}
2292
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002293Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2294 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2295 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002296 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2297 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002298 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002299 // as necessary
2300 Method* method = down_cast<Method*>(prototype->Clone());
2301
2302 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2303 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002304 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002305 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002306
Ian Rogers466bb252011-10-14 03:29:56 -07002307 // At runtime the method looks like a reference and argument saving method, clone the code
2308 // related parameters from this method.
2309 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2310 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2311 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2312 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
2313 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogers16f93672012-02-14 12:29:06 -08002314
Ian Rogersc2b44472011-12-14 21:17:17 -08002315 return method;
2316}
Jesse Wilson95caa792011-10-12 18:14:17 -04002317
Ian Rogersc2b44472011-12-14 21:17:17 -08002318static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002319 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002320 CHECK(!prototype->IsFinal());
2321 CHECK(method->IsFinal());
2322 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002323
2324 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2325 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2326 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2327 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2328 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2329 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2330 method->GetDexCacheInitializedStaticStorage());
2331 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2332
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002333 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002334 MethodHelper mh2(prototype.get());
2335 CHECK_STREQ(mh.GetName(), mh2.GetName());
2336 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002337 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002338 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002339}
2340
Brian Carlstrom25c33252011-09-18 15:58:35 -07002341bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002342 CHECK(klass->IsResolved() || klass->IsErroneous())
2343 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002344
Carl Shapirob5573532011-07-12 18:22:59 -07002345 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002346
Brian Carlstrom25c33252011-09-18 15:58:35 -07002347 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002348 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002349 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002350 ObjectLock lock(klass);
2351
Brian Carlstromd1422f82011-09-28 11:37:09 -07002352 if (klass->GetStatus() == Class::kStatusInitialized) {
2353 return true;
2354 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002355
Brian Carlstromd1422f82011-09-28 11:37:09 -07002356 if (klass->IsErroneous()) {
2357 ThrowEarlierClassFailure(klass);
2358 return false;
2359 }
2360
2361 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002362 VerifyClass(klass);
2363 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002364 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002365 return false;
2366 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002367 }
2368
Brian Carlstrom25c33252011-09-18 15:58:35 -07002369 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2370 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002371 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002372 // don't bother going to kStatusInitializing. We return false so that
2373 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002374 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2375 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002376 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002377 }
2378
Brian Carlstromd1422f82011-09-28 11:37:09 -07002379 // If the class is kStatusInitializing, either this thread is
2380 // initializing higher up the stack or another thread has beat us
2381 // to initializing and we need to wait. Either way, this
2382 // invocation of InitializeClass will not be responsible for
2383 // running <clinit> and will return.
2384 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002385 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002386 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002387 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002388 return true;
2389 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002390 // No. That's fine. Wait for another thread to finish initializing.
2391 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002392 }
2393
2394 if (!ValidateSuperClassDescriptors(klass)) {
2395 klass->SetStatus(Class::kStatusError);
2396 return false;
2397 }
2398
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002399 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002400
Elliott Hughesdcc24742011-09-07 14:02:44 -07002401 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002402 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002403 }
2404
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002405 uint64_t t0 = NanoTime();
2406
Brian Carlstrom25c33252011-09-18 15:58:35 -07002407 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002408 // Super class initialization failed, this can be because we can't run
2409 // super-class class initializers in which case we'll be verified.
2410 // Otherwise this class is erroneous.
2411 if (!can_run_clinit) {
2412 CHECK(klass->IsVerified());
2413 } else {
2414 CHECK(klass->IsErroneous());
2415 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002416 return false;
2417 }
2418
2419 InitializeStaticFields(klass);
2420
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002421 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002422 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002423 }
2424
Ian Rogers19846512012-02-24 11:42:47 -08002425 FixupStaticTrampolines(klass);
2426
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002427 uint64_t t1 = NanoTime();
2428
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002429 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002430 {
2431 ObjectLock lock(klass);
2432
2433 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002434 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002435 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002436 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002437 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002438 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2439 RuntimeStats* thread_stats = self->GetStats();
2440 ++global_stats->class_init_count;
2441 ++thread_stats->class_init_count;
2442 global_stats->class_init_time_ns += (t1 - t0);
2443 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002444 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002445 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002446 ClassHelper kh(klass);
2447 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002448 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002449 }
2450 lock.NotifyAll();
2451 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002452 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002453}
2454
Brian Carlstromd1422f82011-09-28 11:37:09 -07002455bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2456 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002457 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002458 lock.Wait();
2459
2460 // When we wake up, repeat the test for init-in-progress. If
2461 // there's an exception pending (only possible if
2462 // "interruptShouldThrow" was set), bail out.
2463 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002464 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002465 klass->SetStatus(Class::kStatusError);
2466 return false;
2467 }
2468 // Spurious wakeup? Go back to waiting.
2469 if (klass->GetStatus() == Class::kStatusInitializing) {
2470 continue;
2471 }
2472 if (klass->IsErroneous()) {
2473 // The caller wants an exception, but it was thrown in a
2474 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002475 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002476 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002477 return false;
2478 }
2479 if (klass->IsInitialized()) {
2480 return true;
2481 }
2482 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2483 }
2484 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2485}
2486
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002487bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2488 if (klass->IsInterface()) {
2489 return true;
2490 }
2491 // begin with the methods local to the superclass
2492 if (klass->HasSuperClass() &&
2493 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2494 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002495 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2496 const Method* method = klass->GetVTable()->Get(i);
2497 if (method != super->GetVTable()->Get(i) &&
2498 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002499 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2500 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2501 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002502 return false;
2503 }
2504 }
2505 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002506 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2507 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2508 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002509 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2510 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002511 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002512 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2513 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002514 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2515 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2516 PrettyMethod(method).c_str(),
2517 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002518 return false;
2519 }
2520 }
2521 }
2522 }
2523 return true;
2524}
2525
Ian Rogers595799e2012-01-11 17:32:51 -08002526// Returns true if classes referenced by the signature of the method are the
2527// same classes in klass1 as they are in klass2.
2528bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2529 const Class* klass1,
2530 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002531 if (klass1 == klass2) {
2532 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002533 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002534 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002535 const DexFile::ProtoId& proto_id =
2536 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002537 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2538 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002539 if (descriptor == NULL) {
2540 break;
2541 }
2542 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2543 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002544 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002545 return false;
2546 }
2547 }
2548 }
2549 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002550 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002551 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002552 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002553 return false;
2554 }
2555 }
2556 return true;
2557}
2558
Ian Rogers595799e2012-01-11 17:32:51 -08002559// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2560bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2561 const Class* klass1,
2562 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002563 CHECK(descriptor != NULL);
2564 CHECK(klass1 != NULL);
2565 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002566 if (klass1 == klass2) {
2567 return true;
2568 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002569 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002570 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002571 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002572 }
Ian Rogers595799e2012-01-11 17:32:51 -08002573 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2574 if (found2 == NULL) {
2575 Thread::Current()->ClearException();
2576 }
2577 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002578}
2579
Brian Carlstrom25c33252011-09-18 15:58:35 -07002580bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002581 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002582 if (!klass->IsInterface() && klass->HasSuperClass()) {
2583 Class* super_class = klass->GetSuperClass();
2584 if (super_class->GetStatus() != Class::kStatusInitialized) {
2585 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002586 Thread* self = Thread::Current();
2587 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002588 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002589 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002590 // TODO: check for a pending exception
2591 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002592 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002593 // Don't set status to error when we can't run <clinit>.
2594 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2595 klass->SetStatus(Class::kStatusVerified);
2596 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002597 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002598 klass->SetStatus(Class::kStatusError);
2599 klass->NotifyAll();
2600 return false;
2601 }
2602 }
2603 }
2604 return true;
2605}
2606
Brian Carlstrom25c33252011-09-18 15:58:35 -07002607bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002608 CHECK(c != NULL);
2609 if (c->IsInitialized()) {
2610 return true;
2611 }
2612
Elliott Hughes5f791332011-09-15 17:45:30 -07002613 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002614 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002615 bool success = InitializeClass(c, can_run_clinit);
2616 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002617 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002618 }
2619 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002620}
2621
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002622void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002623 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002624 const ClassLoader* cl = c->GetClassLoader();
2625 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002626 ClassDataItemIterator it(dex_file, class_data);
2627 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2628 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002629 }
2630}
2631
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002632void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002633 size_t num_static_fields = klass->NumStaticFields();
2634 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002635 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002636 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002637 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002638 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002639 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002640 return;
2641 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002642 ClassHelper kh(klass);
2643 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002644 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002645 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002646 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002647
Ian Rogers0571d352011-11-03 19:51:38 -07002648 if (it.HasNext()) {
2649 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2650 std::map<uint32_t, Field*> field_map;
2651 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2652 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2653 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002654 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002655 }
2656}
2657
Ian Rogersc2b44472011-12-14 21:17:17 -08002658bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002659 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002660 if (!LinkSuperClass(klass)) {
2661 return false;
2662 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002663 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002664 return false;
2665 }
2666 if (!LinkInstanceFields(klass)) {
2667 return false;
2668 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002669 if (!LinkStaticFields(klass)) {
2670 return false;
2671 }
2672 CreateReferenceInstanceOffsets(klass);
2673 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002674 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2675 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002676 return true;
2677}
2678
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002679bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002680 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002681 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2682 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002683 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002684 uint16_t super_class_idx = class_def->superclass_idx_;
2685 if (super_class_idx != DexFile::kDexNoIndex16) {
2686 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002687 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002688 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002689 return false;
2690 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002691 // Verify
2692 if (!klass->CanAccess(super_class)) {
2693 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2694 "Class %s extended by class %s is inaccessible",
2695 PrettyDescriptor(super_class).c_str(),
2696 PrettyDescriptor(klass.get()).c_str());
2697 return false;
2698 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002699 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002700 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002701 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2702 if (interfaces != NULL) {
2703 for (size_t i = 0; i < interfaces->Size(); i++) {
2704 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2705 Class* interface = ResolveType(dex_file, idx, klass.get());
2706 if (interface == NULL) {
2707 DCHECK(Thread::Current()->IsExceptionPending());
2708 return false;
2709 }
2710 // Verify
2711 if (!klass->CanAccess(interface)) {
2712 // TODO: the RI seemed to ignore this in my testing.
2713 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2714 "Interface %s implemented by class %s is inaccessible",
2715 PrettyDescriptor(interface).c_str(),
2716 PrettyDescriptor(klass.get()).c_str());
2717 return false;
2718 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002719 }
2720 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002721 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002722 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002723 return true;
2724}
2725
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002726bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002727 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002728 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002729 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002730 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002731 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002732 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002733 return false;
2734 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002735 return true;
2736 }
2737 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002738 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002739 return false;
2740 }
2741 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002742 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002743 Thread* self = Thread::Current();
2744 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002745 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002746 PrettyDescriptor(super).c_str(),
2747 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002748 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002749 return false;
2750 }
2751 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002752 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002753 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002754 PrettyDescriptor(super).c_str(),
2755 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002756 return false;
2757 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002758
2759 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2760 if (super->IsFinalizable()) {
2761 klass->SetFinalizable();
2762 }
2763
Elliott Hughes2da50362011-10-10 16:57:08 -07002764 // Inherit reference flags (if any) from the superclass.
2765 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2766 if (reference_flags != 0) {
2767 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2768 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002769 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002770 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002771 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002772 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002773 return false;
2774 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002775
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002776#ifndef NDEBUG
2777 // Ensure super classes are fully resolved prior to resolving fields..
2778 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002779 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002780 super = super->GetSuperClass();
2781 }
2782#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002783 return true;
2784}
2785
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002786// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002787bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002788 if (klass->IsInterface()) {
2789 // No vtable.
2790 size_t count = klass->NumVirtualMethods();
2791 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002792 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002793 return false;
2794 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002795 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002796 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002797 }
jeffhaobdb76512011-09-07 11:43:16 -07002798 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002799 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002800 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002801 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002802 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002803 }
2804 return true;
2805}
2806
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002807bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002808 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002809 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2810 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002811 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002812 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002813 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002814 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002815 MethodHelper local_mh(NULL, this);
2816 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002817 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002818 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002819 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002820 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002821 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002822 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002823 super_mh.ChangeMethod(super_method);
2824 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002825 // Verify
2826 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002827 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002828 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002829 PrettyDescriptor(klass.get()).c_str(),
2830 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002831 return false;
2832 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002833 vtable->Set(j, local_method);
2834 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002835 break;
2836 }
2837 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002838 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002839 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002840 vtable->Set(actual_count, local_method);
2841 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002842 actual_count += 1;
2843 }
2844 }
2845 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002846 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002847 return false;
2848 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002849 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002850 CHECK_LE(actual_count, max_count);
2851 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002852 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002853 }
Ian Rogers30fab402012-01-23 15:43:46 -08002854 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002855 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002856 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002857 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002858 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002859 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002860 return false;
2861 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002862 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002863 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002864 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2865 vtable->Set(i, virtual_method);
2866 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002867 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002868 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002869 }
2870 return true;
2871}
2872
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002873bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002874 size_t super_ifcount;
2875 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002876 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002877 } else {
2878 super_ifcount = 0;
2879 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002880 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002881 ClassHelper kh(klass.get(), this);
2882 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2883 ifcount += num_interfaces;
2884 for (size_t i = 0; i < num_interfaces; i++) {
2885 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2886 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002887 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002888 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002889 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002890 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002891 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002892 return true;
2893 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002894 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002895 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002896 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2897 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002898 Class* super_interface = super_iftable->Get(i)->GetInterface();
2899 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002900 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002901 }
2902 // Flatten the interface inheritance hierarchy.
2903 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002904 for (size_t i = 0; i < num_interfaces; i++) {
2905 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002906 DCHECK(interface != NULL);
2907 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002908 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002909 Thread* self = Thread::Current();
2910 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002911 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002912 PrettyDescriptor(klass.get()).c_str(),
2913 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002914 return false;
2915 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002916 // Check if interface is already in iftable
2917 bool duplicate = false;
2918 for (size_t j = 0; j < idx; j++) {
2919 Class* existing_interface = iftable->Get(j)->GetInterface();
2920 if (existing_interface == interface) {
2921 duplicate = true;
2922 break;
2923 }
2924 }
2925 if (!duplicate) {
2926 // Add this non-duplicate interface.
2927 iftable->Set(idx++, AllocInterfaceEntry(interface));
2928 // Add this interface's non-duplicate super-interfaces.
2929 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2930 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2931 bool super_duplicate = false;
2932 for (size_t k = 0; k < idx; k++) {
2933 Class* existing_interface = iftable->Get(k)->GetInterface();
2934 if (existing_interface == super_interface) {
2935 super_duplicate = true;
2936 break;
2937 }
2938 }
2939 if (!super_duplicate) {
2940 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2941 }
2942 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002943 }
2944 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002945 // Shrink iftable in case duplicates were found
2946 if (idx < ifcount) {
2947 iftable.reset(iftable->CopyOf(idx));
2948 ifcount = idx;
2949 } else {
2950 CHECK_EQ(idx, ifcount);
2951 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002952 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002953
2954 // If we're an interface, we don't need the vtable pointers, so we're done.
2955 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002956 return true;
2957 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002958 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002959 MethodHelper vtable_mh(NULL, this);
2960 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002961 for (size_t i = 0; i < ifcount; ++i) {
2962 InterfaceEntry* interface_entry = iftable->Get(i);
2963 Class* interface = interface_entry->GetInterface();
2964 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2965 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002966 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002967 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2968 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002969 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002970 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002971 // For each method listed in the interface's method list, find the
2972 // matching method in our class's method list. We want to favor the
2973 // subclass over the superclass, which just requires walking
2974 // back from the end of the vtable. (This only matters if the
2975 // superclass defines a private method and this class redefines
2976 // it -- otherwise it would use the same vtable slot. In .dex files
2977 // those don't end up in the virtual method table, so it shouldn't
2978 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002979 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2980 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002981 vtable_mh.ChangeMethod(vtable_method);
2982 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002983 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002984 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002985 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002986 return false;
2987 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002988 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002989 break;
2990 }
2991 }
2992 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002993 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002994 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002995 Method* mir_method = miranda_list[mir];
2996 vtable_mh.ChangeMethod(mir_method);
2997 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002998 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002999 break;
3000 }
3001 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003002 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003003 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003004 miranda_method.reset(AllocMethod());
3005 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3006 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003007 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003008 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003009 }
3010 }
3011 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003012 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003013 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003014 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003015 klass->SetVirtualMethods((old_method_count == 0)
3016 ? AllocObjectArray<Method>(new_method_count)
3017 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003018
Ian Rogers30fab402012-01-23 15:43:46 -08003019 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3020 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003021 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003022 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003023 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003024 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003025 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003026 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003027 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3028 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3029 klass->SetVirtualMethod(old_method_count + i, method);
3030 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003031 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003032 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003033 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003034 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003035
3036 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3037 for (int i = 0; i < vtable->GetLength(); ++i) {
3038 CHECK(vtable->Get(i) != NULL);
3039 }
3040
3041// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3042
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003043 return true;
3044}
3045
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003046bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3047 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003048 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003049}
3050
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003051bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3052 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003053 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003054 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003055 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003056 return success;
3057}
3058
Brian Carlstromdbc05252011-09-09 01:59:59 -07003059struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003060 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003061 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003062 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003063 fh_->ChangeField(field1);
3064 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3065 fh_->ChangeField(field2);
3066 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003067 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3068 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3069 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3070 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003071 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3072 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3073 if (order1 != order2) {
3074 return order1 < order2;
3075 }
3076
3077 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003078 fh_->ChangeField(field1);
3079 StringPiece name1(fh_->GetName());
3080 fh_->ChangeField(field2);
3081 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003082 return name1 < name2;
3083 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003084
3085 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003086};
3087
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003088bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003089 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003090 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003091
3092 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003093 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003094
3095 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003096 size_t size;
3097 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003098 if (is_static) {
3099 size = klass->GetClassSize();
3100 field_offset = Class::FieldsOffset();
3101 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003102 Class* super_class = klass->GetSuperClass();
3103 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003104 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003105 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003106 }
3107 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003108 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003109
Brian Carlstromdbc05252011-09-09 01:59:59 -07003110 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003111
Brian Carlstromdbc05252011-09-09 01:59:59 -07003112 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003113 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003114 std::deque<Field*> grouped_and_sorted_fields;
3115 for (size_t i = 0; i < num_fields; i++) {
3116 grouped_and_sorted_fields.push_back(fields->Get(i));
3117 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003118 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003119 std::sort(grouped_and_sorted_fields.begin(),
3120 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003121 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003122
3123 // References should be at the front.
3124 size_t current_field = 0;
3125 size_t num_reference_fields = 0;
3126 for (; current_field < num_fields; current_field++) {
3127 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003128 fh.ChangeField(field);
3129 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003130 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003131 if (isPrimitive) {
3132 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003133 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003134 grouped_and_sorted_fields.pop_front();
3135 num_reference_fields++;
3136 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003137 field->SetOffset(field_offset);
3138 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003139 }
3140
3141 // Now we want to pack all of the double-wide fields together. If
3142 // we're not aligned, though, we want to shuffle one 32-bit field
3143 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003144 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003145 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3146 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003147 fh.ChangeField(field);
3148 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003149 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3150 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003151 continue;
3152 }
3153 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003154 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003155 // drop the consumed field
3156 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3157 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003158 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003159 // whether we found a 32-bit field for padding or not, we advance
3160 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003161 }
3162
3163 // Alignment is good, shuffle any double-wide fields forward, and
3164 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003165 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003166 while (!grouped_and_sorted_fields.empty()) {
3167 Field* field = grouped_and_sorted_fields.front();
3168 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003169 fh.ChangeField(field);
3170 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003171 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003172 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003173 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003174 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003175 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003176 ? sizeof(uint64_t)
3177 : sizeof(uint32_t)));
3178 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003179 }
3180
Elliott Hughesadb460d2011-10-05 17:02:34 -07003181 // 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 -08003182 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3183 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003184 // We know there are no non-reference fields in the Reference classes, and we know
3185 // that 'referent' is alphabetically last, so this is easy...
3186 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003187 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003188 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003189 --num_reference_fields;
3190 }
3191
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003192#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003193 // Make sure that all reference fields appear before
3194 // non-reference fields, and all double-wide fields are aligned.
3195 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003196 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003197 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003198 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003199 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003200 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003201 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003202 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3203 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003204 fh.ChangeField(field);
3205 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003206 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003207 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003208 is_primitive = true; // We lied above, so we have to expect a lie here.
3209 }
3210 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003211 if (!seen_non_ref) {
3212 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003213 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003214 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003215 } else {
3216 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003217 }
3218 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003219 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003220 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003221 }
3222#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003223 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003224 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003225 if (is_static) {
3226 klass->SetNumReferenceStaticFields(num_reference_fields);
3227 klass->SetClassSize(size);
3228 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003229 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003230 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003231 klass->SetObjectSize(size);
3232 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003233 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003234 return true;
3235}
3236
3237// Set the bitmap of reference offsets, refOffsets, from the ifields
3238// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003239void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003240 uint32_t reference_offsets = 0;
3241 Class* super_class = klass->GetSuperClass();
3242 if (super_class != NULL) {
3243 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003244 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003245 if (reference_offsets == CLASS_WALK_SUPER) {
3246 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003247 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003248 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003249 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003250 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003251}
3252
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003253void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003254 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003255}
3256
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003257void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003258 uint32_t reference_offsets) {
3259 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003260 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3261 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003262 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003263 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003264 // All of the fields that contain object references are guaranteed
3265 // to be at the beginning of the fields list.
3266 for (size_t i = 0; i < num_reference_fields; ++i) {
3267 // Note that byte_offset is the offset from the beginning of
3268 // object, not the offset into instance data
3269 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003270 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003271 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3272 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3273 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003274 CHECK_NE(new_bit, 0U);
3275 reference_offsets |= new_bit;
3276 } else {
3277 reference_offsets = CLASS_WALK_SUPER;
3278 break;
3279 }
3280 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003281 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003282 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003283 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003284 } else {
3285 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003286 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003287}
3288
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003289String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003290 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003291 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003292 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003293 if (resolved != NULL) {
3294 return resolved;
3295 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003296 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3297 int32_t utf16_length = dex_file.GetStringLength(string_id);
3298 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003299 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003300 dex_cache->SetResolvedString(string_idx, string);
3301 return string;
3302}
3303
3304Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003305 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003306 DexCache* dex_cache,
3307 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003308 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003309 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003310 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003311 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003312 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003313 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003314 // TODO: we used to throw here if resolved's class loader was not the
3315 // boot class loader. This was to permit different classes with the
3316 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003317 dex_cache->SetResolvedType(type_idx, resolved);
3318 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003319 CHECK(Thread::Current()->IsExceptionPending())
3320 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003321 // Convert a ClassNotFoundException to a NoClassDefFoundError
3322 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3323 Thread::Current()->ClearException();
3324 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3325 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003326 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003327 }
3328 return resolved;
3329}
3330
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003331Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3332 uint32_t method_idx,
3333 DexCache* dex_cache,
3334 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003335 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003336 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003337 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3338 if (resolved != NULL) {
3339 return resolved;
3340 }
3341 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3342 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3343 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003344 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003345 return NULL;
3346 }
3347
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003348 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003349 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003350 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003351 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003352 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003353 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003354 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003355
3356 if (resolved == NULL) {
3357 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3358 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3359 if (is_direct) {
3360 resolved = klass->FindDirectMethod(name, signature);
3361 } else if (klass->IsInterface()) {
3362 resolved = klass->FindInterfaceMethod(name, signature);
3363 } else {
3364 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003365 // If a virtual method isn't found, search the direct methods. This can
3366 // happen when trying to access private methods directly, and allows the
3367 // proper exception to be thrown in the caller.
3368 if (resolved == NULL) {
3369 resolved = klass->FindDirectMethod(name, signature);
3370 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003371 }
3372 if (resolved == NULL) {
3373 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3374 return NULL;
3375 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003376 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003377 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003378 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003379}
3380
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003381Field* ClassLinker::ResolveField(const DexFile& dex_file,
3382 uint32_t field_idx,
3383 DexCache* dex_cache,
3384 const ClassLoader* class_loader,
3385 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003386 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003387 Field* resolved = dex_cache->GetResolvedField(field_idx);
3388 if (resolved != NULL) {
3389 return resolved;
3390 }
3391 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3392 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3393 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003394 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003395 return NULL;
3396 }
3397
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003398 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003399 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003400 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003401 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003402 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003403
3404 if (resolved == NULL) {
3405 const char* name = dex_file.GetFieldName(field_id);
3406 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3407 if (is_static) {
3408 resolved = klass->FindStaticField(name, type);
3409 } else {
3410 resolved = klass->FindInstanceField(name, type);
3411 }
3412 if (resolved == NULL) {
3413 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3414 return NULL;
3415 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003416 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003417 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003418 return resolved;
3419}
3420
3421Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3422 uint32_t field_idx,
3423 DexCache* dex_cache,
3424 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003425 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003426 Field* resolved = dex_cache->GetResolvedField(field_idx);
3427 if (resolved != NULL) {
3428 return resolved;
3429 }
3430 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3431 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3432 if (klass == NULL) {
3433 DCHECK(Thread::Current()->IsExceptionPending());
3434 return NULL;
3435 }
3436
3437 const char* name = dex_file.GetFieldName(field_id);
3438 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3439 resolved = klass->FindField(name, type);
3440 if (resolved != NULL) {
3441 dex_cache->SetResolvedField(field_idx, resolved);
3442 } else {
3443 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003444 }
3445 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003446}
3447
Ian Rogers19846512012-02-24 11:42:47 -08003448const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003449 Class* declaring_class = referrer->GetDeclaringClass();
3450 DexCache* dex_cache = declaring_class->GetDexCache();
3451 const DexFile& dex_file = FindDexFile(dex_cache);
3452 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003453 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003454}
3455
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003456void ClassLinker::DumpAllClasses(int flags) const {
3457 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3458 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3459 std::vector<Class*> all_classes;
3460 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003461 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003462 typedef Table::const_iterator It; // TODO: C++0x auto
3463 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3464 all_classes.push_back(it->second);
3465 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003466 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3467 all_classes.push_back(it->second);
3468 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003469 }
3470
3471 for (size_t i = 0; i < all_classes.size(); ++i) {
3472 all_classes[i]->DumpClass(std::cerr, flags);
3473 }
3474}
3475
Elliott Hughescac6cc72011-11-03 20:31:21 -07003476void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3477 MutexLock mu(classes_lock_);
3478 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3479 << classes_.size() << " allocated classes\n";
3480}
3481
Elliott Hughese27955c2011-08-26 15:21:24 -07003482size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003483 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003484 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003485}
3486
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003487pid_t ClassLinker::GetClassesLockOwner() {
3488 return classes_lock_.GetOwner();
3489}
3490
3491pid_t ClassLinker::GetDexLockOwner() {
3492 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003493}
3494
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003495void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3496 DCHECK(!init_done_);
3497
3498 DCHECK(klass != NULL);
3499 DCHECK(klass->GetClassLoader() == NULL);
3500
3501 DCHECK(class_roots_ != NULL);
3502 DCHECK(class_roots_->Get(class_root) == NULL);
3503 class_roots_->Set(class_root, klass);
3504}
3505
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003506} // namespace art