blob: b94003aaa5bc6393c0962211bf6fa6e8046e934c [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"
TDYa1275bb86012012-04-11 05:57:28 -070046#if defined(ART_USE_LLVM_COMPILER)
47#include "compiler_llvm/runtime_support_llvm.h"
48#endif
Elliott Hughes4d0207c2011-10-03 19:14:34 -070049#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070050#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070051#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070052#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070053#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070054#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070055#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070056
57namespace art {
58
Elliott Hughes0512f022012-03-15 22:10:52 -070059static void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
60static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070061 va_list args;
62 va_start(args, fmt);
63 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
64 va_end(args);
65}
66
Elliott Hughes0512f022012-03-15 22:10:52 -070067static void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
68static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070069 va_list args;
70 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070071 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070072 va_end(args);
73}
74
Elliott Hughes0512f022012-03-15 22:10:52 -070075static void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
76static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070077 va_list args;
78 va_start(args, fmt);
79 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
80 va_end(args);
81}
82
Elliott Hughes0512f022012-03-15 22:10:52 -070083static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
84 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080085 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070086 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080087 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080088 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080089 std::string location(kh.GetLocation());
90 if (!location.empty()) {
91 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070092 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070093 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070094}
95
Elliott Hughes0512f022012-03-15 22:10:52 -070096static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
97 const StringPiece& name) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080098 ClassHelper kh(c);
99 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -0800100 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -0800101 << " in class " << kh.GetDescriptor() << " or its superclasses";
102 std::string location(kh.GetLocation());
103 if (!location.empty()) {
104 msg << " (defined in " << location << ")";
105 }
106 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
107}
108
Elliott Hughes0512f022012-03-15 22:10:52 -0700109static void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
110static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800111 va_list args;
112 va_start(args, fmt);
113 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
114 va_end(args);
115}
116
Elliott Hughes0512f022012-03-15 22:10:52 -0700117static void ThrowEarlierClassFailure(Class* c) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700118 /*
119 * The class failed to initialize on a previous attempt, so we want to throw
120 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
121 * failed in verification, in which case v2 5.4.1 says we need to re-throw
122 * the previous error.
123 */
124 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
125
Brian Carlstrom4d9716c2012-01-30 01:49:33 -0800126 CHECK(c->IsErroneous()) << PrettyClass(c);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700127 if (c->GetVerifyErrorClass() != NULL) {
128 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800129 ClassHelper ve_ch(c->GetVerifyErrorClass());
130 std::string error_descriptor(ve_ch.GetDescriptor());
131 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700132 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800133 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700134 }
135}
136
Elliott Hughes0512f022012-03-15 22:10:52 -0700137static void WrapExceptionInInitializer() {
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700138 JNIEnv* env = Thread::Current()->GetJniEnv();
139
140 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
141 CHECK(cause.get() != NULL);
142
143 env->ExceptionClear();
144
145 // TODO: add java.lang.Error to JniConstants?
146 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
147 CHECK(error_class.get() != NULL);
148 if (env->IsInstanceOf(cause.get(), error_class.get())) {
149 // We only wrap non-Error exceptions; an Error can just be used as-is.
150 env->Throw(cause.get());
151 return;
152 }
153
154 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
155 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
156 CHECK(eiie_class.get() != NULL);
157
158 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
159 CHECK(mid != NULL);
160
161 ScopedLocalRef<jthrowable> eiie(env,
162 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
163 env->Throw(eiie.get());
164}
165
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800166static size_t Hash(const char* s) {
167 // This is the java.lang.String hashcode for convenience, not interoperability.
168 size_t hash = 0;
169 for (; *s != '\0'; ++s) {
170 hash = hash * 31 + *s;
171 }
172 return hash;
173}
174
Elliott Hughes418d20f2011-09-22 14:00:39 -0700175const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700176 "Ljava/lang/Class;",
177 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700178 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700179 "[Ljava/lang/Object;",
180 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700181 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700182 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700183 "Ljava/lang/reflect/Field;",
184 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700185 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700186 "Ljava/lang/ClassLoader;",
187 "Ldalvik/system/BaseDexClassLoader;",
188 "Ldalvik/system/PathClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800189 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800190 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700191 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700192 "Z",
193 "B",
194 "C",
195 "D",
196 "F",
197 "I",
198 "J",
199 "S",
200 "V",
201 "[Z",
202 "[B",
203 "[C",
204 "[D",
205 "[F",
206 "[I",
207 "[J",
208 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700209 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700210};
211
Brian Carlstroma004aa92012-02-08 18:05:09 -0800212ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
213 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700214 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800215 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800216 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700217 return class_linker.release();
218}
219
Brian Carlstroma004aa92012-02-08 18:05:09 -0800220ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800221 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700222 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700223 return class_linker.release();
224}
225
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800226ClassLinker::ClassLinker(InternTable* intern_table)
227 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700228 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700229 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700230 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700231 init_done_(false),
232 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700233 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700234}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700235
Brian Carlstroma004aa92012-02-08 18:05:09 -0800236void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
237 VLOG(startup) << "ClassLinker::Init";
238 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700239
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700240 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700241
Elliott Hughes30646832011-10-13 16:59:46 -0700242 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800243 Heap* heap = Runtime::Current()->GetHeap();
244 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700245 CHECK(java_lang_Class.get() != NULL);
246 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700247 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700248 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700249
Elliott Hughes418d20f2011-09-22 14:00:39 -0700250 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700251 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
252 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700253
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700254 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700255 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
256 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700257 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700258 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700259 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700260
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700261 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700262 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
263 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700264
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700265 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700266 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700267
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700268 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700269 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
270 char_array_class->SetComponentType(char_class.get());
271 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700272
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700274 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
275 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700276 java_lang_String->SetObjectSize(sizeof(String));
277 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400278
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700279 // Create storage for root classes, save away our work so far (requires
280 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700281 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700282 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700283 SetClassRoot(kJavaLangClass, java_lang_Class.get());
284 SetClassRoot(kJavaLangObject, java_lang_Object.get());
285 SetClassRoot(kClassArrayClass, class_array_class.get());
286 SetClassRoot(kObjectArrayClass, object_array_class.get());
287 SetClassRoot(kCharArrayClass, char_array_class.get());
288 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700289
290 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700291 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
292 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
293 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
294 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
295 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
296 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
297 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
298 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700300 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700301 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302
303 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700304 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700306 IntArray::SetArrayClass(int_array_class.get());
307 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700308
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700309 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700310
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700311 // setup boot_class_path_ and register class_path now that we can
312 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800313 CHECK_NE(0U, boot_class_path.size());
314 for (size_t i = 0; i != boot_class_path.size(); ++i) {
315 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700316 CHECK(dex_file != NULL);
317 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700318 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700319
Elliott Hughes80609252011-09-23 17:24:51 -0700320 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700322 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700323 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700325 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
326
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700327 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
328 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700329 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700331 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700333
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700334 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700337 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700338 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700339 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700340
341 // now we can use FindSystemClass
342
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700343 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700344 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700345 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700346
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700347 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348 java_lang_Object->SetStatus(Class::kStatusNotReady);
349 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700350 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
352 java_lang_String->SetStatus(Class::kStatusNotReady);
353 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700354 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700355 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
356
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700357 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
359 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
360
361 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
362 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
363
364 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700365 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700366
367 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
368 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
369
370 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700371 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700372
373 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
374 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
375
376 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
377 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
378
379 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
380 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
381
Elliott Hughes418d20f2011-09-22 14:00:39 -0700382 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700383 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700384
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700385 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700386 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700387
388 // Setup the single, global copies of "interfaces" and "iftable"
389 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
390 CHECK(java_lang_Cloneable != NULL);
391 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
392 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700393 // We assume that Cloneable/Serializable don't have superinterfaces --
394 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700395 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800396 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
397 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700398
Elliott Hughes418d20f2011-09-22 14:00:39 -0700399 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800400 ClassHelper kh(class_array_class.get(), this);
401 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
402 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
403 kh.ChangeClass(object_array_class.get());
404 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
405 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700406 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700407 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700408 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700409 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700410
Elliott Hughes80609252011-09-23 17:24:51 -0700411 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
412 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700413 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700414
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700415 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700416 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700417 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700418
419 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700420 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700421 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700422
Ian Rogers466bb252011-10-14 03:29:56 -0700423 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
424
425 // Create java.lang.reflect.Proxy root
426 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
427 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
428
Brian Carlstrom1f870082011-08-23 16:02:11 -0700429 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700430 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
431 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700432 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700433 java_lang_ref_FinalizerReference->SetAccessFlags(
434 java_lang_ref_FinalizerReference->GetAccessFlags() |
435 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700436 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 java_lang_ref_PhantomReference->SetAccessFlags(
438 java_lang_ref_PhantomReference->GetAccessFlags() |
439 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700440 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700441 java_lang_ref_SoftReference->SetAccessFlags(
442 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700443 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700444 java_lang_ref_WeakReference->SetAccessFlags(
445 java_lang_ref_WeakReference->GetAccessFlags() |
446 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700447
Brian Carlstromaded5f72011-10-07 17:15:04 -0700448 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700449 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700450 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700451 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
452
453 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
454 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
455 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
456
457 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
458 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
459 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
460 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
461
jeffhao8cd6dda2012-02-22 10:15:34 -0800462 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
463 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800464 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
465 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800466 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700467 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
468 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700469 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700470
Brian Carlstroma663ea52011-08-19 23:33:41 -0700471 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700472
Brian Carlstroma004aa92012-02-08 18:05:09 -0800473 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700474}
475
476void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800477 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700478
479 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700480 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700481 // as the types of the field can't be resolved prior to the runtime being
482 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700483 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700484 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700485 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
486
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800487 Heap* heap = Runtime::Current()->GetHeap();
488 heap->SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700489
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800490 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
491
Brian Carlstrom16192862011-09-12 17:50:06 -0700492 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800493 FieldHelper fh(pendingNext, this);
494 CHECK_STREQ(fh.GetName(), "pendingNext");
495 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
496 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700497
498 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800499 fh.ChangeField(queue);
500 CHECK_STREQ(fh.GetName(), "queue");
501 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
502 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700503
504 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800505 fh.ChangeField(queueNext);
506 CHECK_STREQ(fh.GetName(), "queueNext");
507 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
508 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700509
510 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800511 fh.ChangeField(referent);
512 CHECK_STREQ(fh.GetName(), "referent");
513 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
514 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700515
516 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800517 fh.ChangeField(zombie);
518 CHECK_STREQ(fh.GetName(), "zombie");
519 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
520 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700521
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800522 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700523 queue->GetOffset(),
524 queueNext->GetOffset(),
525 pendingNext->GetOffset(),
526 zombie->GetOffset());
527
Brian Carlstroma663ea52011-08-19 23:33:41 -0700528 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700529 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700530 ClassRoot class_root = static_cast<ClassRoot>(i);
531 Class* klass = GetClassRoot(class_root);
532 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700533 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700534 // note SetClassRoot does additional validation.
535 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700536 }
537
Elliott Hughes92f14b22011-10-06 12:29:54 -0700538 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700539
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700540 // disable the slow paths in FindClass and CreatePrimitiveClass now
541 // that Object, Class, and Object[] are setup
542 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700543
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800544 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700545}
546
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700547void ClassLinker::RunRootClinits() {
548 Thread* self = Thread::Current();
549 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
550 Class* c = GetClassRoot(ClassRoot(i));
551 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700552 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700553 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700554 }
555 }
556}
557
Brian Carlstromd601af82012-01-06 10:15:19 -0800558bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
559 int oat_fd,
560 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800561 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700562 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800563 const char* dex2oat = dex2oat_string.c_str();
564
Brian Carlstroma004aa92012-02-08 18:05:09 -0800565 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800566
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800567 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800568 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700569 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800570 const char* boot_image_option = boot_image_option_string.c_str();
571
572 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800573 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800574 const char* dex_file_option = dex_file_option_string.c_str();
575
Brian Carlstromd601af82012-01-06 10:15:19 -0800576 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800577 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800578 const char* oat_fd_option = oat_fd_option_string.c_str();
579
Brian Carlstroma004aa92012-02-08 18:05:09 -0800580 std::string oat_location_option_string("--oat-location=");
581 oat_location_option_string += oat_cache_filename;
582 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800583
jeffhao262bf462011-10-20 18:36:32 -0700584 // fork and exec dex2oat
585 pid_t pid = fork();
586 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800587 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800588
589 // change process groups, so we don't get reaped by ProcessManager
590 setpgid(0, 0);
591
jeffhao10037c82012-01-23 15:06:23 -0800592 VLOG(class_linker) << dex2oat
593 << " --runtime-arg -Xms64m"
594 << " --runtime-arg -Xmx64m"
595 << " --runtime-arg -classpath"
596 << " --runtime-arg " << class_path
597 << " " << boot_image_option
598 << " " << dex_file_option
599 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800600 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800601
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800602 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700603 "--runtime-arg", "-Xms64m",
604 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500605 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800606 "--runtime-arg", class_path,
607 boot_image_option,
608 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800609 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800610 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700611 NULL);
612
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800613 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800614 return false;
jeffhao262bf462011-10-20 18:36:32 -0700615 } else {
616 // wait for dex2oat to finish
617 int status;
618 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
619 if (got_pid != pid) {
620 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800621 return false;
jeffhao262bf462011-10-20 18:36:32 -0700622 }
623 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800624 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
625 return false;
jeffhao262bf462011-10-20 18:36:32 -0700626 }
627 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800628 return true;
jeffhao262bf462011-10-20 18:36:32 -0700629}
630
Brian Carlstrom866c8622012-01-06 16:35:13 -0800631void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
632 MutexLock mu(dex_lock_);
633 RegisterOatFileLocked(oat_file);
634}
635
636void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
637 dex_lock_.AssertHeld();
638 oat_files_.push_back(&oat_file);
639}
640
Ian Rogers30fab402012-01-23 15:43:46 -0800641OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700642 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700643 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700644 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800645 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
646 // check the down cast
647 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700648 std::string oat_filename;
649 oat_filename += runtime->GetHostPrefix();
650 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800651 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
652 image_header.GetOatBegin(),
653 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800654 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700655 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700656 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700657 return NULL;
658 }
659 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
660 uint32_t image_oat_checksum = image_header.GetOatChecksum();
661 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800662 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700663 << " to expected oat checksum " << std::hex << oat_checksum
664 << " in image";
665 return NULL;
666 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800667 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800668 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700669 return oat_file;
670}
671
Brian Carlstromae826982011-11-09 01:33:42 -0800672const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800673 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800674}
675
Brian Carlstroma004aa92012-02-08 18:05:09 -0800676const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800677 for (size_t i = 0; i < oat_files_.size(); i++) {
678 const OatFile* oat_file = oat_files_[i];
679 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800680 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800681 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800682 return oat_file;
683 }
684 }
685 return NULL;
686}
687
Brian Carlstromd601af82012-01-06 10:15:19 -0800688class LockedFd {
689 public:
690 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
691 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
692 if (fd == -1) {
693 PLOG(ERROR) << "Failed to open file '" << name << "'";
694 return NULL;
695 }
696 fchmod(fd, mode);
697
698 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
699 // try to lock non-blocking so we can log if we need may need to block
700 int result = flock(fd, LOCK_EX | LOCK_NB);
701 if (result == -1) {
702 LOG(WARNING) << "sleeping while locking file " << name;
703 // retry blocking
704 result = flock(fd, LOCK_EX);
705 }
706 if (result == -1) {
707 PLOG(ERROR) << "Failed to lock file '" << name << "'";
708 close(fd);
709 return NULL;
710 }
711 return new LockedFd(fd);
712 }
713
714 int GetFd() const {
715 return fd_;
716 }
717
718 ~LockedFd() {
719 if (fd_ != -1) {
720 int result = flock(fd_, LOCK_UN);
721 if (result == -1) {
722 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
723 }
724 close(fd_);
725 }
726 }
727
728 private:
729 explicit LockedFd(int fd) : fd_(fd) {}
730
731 int fd_;
732};
733
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800734static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
735 uint32_t dex_location_checksum,
736 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800737 UniquePtr<OatFile> oat_file(
738 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800739 if (oat_file.get() == NULL) {
740 return NULL;
741 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700742 Runtime* runtime = Runtime::Current();
743 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
744 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
745 return NULL;
746 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800747 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
748 if (oat_dex_file == NULL) {
749 return NULL;
750 }
751 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
752 return NULL;
753 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700754 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800755 return oat_dex_file->OpenDexFile();
756}
757
758const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
759 const std::string& oat_location) {
760 uint32_t dex_location_checksum;
761 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
762 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
763 return NULL;
764 }
765
766 // Check if we already have an up-to-date output file
767 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
768 dex_location_checksum,
769 oat_location);
770 if (dex_file != NULL) {
771 return dex_file;
772 }
773
774 // Generate the output oat file for the dex file
775 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
776 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
777 if (file.get() == NULL) {
778 LOG(ERROR) << "Failed to create oat file: " << oat_location;
779 return NULL;
780 }
781 if (!class_linker->GenerateOatFile(dex_location, file->Fd(), oat_location)) {
782 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
783 return NULL;
784 }
785 // Open the oat from file descriptor we passed to GenerateOatFile
786 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
787 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
788 return NULL;
789 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800790 const OatFile* oat_file =
791 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800792 if (oat_file == NULL) {
793 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
794 return NULL;
795 }
796 class_linker->RegisterOatFile(*oat_file);
797 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
798 if (oat_dex_file == NULL) {
799 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
800 return NULL;
801 }
802 return oat_dex_file->OpenDexFile();
803}
804
805const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700806 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800807
Brian Carlstroma004aa92012-02-08 18:05:09 -0800808 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800809 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800810 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800811 }
812
Brian Carlstroma004aa92012-02-08 18:05:09 -0800813 // Look for an existing file next to dex, assuming its up-to-date if found
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800814 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800815 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800816 if (oat_file != NULL) {
817 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800818 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
819 return oat_dex_file->OpenDexFile();
820 }
821 // Look for an existing file in the art-cache, validating the result if found
822 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
823 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
824 oat_file = FindOatFileFromOatLocation(cache_location);
825 if (oat_file != NULL) {
826 uint32_t dex_location_checksum;
827 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
828 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
829 return NULL;
830 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700831
832 Runtime* runtime = Runtime::Current();
833 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
834 uint32_t image_checksum = image_header.GetOatChecksum();
835 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
836
Brian Carlstroma004aa92012-02-08 18:05:09 -0800837 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
838 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700839 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
840
841 if (image_check && dex_check) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800842 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700843 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700844 if (!image_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700845 std::string image_file(image_header.GetImageRoot(
846 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
847 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
848 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
849 << ") mismatch with " << image_file
850 << " (" << std::hex << image_checksum << ")--- regenerating";
851 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700852 if (!dex_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700853 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
854 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
855 << ") mismatch with " << dex_location
856 << " (" << std::hex << dex_location_checksum << ")--- regenerating";
857 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800858 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700859 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800860 }
jeffhao262bf462011-10-20 18:36:32 -0700861 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800862 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
863
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800864 // Try to generate oat file if it wasn't found or was obsolete.
865 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
866 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700867}
868
Brian Carlstromae826982011-11-09 01:33:42 -0800869const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700870 for (size_t i = 0; i < oat_files_.size(); i++) {
871 const OatFile* oat_file = oat_files_[i];
872 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800873 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700874 return oat_file;
875 }
876 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700877 return NULL;
878}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700879
Brian Carlstromae826982011-11-09 01:33:42 -0800880const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800881 MutexLock mu(dex_lock_);
882 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
883 if (oat_file != NULL) {
884 return oat_file;
885 }
886
Logan Chien0c717dd2012-03-28 18:31:07 +0800887 oat_file = OatFile::Open(oat_location, oat_location, NULL,
888 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700889 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800890 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700891 }
Brian Carlstromae826982011-11-09 01:33:42 -0800892 CHECK(oat_file != NULL) << oat_location;
jeffhaof6174e82012-01-31 16:14:17 -0800893 RegisterOatFileLocked(*oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700894 return oat_file;
895}
896
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700897void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800898 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700899 CHECK(!init_done_);
900
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800901 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700902 ImageSpace* space = heap->GetImageSpace();
903 OatFile* oat_file = OpenOat(space);
904 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700905 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
906 CHECK(oat_file->GetOatHeader().GetImageFileLocation() == "");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700907 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
908 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700909
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700910 // Special case of setting up the String class early so that we can test arbitrary objects
911 // as being Strings or not
912 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
913 ->AsObjectArray<Class>()->Get(kJavaLangString);
914 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800915
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700916 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
917 static_cast<uint32_t>(dex_caches->GetLength()));
918 for (int i = 0; i < dex_caches->GetLength(); i++) {
919 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
920 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
921 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
922 const DexFile* dex_file = oat_dex_file->OpenDexFile();
923 if (dex_file == NULL) {
924 LOG(FATAL) << "Failed to open dex file " << dex_file_location
925 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700926 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700927
928 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
929
930 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700931 }
932
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800933 HeapBitmap* heap_bitmap = heap->GetLiveBits();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700934 DCHECK(heap_bitmap != NULL);
935
Brian Carlstroma663ea52011-08-19 23:33:41 -0700936 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700937 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700938
939 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800940 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700941 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700942 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700943
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800944 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700945 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
946 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800947 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700948 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700949 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700950 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
951 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
952 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
953 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
954 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
955 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
956 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
957 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700958 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Ian Rogers5167c972012-02-03 10:41:20 -0800959 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700960 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700961
962 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700963
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800964 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700965}
966
Brian Carlstrom78128a62011-09-15 17:21:19 -0700967void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700968 DCHECK(obj != NULL);
969 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700970 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700971
Elliott Hughesdbb40792011-11-18 17:05:22 -0800972 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700973 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700974 return;
975 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700976 if (obj->IsClass()) {
977 // restore class to ClassLinker::classes_ table
978 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800979 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800980 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
981 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700982 return;
983 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700984}
985
986// Keep in sync with InitCallback. Anything we visit, we need to
987// reinit references to when reinitializing a ClassLinker from a
988// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700989void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
990 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700991
992 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700993 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700994 }
995
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700996 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700997 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700998 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700999 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -07001000 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001001 }
Ian Rogers5d76c432011-10-31 21:42:49 -07001002 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001003 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001004
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001005 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001006}
1007
Elliott Hughesa2155262011-11-16 16:26:58 -08001008void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
1009 MutexLock mu(classes_lock_);
1010 typedef Table::const_iterator It; // TODO: C++0x auto
1011 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
1012 if (!visitor(it->second, arg)) {
1013 return;
1014 }
1015 }
1016 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
1017 if (!visitor(it->second, arg)) {
1018 return;
1019 }
1020 }
1021}
1022
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001023ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001024 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001025 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001026 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001027 BooleanArray::ResetArrayClass();
1028 ByteArray::ResetArrayClass();
1029 CharArray::ResetArrayClass();
1030 DoubleArray::ResetArrayClass();
1031 FloatArray::ResetArrayClass();
1032 IntArray::ResetArrayClass();
1033 LongArray::ResetArrayClass();
1034 ShortArray::ResetArrayClass();
1035 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001036 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001037 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001038 STLDeleteElements(&boot_class_path_);
1039 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001040}
1041
1042DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001043 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1044 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001045 return NULL;
1046 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001047 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1048 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001049 return NULL;
1050 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001051 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1052 if (strings.get() == NULL) {
1053 return NULL;
1054 }
1055 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1056 if (types.get() == NULL) {
1057 return NULL;
1058 }
1059 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1060 if (methods.get() == NULL) {
1061 return NULL;
1062 }
1063 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1064 if (fields.get() == NULL) {
1065 return NULL;
1066 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001067 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1068 if (initialized_static_storage.get() == NULL) {
1069 return NULL;
1070 }
1071
1072 dex_cache->Init(location.get(),
1073 strings.get(),
1074 types.get(),
1075 methods.get(),
1076 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001077 initialized_static_storage.get());
1078 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001079}
1080
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001081InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1082 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001083 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1084 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001085 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001086 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001087}
1088
Brian Carlstrom4873d462011-08-21 15:23:39 -07001089Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1090 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001091 Heap* heap = Runtime::Current()->GetHeap();
1092 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001093 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001094 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001095 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001096}
1097
Brian Carlstrom4873d462011-08-21 15:23:39 -07001098Class* ClassLinker::AllocClass(size_t class_size) {
1099 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001100}
1101
Jesse Wilson35baaab2011-08-10 16:18:03 -04001102Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001103 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001104}
1105
1106Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001107 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001108}
1109
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001110ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1111 return ObjectArray<StackTraceElement>::Alloc(
1112 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1113 length);
1114}
1115
Brian Carlstromaded5f72011-10-07 17:15:04 -07001116Class* EnsureResolved(Class* klass) {
1117 DCHECK(klass != NULL);
1118 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001119 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001120 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001121 ObjectLock lock(klass);
1122 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001123 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001124 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001125 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001126 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001127 return NULL;
1128 }
1129 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001130 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001131 lock.Wait();
1132 }
1133 }
1134 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001135 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001136 return NULL;
1137 }
1138 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001139 CHECK(klass->IsResolved()) << PrettyClass(klass);
1140 CHECK(!self->IsExceptionPending())
1141 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1142 return klass;
1143}
1144
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001145Class* ClassLinker::FindSystemClass(const char* descriptor) {
1146 return FindClass(descriptor, NULL);
1147}
1148
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001149Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001150 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001151 Thread* self = Thread::Current();
1152 DCHECK(self != NULL);
1153 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001154 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001155 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1156 // for primitive classes that aren't backed by dex files.
1157 return FindPrimitiveClass(descriptor[0]);
1158 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001159 // Find the class in the loaded classes table.
1160 Class* klass = LookupClass(descriptor, class_loader);
1161 if (klass != NULL) {
1162 return EnsureResolved(klass);
1163 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001164 // Class is not yet loaded.
1165 if (descriptor[0] == '[') {
1166 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001167
Jesse Wilson47daf872011-11-23 11:42:45 -05001168 } else if (class_loader == NULL) {
1169 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1170 if (pair.second != NULL) {
1171 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1172 }
1173
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001174 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001175 // first try the boot class path
1176 Class* system_class = FindSystemClass(descriptor);
1177 if (system_class != NULL) {
1178 return system_class;
1179 }
1180 CHECK(self->IsExceptionPending());
1181 self->ClearException();
1182
1183 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001184 const std::vector<const DexFile*>& class_path
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001185 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001186 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001187 if (pair.second != NULL) {
1188 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001189 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001190
1191 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001192 std::string class_name_string(DescriptorToDot(descriptor));
Elliott Hughes34e06962012-04-09 13:55:55 -07001193 ScopedThreadStateChange tsc(self, kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001194 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001195 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1196 CHECK(c.get() != NULL);
1197 // TODO: cache method?
1198 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1199 CHECK(mid != NULL);
1200 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1201 if (class_name_object.get() == NULL) {
1202 return NULL;
1203 }
1204 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Elliott Hughes9c750f92012-04-05 12:07:59 -07001205 CHECK(class_loader_object.get() != NULL);
Ian Rogers761bfa82012-01-11 10:14:05 -08001206 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1207 class_name_object.get()));
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001208 if (env->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001209 // If the ClassLoader threw, pass that exception up.
1210 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001211 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001212 // broken loader - throw NPE to be compatible with Dalvik
1213 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1214 class_name_string.c_str());
1215 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001216 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001217 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001218 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001219 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001220 }
1221
Elliott Hughes82914b62012-04-09 15:56:29 -07001222 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001223 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001224}
1225
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001226Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001227 const ClassLoader* class_loader,
1228 const DexFile& dex_file,
1229 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001230 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001231 // Load the class from the dex file.
1232 if (!init_done_) {
1233 // finish up init of hand crafted class_roots_
1234 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001235 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001236 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001237 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001238 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001239 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001240 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001241 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001242 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001243 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001244 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001245 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001246 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001247 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001248 }
1249 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001250 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001251 }
1252 klass->SetDexCache(FindDexCache(dex_file));
1253 LoadClass(dex_file, dex_class_def, klass, class_loader);
1254 // Check for a pending exception during load
1255 Thread* self = Thread::Current();
1256 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001257 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001258 return NULL;
1259 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001260 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001261 klass->SetClinitThreadId(self->GetTid());
1262 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001263 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1264 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001265 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001266 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001267 }
1268 // Finish loading (if necessary) by finding parents
1269 CHECK(!klass->IsLoaded());
1270 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1271 // Loading 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->IsLoaded());
1277 // Link the class (if necessary)
1278 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001279 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001280 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001281 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001282 lock.NotifyAll();
1283 return NULL;
1284 }
1285 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001286
1287 /*
1288 * We send CLASS_PREPARE events to the debugger from here. The
1289 * definition of "preparation" is creating the static fields for a
1290 * class and initializing them to the standard default values, but not
1291 * executing any code (that comes later, during "initialization").
1292 *
1293 * We did the static preparation in LinkClass.
1294 *
1295 * The class has been prepared and resolved but possibly not yet verified
1296 * at this point.
1297 */
1298 Dbg::PostClassPrepare(klass.get());
1299
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001300 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001301}
1302
Brian Carlstrom4873d462011-08-21 15:23:39 -07001303// Precomputes size that will be needed for Class, matching LinkStaticFields
1304size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1305 const DexFile::ClassDef& dex_class_def) {
1306 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001307 size_t num_ref = 0;
1308 size_t num_32 = 0;
1309 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001310 if (class_data != NULL) {
1311 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1312 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001313 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001314 char c = descriptor[0];
1315 if (c == 'L' || c == '[') {
1316 num_ref++;
1317 } else if (c == 'J' || c == 'D') {
1318 num_64++;
1319 } else {
1320 num_32++;
1321 }
1322 }
1323 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001324 // start with generic class data
1325 size_t size = sizeof(Class);
1326 // follow with reference fields which must be contiguous at start
1327 size += (num_ref * sizeof(uint32_t));
1328 // if there are 64-bit fields to add, make sure they are aligned
1329 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1330 if (num_32 != 0) {
1331 // use an available 32-bit field for padding
1332 num_32--;
1333 }
1334 size += sizeof(uint32_t); // either way, we are adding a word
1335 DCHECK_EQ(size, RoundUp(size, 8));
1336 }
1337 // tack on any 64-bit fields now that alignment is assured
1338 size += (num_64 * sizeof(uint64_t));
1339 // tack on any remaining 32-bit fields
1340 size += (num_32 * sizeof(uint32_t));
1341 return size;
1342}
1343
Ian Rogers19846512012-02-24 11:42:47 -08001344const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1345 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001346 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1347 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1348 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1349 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1350 uint32_t class_def_index;
1351 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1352 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1353 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1354 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1355 return oat_class;
1356}
1357
TDYa12785321912012-04-01 15:24:56 -07001358const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001359 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001360 // method for direct methods (or virtual methods made direct).
1361 Class* declaring_class = method->GetDeclaringClass();
1362 size_t oat_method_index;
1363 if (method->IsStatic() || method->IsDirect()) {
1364 // Simple case where the oat method index was stashed at load time.
1365 oat_method_index = method->GetMethodIndex();
1366 } else {
1367 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1368 // by search for its position in the declared virtual methods.
1369 oat_method_index = declaring_class->NumDirectMethods();
1370 size_t end = declaring_class->NumVirtualMethods();
1371 bool found = false;
1372 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001373 if (declaring_class->GetVirtualMethod(i) == method) {
1374 found = true;
1375 break;
1376 }
Ian Rogersf320b632012-03-13 18:47:47 -07001377 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001378 }
1379 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1380 }
1381 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001382 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001383 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001384 return oat_class->GetOatMethod(oat_method_index);
1385}
1386
1387// Special case to get oat code without overwriting a trampoline.
1388const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001389 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001390 return GetOatMethodFor(method).GetCode();
1391}
1392
1393void ClassLinker::LinkOatCodeFor(Method* method) {
1394 Class* declaring_class = method->GetDeclaringClass();
1395 ClassHelper kh(declaring_class);
1396 const OatFile* oat_file = FindOpenedOatFileForDexFile(kh.GetDexFile());
1397 if (oat_file != NULL) {
1398 // NOTE: We have to check the availability of OatFile first. Because
1399 // GetOatMethodFor(...) will try to find the OatFile and there's
1400 // an assert in GetOatMethodFor(...). Besides, due to the return
1401 // type of OatClass::GetOatMethod(...), we can't return a failure value
1402 // back.
1403
1404 // TODO: Remove this workaround.
1405 GetOatMethodFor(method).LinkMethodPointers(method);
1406 }
Ian Rogers19846512012-02-24 11:42:47 -08001407}
1408
1409void ClassLinker::FixupStaticTrampolines(Class* klass) {
1410 ClassHelper kh(klass);
1411 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1412 CHECK(dex_class_def != NULL);
1413 const DexFile& dex_file = kh.GetDexFile();
1414 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1415 if (class_data == NULL) {
1416 return; // no fields or methods - for example a marker interface
1417 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001418 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001419 // OAT file unavailable
1420 return;
1421 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001422 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1423 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001424 ClassDataItemIterator it(dex_file, class_data);
1425 // Skip fields
1426 while (it.HasNextStaticField()) {
1427 it.Next();
1428 }
1429 while (it.HasNextInstanceField()) {
1430 it.Next();
1431 }
1432 size_t method_index = 0;
1433 // Link the code of methods skipped by LinkCode
1434 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1435 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1436 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001437 if (Runtime::Current()->IsMethodTracingActive()) {
1438 Trace* tracer = Runtime::Current()->GetTracer();
1439 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1440 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1441 tracer->ResetSavedCode(method);
1442 method->SetCode(code);
1443 tracer->SaveAndUpdateCode(method);
1444 }
1445 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001446 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1447 CHECK(code != NULL);
1448 method->SetCode(code);
1449 }
1450 method_index++;
1451 }
1452}
1453
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001454void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001455 // Every kind of method should at least get an invoke stub from the oat_method.
1456 // non-abstract methods also get their code pointers.
1457 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001458 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001459
Ian Rogers19846512012-02-24 11:42:47 -08001460 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001461 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001462 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001463 return;
1464 }
Ian Rogers19846512012-02-24 11:42:47 -08001465
1466 if (method->IsStatic() && !method->IsConstructor()) {
1467 // For static methods excluding the class initializer, install the trampoline
1468 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001469 }
1470 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001471 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001472 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001473 }
1474
1475 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001476 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001477 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001478 }
1479}
1480
Brian Carlstromf615a612011-07-23 12:50:34 -07001481void ClassLinker::LoadClass(const DexFile& dex_file,
1482 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001483 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001484 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001485 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001486 CHECK(klass->GetDexCache() != NULL);
1487 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001488 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001489 CHECK(descriptor != NULL);
1490
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001491 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001492 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001493 // Make sure that none of our runtime-only flags are set.
1494 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001495 klass->SetAccessFlags(access_flags);
1496 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001497 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001498 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001499
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001500 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001501
Ian Rogers0571d352011-11-03 19:51:38 -07001502 // Load fields fields.
1503 const byte* class_data = dex_file.GetClassData(dex_class_def);
1504 if (class_data == NULL) {
1505 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001506 }
Ian Rogers0571d352011-11-03 19:51:38 -07001507 ClassDataItemIterator it(dex_file, class_data);
1508 if (it.NumStaticFields() != 0) {
1509 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1510 }
1511 if (it.NumInstanceFields() != 0) {
1512 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1513 }
1514 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1515 SirtRef<Field> sfield(AllocField());
1516 klass->SetStaticField(i, sfield.get());
1517 LoadField(dex_file, it, klass, sfield);
1518 }
1519 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1520 SirtRef<Field> ifield(AllocField());
1521 klass->SetInstanceField(i, ifield.get());
1522 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001523 }
1524
Brian Carlstromf5822582012-03-19 22:34:31 -07001525 UniquePtr<const OatFile::OatClass> oat_class;
1526 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1527 oat_class.reset(GetOatClass(dex_file, descriptor));
1528 }
Ian Rogers19846512012-02-24 11:42:47 -08001529
Ian Rogers0571d352011-11-03 19:51:38 -07001530 // Load methods.
1531 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001532 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001533 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001534 }
Ian Rogers0571d352011-11-03 19:51:38 -07001535 if (it.NumVirtualMethods() != 0) {
1536 // TODO: append direct methods to class object
1537 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001538 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001539 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001540 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1541 SirtRef<Method> method(AllocMethod());
1542 klass->SetDirectMethod(i, method.get());
1543 LoadMethod(dex_file, it, klass, method);
1544 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001545 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001546 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001547 method->SetMethodIndex(class_def_method_index);
1548 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001549 }
1550 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1551 SirtRef<Method> method(AllocMethod());
1552 klass->SetVirtualMethod(i, method.get());
1553 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001554 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001555 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001556 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001557 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001558 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001559 }
1560 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001561}
1562
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001563void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001564 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001565 uint32_t field_idx = it.GetMemberIndex();
1566 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001567 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001568 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001569}
1570
Ian Rogers0571d352011-11-03 19:51:38 -07001571void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1572 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001573 uint32_t dex_method_idx = it.GetMemberIndex();
1574 dst->SetDexMethodIndex(dex_method_idx);
1575 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001576 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001577
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001578
1579 StringPiece method_name(dex_file.GetMethodName(method_id));
1580 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001581 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1582 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001583
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001584 if (method_name == "finalize") {
1585 // Create the prototype for a signature of "()V"
1586 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1587 if (void_string_id != NULL) {
1588 const DexFile::TypeId* void_type_id =
1589 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1590 if (void_type_id != NULL) {
1591 std::vector<uint16_t> no_args;
1592 const DexFile::ProtoId* finalizer_proto =
1593 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1594 if (finalizer_proto != NULL) {
1595 // We have the prototype in the dex file
1596 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1597 klass->SetFinalizable();
1598 } else {
1599 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1600 // The Enum class declares a "final" finalize() method to prevent subclasses from
1601 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1602 // subclasses, so we exclude it here.
1603 // We also want to avoid setting the flag on Object, where we know that finalize() is
1604 // empty.
1605 if (klass_descriptor != "Ljava/lang/Object;" &&
1606 klass_descriptor != "Ljava/lang/Enum;") {
1607 klass->SetFinalizable();
1608 }
1609 }
1610 }
1611 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001612 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001613 }
Ian Rogers0571d352011-11-03 19:51:38 -07001614 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001615 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001616
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001617 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001618 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001619 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001620 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001621}
1622
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001623void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001624 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1625 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001626}
1627
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001628void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1629 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001630 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001631 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001632}
1633
Brian Carlstromaded5f72011-10-07 17:15:04 -07001634bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001635 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001636 for (size_t i = 0; i != dex_files_.size(); ++i) {
1637 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001638 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001639 }
1640 }
1641 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001642}
1643
Brian Carlstromaded5f72011-10-07 17:15:04 -07001644bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001645 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001646 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001647}
1648
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001649void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001650 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001651 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001652 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001653 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001654 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001655}
1656
Brian Carlstromaded5f72011-10-07 17:15:04 -07001657void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001658 {
1659 MutexLock mu(dex_lock_);
1660 if (IsDexFileRegisteredLocked(dex_file)) {
1661 return;
1662 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001663 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001664 // Don't alloc while holding the lock, since allocation may need to
1665 // suspend all threads and another thread may need the dex_lock_ to
1666 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001667 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001668 {
1669 MutexLock mu(dex_lock_);
1670 if (IsDexFileRegisteredLocked(dex_file)) {
1671 return;
1672 }
1673 RegisterDexFileLocked(dex_file, dex_cache);
1674 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001675}
1676
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001677void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001678 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001679 RegisterDexFileLocked(dex_file, dex_cache);
1680}
1681
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001682const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001683 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001684 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001685 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1686 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001687 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001688 }
1689 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001690 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001691 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001692}
1693
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001694DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001695 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001696 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001697 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001698 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001699 }
1700 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001701 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001702 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001703}
1704
Ian Rogers19846512012-02-24 11:42:47 -08001705void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1706 MutexLock mu(dex_lock_);
1707 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1708 dex_caches_[i]->Fixup(resolution_method);
1709 }
1710}
1711
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001712Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1713 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001714 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001715 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001716 CHECK(primitive_class != NULL);
1717 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001718 primitive_class->SetPrimitiveType(type);
1719 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001720 Class* existing = InsertClass(descriptor, primitive_class, false);
1721 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001722 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001723}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001724
Brian Carlstrombe977852011-07-19 14:54:54 -07001725// Create an array class (i.e. the class object for the array, not the
1726// array itself). "descriptor" looks like "[C" or "[[[[B" or
1727// "[Ljava/lang/String;".
1728//
1729// If "descriptor" refers to an array of primitives, look up the
1730// primitive type's internally-generated class object.
1731//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001732// "class_loader" is the class loader of the class that's referring to
1733// us. It's used to ensure that we're looking for the element type in
1734// the right context. It does NOT become the class loader for the
1735// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001736//
1737// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001738Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001739 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001740
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001741 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001742 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001743 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001744 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001745 return NULL;
1746 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001747
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001748 // See if the component type is already loaded. Array classes are
1749 // always associated with the class loader of their underlying
1750 // element type -- an array of Strings goes with the loader for
1751 // java/lang/String -- so we need to look for it there. (The
1752 // caller should have checked for the existence of the class
1753 // before calling here, but they did so with *their* class loader,
1754 // not the component type's loader.)
1755 //
1756 // If we find it, the caller adds "loader" to the class' initiating
1757 // loader list, which should prevent us from going through this again.
1758 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001759 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001760 // are the same, because our caller (FindClass) just did the
1761 // lookup. (Even if we get this wrong we still have correct behavior,
1762 // because we effectively do this lookup again when we add the new
1763 // class to the hash table --- necessary because of possible races with
1764 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001765 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001766 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001767 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001768 return new_class;
1769 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001770 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001771
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001772 // Fill out the fields in the Class.
1773 //
1774 // It is possible to execute some methods against arrays, because
1775 // all arrays are subclasses of java_lang_Object_, so we need to set
1776 // up a vtable. We can just point at the one in java_lang_Object_.
1777 //
1778 // Array classes are simple enough that we don't need to do a full
1779 // link step.
1780
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001781 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001782 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001783 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001784 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001785 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001786 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001787 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001788 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001789 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001790 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001791 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001792 }
1793 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001794 if (new_class.get() == NULL) {
1795 new_class.reset(AllocClass(sizeof(Class)));
1796 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001797 return NULL;
1798 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001799 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001800 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001801 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001802 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001803 new_class->SetSuperClass(java_lang_Object);
1804 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001805 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001806 new_class->SetClassLoader(component_type->GetClassLoader());
1807 new_class->SetStatus(Class::kStatusInitialized);
1808 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001809 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001810
1811
1812 // All arrays have java/lang/Cloneable and java/io/Serializable as
1813 // interfaces. We need to set that up here, so that stuff like
1814 // "instanceof" works right.
1815 //
1816 // Note: The GC could run during the call to FindSystemClass,
1817 // so we need to make sure the class object is GC-valid while we're in
1818 // there. Do this by clearing the interface list so the GC will just
1819 // think that the entries are null.
1820
1821
1822 // Use the single, global copies of "interfaces" and "iftable"
1823 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001824 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001825 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001826
1827 // Inherit access flags from the component type. Arrays can't be
1828 // used as a superclass or interface, so we want to add "final"
1829 // and remove "interface".
1830 //
1831 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001832 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001833 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001834 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1835 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001836
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001837 Class* existing = InsertClass(descriptor, new_class.get(), false);
1838 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001839 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001840 }
1841 // Another thread must have loaded the class after we
1842 // started but before we finished. Abandon what we've
1843 // done.
1844 //
1845 // (Yes, this happens.)
1846
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001847 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001848}
1849
1850Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001851 switch (Primitive::GetType(type)) {
1852 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001853 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001854 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001855 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001856 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001857 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001858 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001859 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001860 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001861 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001862 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001863 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001864 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001865 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001866 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001867 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001868 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001869 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001870 case Primitive::kPrimNot:
1871 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001872 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001873 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001874 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001875 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001876}
1877
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001878Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001879 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001880 DexCache* dex_cache = klass->GetDexCache();
1881 std::string source;
1882 if (dex_cache != NULL) {
1883 source += " from ";
1884 source += dex_cache->GetLocation()->ToModifiedUtf8();
1885 }
1886 LOG(INFO) << "Loaded class " << descriptor << source;
1887 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001888 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001889 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001890 Table& classes = image_class ? image_classes_ : classes_;
1891 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1892#ifndef NDEBUG
1893 // Check we don't have the class in the other table in error
1894 Table& other_classes = image_class ? classes_ : image_classes_;
1895 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1896#endif
1897 if (existing != NULL) {
1898 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001899 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001900 classes.insert(std::make_pair(hash, klass));
1901 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001902}
1903
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001904bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1905 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001906 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001907 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001908 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001909 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001910 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001911 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001912 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001913 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001914 classes_.erase(it);
1915 return true;
1916 }
1917 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001918 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001919 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001920 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001921 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001922 image_classes_.erase(it);
1923 return true;
1924 }
1925 }
1926 return false;
1927}
1928
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001929Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1930 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001931 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001932 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001933 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1934 if (klass != NULL) {
1935 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001936 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001937 return LookupClass(descriptor, class_loader, hash, image_classes_);
1938}
1939
1940Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1941 size_t hash, const Table& classes) {
1942 ClassHelper kh(NULL, this);
1943 typedef Table::const_iterator It; // TODO: C++0x auto
1944 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001945 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001946 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001947 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001948#ifndef NDEBUG
1949 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001950 Class* klass2 = it->second;
1951 kh.ChangeClass(klass2);
1952 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001953 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001954 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001955 }
1956#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001957 return klass;
1958 }
1959 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001960 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001961}
1962
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001963void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001964 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001965 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001966 MutexLock mu(classes_lock_);
1967 typedef Table::const_iterator It; // TODO: C++0x auto
1968 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001969 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001970 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001971 Class* klass = it->second;
1972 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001973 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001974 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001975 }
1976 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001977 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001978 Class* klass = it->second;
1979 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001980 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001981 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001982 }
1983 }
1984}
1985
TDYa1273db52852012-04-01 15:11:43 -07001986#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogersc20a83e2012-01-18 18:15:32 -08001987static void CheckMethodsHaveGcMaps(Class* klass) {
1988 if (!Runtime::Current()->IsStarted()) {
1989 return;
1990 }
1991 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1992 Method* method = klass->GetDirectMethod(i);
1993 if (!method->IsNative() && !method->IsAbstract()) {
1994 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1995 }
1996 }
1997 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1998 Method* method = klass->GetVirtualMethod(i);
1999 if (!method->IsNative() && !method->IsAbstract()) {
2000 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
2001 }
2002 }
2003}
2004#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002005static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08002006}
2007#endif
2008
jeffhao98eacac2011-09-14 16:11:53 -07002009void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002010 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08002011 ObjectLock lock(klass);
2012
jeffhao98eacac2011-09-14 16:11:53 -07002013 if (klass->IsVerified()) {
2014 return;
2015 }
2016
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002017 // The class might already be erroneous if we attempted to verify a subclass
2018 if (klass->IsErroneous()) {
2019 ThrowEarlierClassFailure(klass);
2020 return;
2021 }
2022
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002023 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07002024 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07002025
Ian Rogers1c5eb702012-02-01 09:18:34 -08002026 // Verify super class
2027 Class* super = klass->GetSuperClass();
2028 std::string error_msg;
2029 if (super != NULL) {
2030 // Acquire lock to prevent races on verifying the super class
2031 ObjectLock lock(super);
2032
2033 if (!super->IsVerified() && !super->IsErroneous()) {
2034 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2035 }
2036 if (!super->IsVerified()) {
2037 error_msg = "Rejecting class ";
2038 error_msg += PrettyDescriptor(klass);
2039 error_msg += " that attempts to sub-class erroneous class ";
2040 error_msg += PrettyDescriptor(super);
2041 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2042 Thread* self = Thread::Current();
2043 SirtRef<Throwable> cause(self->GetException());
2044 if (cause.get() != NULL) {
2045 self->ClearException();
2046 }
2047 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2048 if (cause.get() != NULL) {
2049 self->GetException()->SetCause(cause.get());
2050 }
2051 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2052 klass->SetStatus(Class::kStatusError);
2053 return;
2054 }
2055 }
2056
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002057 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002058 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002059 Class::Status oat_file_class_status(Class::kStatusNotReady);
2060 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
2061 bool verified = preverified || verifier::DexVerifier::VerifyClass(klass, error_msg);
2062 if (verified) {
2063 if (!preverified && oat_file_class_status == Class::kStatusError) {
2064 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2065 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2066 }
Ian Rogersc4762272012-02-01 15:55:55 -08002067 DCHECK(!Thread::Current()->IsExceptionPending());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002068 // Make sure all classes referenced by catch blocks are resolved
2069 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002070 klass->SetStatus(Class::kStatusVerified);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002071 // Sanity check that a verified class has GC maps on all methods
2072 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002073 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002074 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002075 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2076 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002077 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002078 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002079 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2080 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002081 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002082 }
jeffhao98eacac2011-09-14 16:11:53 -07002083}
2084
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002085bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2086 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002087 if (!Runtime::Current()->IsStarted()) {
2088 return false;
2089 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002090 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002091 return false;
2092 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002093 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2094 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002095 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002096 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002097 const char* descriptor = ClassHelper(klass).GetDescriptor();
2098 uint32_t class_def_index;
2099 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002100 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002101 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002102 CHECK(oat_class.get() != NULL)
2103 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002104 oat_file_class_status = oat_class->GetStatus();
2105 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002106 return true;
2107 }
jeffhao1ac29442012-03-26 11:37:32 -07002108 if (oat_file_class_status == Class::kStatusResolved) {
2109 // Compile time verification failed with a soft error. Compile time verification can fail
2110 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002111 // class ... {
2112 // Foo x;
2113 // .... () {
2114 // if (...) {
2115 // v1 gets assigned a type of resolved class Foo
2116 // } else {
2117 // v1 gets assigned a type of unresolved class Bar
2118 // }
2119 // iput x = v1
2120 // } }
2121 // when we merge v1 following the if-the-else it results in Conflict
2122 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2123 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2124 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2125 // at compile time).
2126 return false;
2127 }
jeffhao1ac29442012-03-26 11:37:32 -07002128 if (oat_file_class_status == Class::kStatusError) {
2129 // Compile time verification failed with a hard error. This is caused by invalid instructions
2130 // in the class. These errors are unrecoverable.
2131 return false;
2132 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002133 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002134 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2135 // not loading the class.
2136 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2137 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002138 return false;
2139 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002140 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002141 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2142
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002143 return false;
2144}
2145
2146void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2147 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2148 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2149 }
2150 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2151 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2152 }
2153}
2154
2155void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2156 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2157 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2158 if (code_item == NULL) {
2159 return; // native or abstract method
2160 }
2161 if (code_item->tries_size_ == 0) {
2162 return; // nothing to process
2163 }
2164 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2165 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2166 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2167 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2168 CatchHandlerIterator iterator(handlers_ptr);
2169 for (; iterator.HasNext(); iterator.Next()) {
2170 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2171 // unresolved exception types will be ignored by exception delivery
2172 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2173 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2174 if (exception_type == NULL) {
2175 DCHECK(Thread::Current()->IsExceptionPending());
2176 Thread::Current()->ClearException();
2177 }
2178 }
2179 }
2180 handlers_ptr = iterator.EndDataPointer();
2181 }
2182}
2183
Ian Rogersc2b44472011-12-14 21:17:17 -08002184static void CheckProxyConstructor(Method* constructor);
2185static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2186
Jesse Wilson95caa792011-10-12 18:14:17 -04002187Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002188 ClassLoader* loader, ObjectArray<Method>* methods,
2189 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002190 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002191 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002192 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002193 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002194 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002195 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002196 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002197 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002198 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002199 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002200
2201 klass->SetStatus(Class::kStatusIdx);
2202
2203 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2204
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002205 // Instance fields are inherited, but we add a couple of static fields...
2206 klass->SetSFields(AllocObjectArray<Field>(2));
2207 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2208 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2209 SirtRef<Field> interfaces_sfield(AllocField());
2210 klass->SetStaticField(0, interfaces_sfield.get());
2211 interfaces_sfield->SetDexFieldIndex(0);
2212 interfaces_sfield->SetDeclaringClass(klass.get());
2213 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2214 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2215 SirtRef<Field> throws_sfield(AllocField());
2216 klass->SetStaticField(1, throws_sfield.get());
2217 throws_sfield->SetDexFieldIndex(1);
2218 throws_sfield->SetDeclaringClass(klass.get());
2219 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002220
Ian Rogers466bb252011-10-14 03:29:56 -07002221 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002222 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002223 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002224
Ian Rogers466bb252011-10-14 03:29:56 -07002225 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002226 size_t num_virtual_methods = methods->GetLength();
2227 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2228 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002229 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002230 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002231 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002232
2233 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2234 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2235 DCHECK(!Thread::Current()->IsExceptionPending());
2236
2237 // Link the fields and virtual methods, creating vtable and iftables
2238 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002239 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002240 return NULL;
2241 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002242 interfaces_sfield->SetObject(NULL, interfaces);
2243 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002244 klass->SetStatus(Class::kStatusInitialized);
2245
2246 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002247 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002248 CHECK(klass->GetIFields() == NULL);
2249 CheckProxyConstructor(klass->GetDirectMethod(0));
2250 for (size_t i = 0; i < num_virtual_methods; ++i) {
2251 SirtRef<Method> prototype(methods->Get(i));
2252 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2253 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002254
2255 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2256 name->ToModifiedUtf8().c_str()));
2257 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2258
2259 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2260 name->ToModifiedUtf8().c_str()));
2261 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002262
2263 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002264 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002265 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2266 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002267 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002268}
2269
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002270std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2271 DCHECK(proxy_class->IsProxyClass());
2272 String* name = proxy_class->GetName();
2273 DCHECK(name != NULL);
2274 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2275}
2276
Ian Rogers16f93672012-02-14 12:29:06 -08002277Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2278 DCHECK(proxy_class->IsProxyClass());
2279 DCHECK(proxy_method->IsProxyMethod());
2280 // Locate the dex cache of the original interface/Object
2281 DexCache* dex_cache = NULL;
2282 {
2283 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2284 MutexLock mu(dex_lock_);
2285 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2286 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2287 dex_cache = dex_caches_[i];
2288 break;
2289 }
2290 }
2291 }
2292 CHECK(dex_cache != NULL);
2293 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2294 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2295 CHECK(resolved_method != NULL);
2296 return resolved_method;
2297}
2298
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002299
2300Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002301 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002302 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002303 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002304 Method* proxy_constructor = proxy_direct_methods->Get(2);
TDYa1275bb86012012-04-11 05:57:28 -07002305#if defined(ART_USE_LLVM_COMPILER)
2306 // Ensure link.
2307 // TODO: Remove this after fixing the link problem by in-place linking.
2308 art_fix_stub_from_code(proxy_constructor);
2309#endif
Ian Rogers466bb252011-10-14 03:29:56 -07002310 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2311 // code_ too)
2312 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2313 // Make this constructor public and fix the class to be our Proxy version
2314 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002315 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002316 return constructor;
2317}
2318
2319static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002320 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002321 MethodHelper mh(constructor);
2322 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002323 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002324 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002325}
2326
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002327Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2328 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2329 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002330 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2331 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002332 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002333 // as necessary
2334 Method* method = down_cast<Method*>(prototype->Clone());
2335
2336 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2337 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002338 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002339 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002340
Ian Rogers466bb252011-10-14 03:29:56 -07002341 // At runtime the method looks like a reference and argument saving method, clone the code
2342 // related parameters from this method.
2343 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2344 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2345 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2346 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002347#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002348 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002349#else
2350 method->SetCode(reinterpret_cast<const void*>(
2351 static_cast<uintptr_t>(compiler_llvm::special_stub::kProxyStub)));
2352#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002353
Ian Rogersc2b44472011-12-14 21:17:17 -08002354 return method;
2355}
Jesse Wilson95caa792011-10-12 18:14:17 -04002356
Ian Rogersc2b44472011-12-14 21:17:17 -08002357static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002358 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002359 CHECK(!prototype->IsFinal());
2360 CHECK(method->IsFinal());
2361 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002362
2363 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2364 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2365 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2366 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2367 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2368 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2369 method->GetDexCacheInitializedStaticStorage());
2370 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2371
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002372 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002373 MethodHelper mh2(prototype.get());
2374 CHECK_STREQ(mh.GetName(), mh2.GetName());
2375 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002376 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002377 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002378}
2379
Ian Rogers0045a292012-03-31 21:08:41 -07002380bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002381 CHECK(klass->IsResolved() || klass->IsErroneous())
2382 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002383
Carl Shapirob5573532011-07-12 18:22:59 -07002384 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002385
Brian Carlstrom25c33252011-09-18 15:58:35 -07002386 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002387 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002388 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002389 ObjectLock lock(klass);
2390
Brian Carlstromd1422f82011-09-28 11:37:09 -07002391 if (klass->GetStatus() == Class::kStatusInitialized) {
2392 return true;
2393 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002394
Brian Carlstromd1422f82011-09-28 11:37:09 -07002395 if (klass->IsErroneous()) {
2396 ThrowEarlierClassFailure(klass);
2397 return false;
2398 }
2399
2400 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002401 VerifyClass(klass);
2402 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002403 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002404 return false;
2405 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002406 }
2407
Brian Carlstrom25c33252011-09-18 15:58:35 -07002408 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2409 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002410 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002411 // don't bother going to kStatusInitializing. We return false so that
2412 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002413 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2414 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002415 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002416 }
2417
Brian Carlstromd1422f82011-09-28 11:37:09 -07002418 // If the class is kStatusInitializing, either this thread is
2419 // initializing higher up the stack or another thread has beat us
2420 // to initializing and we need to wait. Either way, this
2421 // invocation of InitializeClass will not be responsible for
2422 // running <clinit> and will return.
2423 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002424 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002425 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002426 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002427 return true;
2428 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002429 // No. That's fine. Wait for another thread to finish initializing.
2430 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002431 }
2432
2433 if (!ValidateSuperClassDescriptors(klass)) {
2434 klass->SetStatus(Class::kStatusError);
2435 return false;
2436 }
2437
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002438 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002439
Elliott Hughesdcc24742011-09-07 14:02:44 -07002440 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002441 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002442 }
2443
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002444 uint64_t t0 = NanoTime();
2445
Ian Rogers0045a292012-03-31 21:08:41 -07002446 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002447 // Super class initialization failed, this can be because we can't run
2448 // super-class class initializers in which case we'll be verified.
2449 // Otherwise this class is erroneous.
2450 if (!can_run_clinit) {
2451 CHECK(klass->IsVerified());
2452 } else {
2453 CHECK(klass->IsErroneous());
2454 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002455 return false;
2456 }
2457
Ian Rogers0045a292012-03-31 21:08:41 -07002458 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002459
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002460 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002461 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002462 }
2463
Ian Rogers19846512012-02-24 11:42:47 -08002464 FixupStaticTrampolines(klass);
2465
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002466 uint64_t t1 = NanoTime();
2467
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002468 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002469 {
2470 ObjectLock lock(klass);
2471
2472 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002473 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002474 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002475 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002476 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002477 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2478 RuntimeStats* thread_stats = self->GetStats();
2479 ++global_stats->class_init_count;
2480 ++thread_stats->class_init_count;
2481 global_stats->class_init_time_ns += (t1 - t0);
2482 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002483 // Set the class as initialized except if we can't initialize static fields and static field
2484 // initialization is necessary.
2485 if (!can_init_statics && has_static_field_initializers) {
2486 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2487 success = false;
2488 } else {
2489 klass->SetStatus(Class::kStatusInitialized);
2490 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002491 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002492 ClassHelper kh(klass);
2493 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002494 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002495 }
2496 lock.NotifyAll();
2497 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002498 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002499}
2500
Brian Carlstromd1422f82011-09-28 11:37:09 -07002501bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2502 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002503 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002504 lock.Wait();
2505
2506 // When we wake up, repeat the test for init-in-progress. If
2507 // there's an exception pending (only possible if
2508 // "interruptShouldThrow" was set), bail out.
2509 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002510 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002511 klass->SetStatus(Class::kStatusError);
2512 return false;
2513 }
2514 // Spurious wakeup? Go back to waiting.
2515 if (klass->GetStatus() == Class::kStatusInitializing) {
2516 continue;
2517 }
2518 if (klass->IsErroneous()) {
2519 // The caller wants an exception, but it was thrown in a
2520 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002521 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002522 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002523 return false;
2524 }
2525 if (klass->IsInitialized()) {
2526 return true;
2527 }
2528 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2529 }
2530 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2531}
2532
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002533bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2534 if (klass->IsInterface()) {
2535 return true;
2536 }
2537 // begin with the methods local to the superclass
2538 if (klass->HasSuperClass() &&
2539 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2540 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002541 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2542 const Method* method = klass->GetVTable()->Get(i);
2543 if (method != super->GetVTable()->Get(i) &&
2544 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002545 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2546 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2547 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002548 return false;
2549 }
2550 }
2551 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002552 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2553 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2554 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002555 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2556 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002557 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002558 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2559 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002560 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2561 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2562 PrettyMethod(method).c_str(),
2563 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002564 return false;
2565 }
2566 }
2567 }
2568 }
2569 return true;
2570}
2571
Ian Rogers595799e2012-01-11 17:32:51 -08002572// Returns true if classes referenced by the signature of the method are the
2573// same classes in klass1 as they are in klass2.
2574bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2575 const Class* klass1,
2576 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002577 if (klass1 == klass2) {
2578 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002579 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002580 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002581 const DexFile::ProtoId& proto_id =
2582 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002583 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2584 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002585 if (descriptor == NULL) {
2586 break;
2587 }
2588 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2589 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002590 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002591 return false;
2592 }
2593 }
2594 }
2595 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002596 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002597 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002598 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002599 return false;
2600 }
2601 }
2602 return true;
2603}
2604
Ian Rogers595799e2012-01-11 17:32:51 -08002605// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2606bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2607 const Class* klass1,
2608 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002609 CHECK(descriptor != NULL);
2610 CHECK(klass1 != NULL);
2611 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002612 if (klass1 == klass2) {
2613 return true;
2614 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002615 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002616 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002617 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002618 }
Ian Rogers595799e2012-01-11 17:32:51 -08002619 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2620 if (found2 == NULL) {
2621 Thread::Current()->ClearException();
2622 }
2623 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002624}
2625
Ian Rogers0045a292012-03-31 21:08:41 -07002626bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002627 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002628 if (!klass->IsInterface() && klass->HasSuperClass()) {
2629 Class* super_class = klass->GetSuperClass();
2630 if (super_class->GetStatus() != Class::kStatusInitialized) {
2631 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002632 Thread* self = Thread::Current();
2633 klass->MonitorEnter(self);
Ian Rogers0045a292012-03-31 21:08:41 -07002634 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Elliott Hughes5f791332011-09-15 17:45:30 -07002635 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002636 // TODO: check for a pending exception
2637 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002638 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002639 // Don't set status to error when we can't run <clinit>.
2640 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2641 klass->SetStatus(Class::kStatusVerified);
2642 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002643 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002644 klass->SetStatus(Class::kStatusError);
2645 klass->NotifyAll();
2646 return false;
2647 }
2648 }
2649 }
2650 return true;
2651}
2652
Ian Rogers0045a292012-03-31 21:08:41 -07002653bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002654 CHECK(c != NULL);
2655 if (c->IsInitialized()) {
2656 return true;
2657 }
2658
Elliott Hughes5f791332011-09-15 17:45:30 -07002659 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002660 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002661 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002662 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002663 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002664 }
2665 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002666}
2667
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002668void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002669 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002670 const ClassLoader* cl = c->GetClassLoader();
2671 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002672 ClassDataItemIterator it(dex_file, class_data);
2673 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2674 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002675 }
2676}
2677
Ian Rogers0045a292012-03-31 21:08:41 -07002678bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002679 size_t num_static_fields = klass->NumStaticFields();
2680 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002681 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002682 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002683 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002684 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002685 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002686 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002687 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002688 ClassHelper kh(klass);
2689 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002690 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002691 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002692 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002693
Ian Rogers0571d352011-11-03 19:51:38 -07002694 if (it.HasNext()) {
2695 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2696 std::map<uint32_t, Field*> field_map;
2697 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2698 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2699 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002700 }
Ian Rogers0045a292012-03-31 21:08:41 -07002701 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002702 }
Ian Rogers0045a292012-03-31 21:08:41 -07002703 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002704}
2705
Ian Rogersc2b44472011-12-14 21:17:17 -08002706bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002707 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002708 if (!LinkSuperClass(klass)) {
2709 return false;
2710 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002711 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002712 return false;
2713 }
2714 if (!LinkInstanceFields(klass)) {
2715 return false;
2716 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002717 if (!LinkStaticFields(klass)) {
2718 return false;
2719 }
2720 CreateReferenceInstanceOffsets(klass);
2721 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002722 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2723 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002724 return true;
2725}
2726
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002727bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002728 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002729 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2730 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002731 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002732 uint16_t super_class_idx = class_def->superclass_idx_;
2733 if (super_class_idx != DexFile::kDexNoIndex16) {
2734 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002735 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002736 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002737 return false;
2738 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002739 // Verify
2740 if (!klass->CanAccess(super_class)) {
2741 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2742 "Class %s extended by class %s is inaccessible",
2743 PrettyDescriptor(super_class).c_str(),
2744 PrettyDescriptor(klass.get()).c_str());
2745 return false;
2746 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002747 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002748 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002749 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2750 if (interfaces != NULL) {
2751 for (size_t i = 0; i < interfaces->Size(); i++) {
2752 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2753 Class* interface = ResolveType(dex_file, idx, klass.get());
2754 if (interface == NULL) {
2755 DCHECK(Thread::Current()->IsExceptionPending());
2756 return false;
2757 }
2758 // Verify
2759 if (!klass->CanAccess(interface)) {
2760 // TODO: the RI seemed to ignore this in my testing.
2761 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2762 "Interface %s implemented by class %s is inaccessible",
2763 PrettyDescriptor(interface).c_str(),
2764 PrettyDescriptor(klass.get()).c_str());
2765 return false;
2766 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002767 }
2768 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002769 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002770 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002771 return true;
2772}
2773
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002774bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002775 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002776 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002777 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002778 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002779 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002780 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002781 return false;
2782 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002783 return true;
2784 }
2785 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002786 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002787 return false;
2788 }
2789 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002790 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002791 Thread* self = Thread::Current();
2792 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002793 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002794 PrettyDescriptor(super).c_str(),
2795 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002796 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002797 return false;
2798 }
2799 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002800 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002801 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002802 PrettyDescriptor(super).c_str(),
2803 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002804 return false;
2805 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002806
2807 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2808 if (super->IsFinalizable()) {
2809 klass->SetFinalizable();
2810 }
2811
Elliott Hughes2da50362011-10-10 16:57:08 -07002812 // Inherit reference flags (if any) from the superclass.
2813 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2814 if (reference_flags != 0) {
2815 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2816 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002817 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002818 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002819 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002820 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002821 return false;
2822 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002823
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002824#ifndef NDEBUG
2825 // Ensure super classes are fully resolved prior to resolving fields..
2826 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002827 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002828 super = super->GetSuperClass();
2829 }
2830#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002831 return true;
2832}
2833
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002834// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002835bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002836 if (klass->IsInterface()) {
2837 // No vtable.
2838 size_t count = klass->NumVirtualMethods();
2839 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002840 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002841 return false;
2842 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002843 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002844 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002845 }
jeffhaobdb76512011-09-07 11:43:16 -07002846 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002847 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002848 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002849 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002850 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002851 }
2852 return true;
2853}
2854
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002855bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002856 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002857 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2858 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002859 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002860 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002861 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002862 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002863 MethodHelper local_mh(NULL, this);
2864 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002865 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002866 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002867 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002868 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002869 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002870 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002871 super_mh.ChangeMethod(super_method);
2872 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002873 // Verify
2874 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002875 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002876 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002877 PrettyDescriptor(klass.get()).c_str(),
2878 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002879 return false;
2880 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002881 vtable->Set(j, local_method);
2882 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002883 break;
2884 }
2885 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002886 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002887 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002888 vtable->Set(actual_count, local_method);
2889 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002890 actual_count += 1;
2891 }
2892 }
2893 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002894 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002895 return false;
2896 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002897 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002898 CHECK_LE(actual_count, max_count);
2899 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002900 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002901 }
Ian Rogers30fab402012-01-23 15:43:46 -08002902 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002903 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002904 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002905 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002906 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002907 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002908 return false;
2909 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002910 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002911 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002912 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2913 vtable->Set(i, virtual_method);
2914 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002915 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002916 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002917 }
2918 return true;
2919}
2920
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002921bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002922 size_t super_ifcount;
2923 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002924 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002925 } else {
2926 super_ifcount = 0;
2927 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002928 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002929 ClassHelper kh(klass.get(), this);
2930 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2931 ifcount += num_interfaces;
2932 for (size_t i = 0; i < num_interfaces; i++) {
2933 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2934 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002935 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002936 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002937 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002938 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002939 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002940 return true;
2941 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002942 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002943 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002944 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2945 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002946 Class* super_interface = super_iftable->Get(i)->GetInterface();
2947 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002948 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002949 }
2950 // Flatten the interface inheritance hierarchy.
2951 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002952 for (size_t i = 0; i < num_interfaces; i++) {
2953 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002954 DCHECK(interface != NULL);
2955 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002956 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002957 Thread* self = Thread::Current();
2958 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002959 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002960 PrettyDescriptor(klass.get()).c_str(),
2961 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002962 return false;
2963 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002964 // Check if interface is already in iftable
2965 bool duplicate = false;
2966 for (size_t j = 0; j < idx; j++) {
2967 Class* existing_interface = iftable->Get(j)->GetInterface();
2968 if (existing_interface == interface) {
2969 duplicate = true;
2970 break;
2971 }
2972 }
2973 if (!duplicate) {
2974 // Add this non-duplicate interface.
2975 iftable->Set(idx++, AllocInterfaceEntry(interface));
2976 // Add this interface's non-duplicate super-interfaces.
2977 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2978 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2979 bool super_duplicate = false;
2980 for (size_t k = 0; k < idx; k++) {
2981 Class* existing_interface = iftable->Get(k)->GetInterface();
2982 if (existing_interface == super_interface) {
2983 super_duplicate = true;
2984 break;
2985 }
2986 }
2987 if (!super_duplicate) {
2988 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2989 }
2990 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002991 }
2992 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002993 // Shrink iftable in case duplicates were found
2994 if (idx < ifcount) {
2995 iftable.reset(iftable->CopyOf(idx));
2996 ifcount = idx;
2997 } else {
2998 CHECK_EQ(idx, ifcount);
2999 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003000 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07003001
3002 // If we're an interface, we don't need the vtable pointers, so we're done.
3003 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003004 return true;
3005 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003006 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003007 MethodHelper vtable_mh(NULL, this);
3008 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003009 for (size_t i = 0; i < ifcount; ++i) {
3010 InterfaceEntry* interface_entry = iftable->Get(i);
3011 Class* interface = interface_entry->GetInterface();
3012 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
3013 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003014 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003015 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
3016 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003017 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003018 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07003019 // For each method listed in the interface's method list, find the
3020 // matching method in our class's method list. We want to favor the
3021 // subclass over the superclass, which just requires walking
3022 // back from the end of the vtable. (This only matters if the
3023 // superclass defines a private method and this class redefines
3024 // it -- otherwise it would use the same vtable slot. In .dex files
3025 // those don't end up in the virtual method table, so it shouldn't
3026 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003027 for (k = vtable->GetLength() - 1; k >= 0; --k) {
3028 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003029 vtable_mh.ChangeMethod(vtable_method);
3030 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07003031 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07003032 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003033 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003034 return false;
3035 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003036 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003037 break;
3038 }
3039 }
3040 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003041 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003042 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003043 Method* mir_method = miranda_list[mir];
3044 vtable_mh.ChangeMethod(mir_method);
3045 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003046 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003047 break;
3048 }
3049 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003050 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003051 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003052 miranda_method.reset(AllocMethod());
3053 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3054 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003055 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003056 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003057 }
3058 }
3059 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003060 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003061 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003062 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003063 klass->SetVirtualMethods((old_method_count == 0)
3064 ? AllocObjectArray<Method>(new_method_count)
3065 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003066
Ian Rogers30fab402012-01-23 15:43:46 -08003067 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3068 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003069 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003070 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003071 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003072 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003073 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003074 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003075 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3076 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3077 klass->SetVirtualMethod(old_method_count + i, method);
3078 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003079 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003080 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003081 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003082 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003083
3084 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3085 for (int i = 0; i < vtable->GetLength(); ++i) {
3086 CHECK(vtable->Get(i) != NULL);
3087 }
3088
3089// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3090
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003091 return true;
3092}
3093
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003094bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3095 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003096 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003097}
3098
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003099bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3100 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003101 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003102 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003103 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003104 return success;
3105}
3106
Brian Carlstromdbc05252011-09-09 01:59:59 -07003107struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003108 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003109 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003110 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003111 fh_->ChangeField(field1);
3112 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3113 fh_->ChangeField(field2);
3114 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003115 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3116 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3117 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3118 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003119 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3120 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3121 if (order1 != order2) {
3122 return order1 < order2;
3123 }
3124
3125 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003126 fh_->ChangeField(field1);
3127 StringPiece name1(fh_->GetName());
3128 fh_->ChangeField(field2);
3129 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003130 return name1 < name2;
3131 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003132
3133 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003134};
3135
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003136bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003137 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003138 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003139
3140 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003141 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003142
3143 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003144 size_t size;
3145 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003146 if (is_static) {
3147 size = klass->GetClassSize();
3148 field_offset = Class::FieldsOffset();
3149 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003150 Class* super_class = klass->GetSuperClass();
3151 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003152 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003153 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003154 }
3155 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003156 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003157
Brian Carlstromdbc05252011-09-09 01:59:59 -07003158 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003159
Brian Carlstromdbc05252011-09-09 01:59:59 -07003160 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003161 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003162 std::deque<Field*> grouped_and_sorted_fields;
3163 for (size_t i = 0; i < num_fields; i++) {
3164 grouped_and_sorted_fields.push_back(fields->Get(i));
3165 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003166 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003167 std::sort(grouped_and_sorted_fields.begin(),
3168 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003169 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003170
3171 // References should be at the front.
3172 size_t current_field = 0;
3173 size_t num_reference_fields = 0;
3174 for (; current_field < num_fields; current_field++) {
3175 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003176 fh.ChangeField(field);
3177 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003178 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003179 if (isPrimitive) {
3180 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003181 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003182 grouped_and_sorted_fields.pop_front();
3183 num_reference_fields++;
3184 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003185 field->SetOffset(field_offset);
3186 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003187 }
3188
3189 // Now we want to pack all of the double-wide fields together. If
3190 // we're not aligned, though, we want to shuffle one 32-bit field
3191 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003192 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003193 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3194 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003195 fh.ChangeField(field);
3196 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003197 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3198 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003199 continue;
3200 }
3201 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003202 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003203 // drop the consumed field
3204 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3205 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003206 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003207 // whether we found a 32-bit field for padding or not, we advance
3208 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003209 }
3210
3211 // Alignment is good, shuffle any double-wide fields forward, and
3212 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003213 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003214 while (!grouped_and_sorted_fields.empty()) {
3215 Field* field = grouped_and_sorted_fields.front();
3216 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003217 fh.ChangeField(field);
3218 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003219 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003220 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003221 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003222 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003223 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003224 ? sizeof(uint64_t)
3225 : sizeof(uint32_t)));
3226 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003227 }
3228
Elliott Hughesadb460d2011-10-05 17:02:34 -07003229 // 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 -08003230 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3231 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003232 // We know there are no non-reference fields in the Reference classes, and we know
3233 // that 'referent' is alphabetically last, so this is easy...
3234 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003235 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003236 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003237 --num_reference_fields;
3238 }
3239
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003240#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003241 // Make sure that all reference fields appear before
3242 // non-reference fields, and all double-wide fields are aligned.
3243 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003244 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003245 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003246 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003247 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003248 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003249 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003250 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3251 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003252 fh.ChangeField(field);
3253 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003254 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003255 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003256 is_primitive = true; // We lied above, so we have to expect a lie here.
3257 }
3258 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003259 if (!seen_non_ref) {
3260 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003261 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003262 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003263 } else {
3264 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003265 }
3266 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003267 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003268 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003269 }
3270#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003271 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003272 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003273 if (is_static) {
3274 klass->SetNumReferenceStaticFields(num_reference_fields);
3275 klass->SetClassSize(size);
3276 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003277 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003278 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003279 klass->SetObjectSize(size);
3280 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003281 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003282 return true;
3283}
3284
3285// Set the bitmap of reference offsets, refOffsets, from the ifields
3286// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003287void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003288 uint32_t reference_offsets = 0;
3289 Class* super_class = klass->GetSuperClass();
3290 if (super_class != NULL) {
3291 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003292 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003293 if (reference_offsets == CLASS_WALK_SUPER) {
3294 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003295 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003296 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003297 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003298 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003299}
3300
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003301void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003302 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003303}
3304
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003305void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003306 uint32_t reference_offsets) {
3307 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003308 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3309 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003310 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003311 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003312 // All of the fields that contain object references are guaranteed
3313 // to be at the beginning of the fields list.
3314 for (size_t i = 0; i < num_reference_fields; ++i) {
3315 // Note that byte_offset is the offset from the beginning of
3316 // object, not the offset into instance data
3317 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003318 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003319 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3320 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3321 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003322 CHECK_NE(new_bit, 0U);
3323 reference_offsets |= new_bit;
3324 } else {
3325 reference_offsets = CLASS_WALK_SUPER;
3326 break;
3327 }
3328 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003329 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003330 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003331 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003332 } else {
3333 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003334 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003335}
3336
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003337String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003338 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003339 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003340 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003341 if (resolved != NULL) {
3342 return resolved;
3343 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003344 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3345 int32_t utf16_length = dex_file.GetStringLength(string_id);
3346 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003347 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003348 dex_cache->SetResolvedString(string_idx, string);
3349 return string;
3350}
3351
3352Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003353 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003354 DexCache* dex_cache,
3355 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003356 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003357 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003358 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003359 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003360 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003361 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003362 // TODO: we used to throw here if resolved's class loader was not the
3363 // boot class loader. This was to permit different classes with the
3364 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003365 dex_cache->SetResolvedType(type_idx, resolved);
3366 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003367 CHECK(Thread::Current()->IsExceptionPending())
3368 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003369 // Convert a ClassNotFoundException to a NoClassDefFoundError
3370 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3371 Thread::Current()->ClearException();
3372 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3373 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003374 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003375 }
3376 return resolved;
3377}
3378
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003379Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3380 uint32_t method_idx,
3381 DexCache* dex_cache,
3382 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003383 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003384 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003385 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3386 if (resolved != NULL) {
3387 return resolved;
3388 }
3389 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3390 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3391 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003392 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003393 return NULL;
3394 }
3395
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003396 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003397 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003398 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003399 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003400 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003401 resolved = klass->FindVirtualMethod(dex_cache, method_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.StringDataByIdx(method_id.name_idx_);
3406 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3407 if (is_direct) {
3408 resolved = klass->FindDirectMethod(name, signature);
3409 } else if (klass->IsInterface()) {
3410 resolved = klass->FindInterfaceMethod(name, signature);
3411 } else {
3412 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003413 // If a virtual method isn't found, search the direct methods. This can
3414 // happen when trying to access private methods directly, and allows the
3415 // proper exception to be thrown in the caller.
3416 if (resolved == NULL) {
3417 resolved = klass->FindDirectMethod(name, signature);
3418 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003419 }
3420 if (resolved == NULL) {
3421 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3422 return NULL;
3423 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003424 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003425 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003426 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003427}
3428
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003429Field* ClassLinker::ResolveField(const DexFile& dex_file,
3430 uint32_t field_idx,
3431 DexCache* dex_cache,
3432 const ClassLoader* class_loader,
3433 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003434 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003435 Field* resolved = dex_cache->GetResolvedField(field_idx);
3436 if (resolved != NULL) {
3437 return resolved;
3438 }
3439 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3440 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3441 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003442 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003443 return NULL;
3444 }
3445
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003446 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003447 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003448 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003449 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003450 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003451
3452 if (resolved == NULL) {
3453 const char* name = dex_file.GetFieldName(field_id);
3454 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3455 if (is_static) {
3456 resolved = klass->FindStaticField(name, type);
3457 } else {
3458 resolved = klass->FindInstanceField(name, type);
3459 }
3460 if (resolved == NULL) {
3461 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3462 return NULL;
3463 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003464 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003465 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003466 return resolved;
3467}
3468
3469Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3470 uint32_t field_idx,
3471 DexCache* dex_cache,
3472 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003473 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003474 Field* resolved = dex_cache->GetResolvedField(field_idx);
3475 if (resolved != NULL) {
3476 return resolved;
3477 }
3478 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3479 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3480 if (klass == NULL) {
3481 DCHECK(Thread::Current()->IsExceptionPending());
3482 return NULL;
3483 }
3484
3485 const char* name = dex_file.GetFieldName(field_id);
3486 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3487 resolved = klass->FindField(name, type);
3488 if (resolved != NULL) {
3489 dex_cache->SetResolvedField(field_idx, resolved);
3490 } else {
3491 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003492 }
3493 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003494}
3495
Ian Rogers19846512012-02-24 11:42:47 -08003496const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003497 Class* declaring_class = referrer->GetDeclaringClass();
3498 DexCache* dex_cache = declaring_class->GetDexCache();
3499 const DexFile& dex_file = FindDexFile(dex_cache);
3500 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003501 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003502}
3503
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003504void ClassLinker::DumpAllClasses(int flags) const {
3505 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3506 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3507 std::vector<Class*> all_classes;
3508 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003509 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003510 typedef Table::const_iterator It; // TODO: C++0x auto
3511 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3512 all_classes.push_back(it->second);
3513 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003514 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3515 all_classes.push_back(it->second);
3516 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003517 }
3518
3519 for (size_t i = 0; i < all_classes.size(); ++i) {
3520 all_classes[i]->DumpClass(std::cerr, flags);
3521 }
3522}
3523
Elliott Hughescac6cc72011-11-03 20:31:21 -07003524void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3525 MutexLock mu(classes_lock_);
3526 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3527 << classes_.size() << " allocated classes\n";
3528}
3529
Elliott Hughese27955c2011-08-26 15:21:24 -07003530size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003531 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003532 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003533}
3534
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003535pid_t ClassLinker::GetClassesLockOwner() {
3536 return classes_lock_.GetOwner();
3537}
3538
3539pid_t ClassLinker::GetDexLockOwner() {
3540 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003541}
3542
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003543void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3544 DCHECK(!init_done_);
3545
3546 DCHECK(klass != NULL);
3547 DCHECK(klass->GetClassLoader() == NULL);
3548
3549 DCHECK(class_roots_ != NULL);
3550 DCHECK(class_roots_->Get(class_root) == NULL);
3551 class_roots_->Set(class_root, klass);
3552}
3553
Logan Chien0c717dd2012-03-28 18:31:07 +08003554void ClassLinker::RelocateExecutable() {
3555 for (size_t i = 0; i < oat_files_.size(); ++i) {
3556 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3557 }
3558}
3559
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003560} // namespace art