blob: 7b8a02e58218f477d4cde84082399e3d2e4856fd [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Brian Carlstromd601af82012-01-06 10:15:19 -080019#include <fcntl.h>
20#include <sys/file.h>
21#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080022#include <sys/types.h>
23#include <sys/wait.h>
24
Brian Carlstromdbc05252011-09-09 01:59:59 -070025#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070026#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070028#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080032#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070033#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070034#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "dex_verifier.h"
36#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070037#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070038#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070039#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070040#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070041#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080042#include "object_utils.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080043#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070044#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070045#include "runtime_support.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070046#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070047#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070048#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070049#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070050#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070051#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070052#include "utils.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070053
54namespace art {
55
Elliott Hughes0512f022012-03-15 22:10:52 -070056static void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
57static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070058 va_list args;
59 va_start(args, fmt);
60 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
61 va_end(args);
62}
63
Elliott Hughes0512f022012-03-15 22:10:52 -070064static void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
65static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070066 va_list args;
67 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070068 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070069 va_end(args);
70}
71
Elliott Hughes0512f022012-03-15 22:10:52 -070072static void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
73static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070074 va_list args;
75 va_start(args, fmt);
76 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
77 va_end(args);
78}
79
Elliott Hughes0512f022012-03-15 22:10:52 -070080static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
81 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080082 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070083 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080084 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080085 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080086 std::string location(kh.GetLocation());
87 if (!location.empty()) {
88 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070089 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070090 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070091}
92
Elliott Hughes0512f022012-03-15 22:10:52 -070093static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
94 const StringPiece& name) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080095 ClassHelper kh(c);
96 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -080097 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080098 << " in class " << kh.GetDescriptor() << " or its superclasses";
99 std::string location(kh.GetLocation());
100 if (!location.empty()) {
101 msg << " (defined in " << location << ")";
102 }
103 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
104}
105
Elliott Hughes0512f022012-03-15 22:10:52 -0700106static void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
107static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800108 va_list args;
109 va_start(args, fmt);
110 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
111 va_end(args);
112}
113
Elliott Hughes0512f022012-03-15 22:10:52 -0700114static void ThrowEarlierClassFailure(Class* c) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700115 /*
116 * The class failed to initialize on a previous attempt, so we want to throw
117 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
118 * failed in verification, in which case v2 5.4.1 says we need to re-throw
119 * the previous error.
120 */
121 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
122
Brian Carlstrom4d9716c2012-01-30 01:49:33 -0800123 CHECK(c->IsErroneous()) << PrettyClass(c);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700124 if (c->GetVerifyErrorClass() != NULL) {
125 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800126 ClassHelper ve_ch(c->GetVerifyErrorClass());
127 std::string error_descriptor(ve_ch.GetDescriptor());
128 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700129 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800130 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700131 }
132}
133
Elliott Hughes0512f022012-03-15 22:10:52 -0700134static void WrapExceptionInInitializer() {
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700135 JNIEnv* env = Thread::Current()->GetJniEnv();
136
137 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
138 CHECK(cause.get() != NULL);
139
140 env->ExceptionClear();
141
142 // TODO: add java.lang.Error to JniConstants?
143 ScopedLocalRef<jclass> error_class(env, env->FindClass("java/lang/Error"));
144 CHECK(error_class.get() != NULL);
145 if (env->IsInstanceOf(cause.get(), error_class.get())) {
146 // We only wrap non-Error exceptions; an Error can just be used as-is.
147 env->Throw(cause.get());
148 return;
149 }
150
151 // TODO: add java.lang.ExceptionInInitializerError to JniConstants?
152 ScopedLocalRef<jclass> eiie_class(env, env->FindClass("java/lang/ExceptionInInitializerError"));
153 CHECK(eiie_class.get() != NULL);
154
155 jmethodID mid = env->GetMethodID(eiie_class.get(), "<init>" , "(Ljava/lang/Throwable;)V");
156 CHECK(mid != NULL);
157
158 ScopedLocalRef<jthrowable> eiie(env,
159 reinterpret_cast<jthrowable>(env->NewObject(eiie_class.get(), mid, cause.get())));
160 env->Throw(eiie.get());
161}
162
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800163static size_t Hash(const char* s) {
164 // This is the java.lang.String hashcode for convenience, not interoperability.
165 size_t hash = 0;
166 for (; *s != '\0'; ++s) {
167 hash = hash * 31 + *s;
168 }
169 return hash;
170}
171
Elliott Hughes418d20f2011-09-22 14:00:39 -0700172const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700173 "Ljava/lang/Class;",
174 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700175 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700176 "[Ljava/lang/Object;",
177 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700178 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700179 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700180 "Ljava/lang/reflect/Field;",
181 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700182 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700183 "Ljava/lang/ClassLoader;",
184 "Ldalvik/system/BaseDexClassLoader;",
185 "Ldalvik/system/PathClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800186 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800187 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700188 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700189 "Z",
190 "B",
191 "C",
192 "D",
193 "F",
194 "I",
195 "J",
196 "S",
197 "V",
198 "[Z",
199 "[B",
200 "[C",
201 "[D",
202 "[F",
203 "[I",
204 "[J",
205 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700206 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700207};
208
Brian Carlstroma004aa92012-02-08 18:05:09 -0800209ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
210 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700211 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800212 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800213 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700214 return class_linker.release();
215}
216
Brian Carlstroma004aa92012-02-08 18:05:09 -0800217ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800218 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700219 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700220 return class_linker.release();
221}
222
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800223ClassLinker::ClassLinker(InternTable* intern_table)
224 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700225 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700226 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700227 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700228 init_done_(false),
229 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700230 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700231}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700232
Brian Carlstroma004aa92012-02-08 18:05:09 -0800233void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
234 VLOG(startup) << "ClassLinker::Init";
235 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700236
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700237 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700238
Elliott Hughes30646832011-10-13 16:59:46 -0700239 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800240 Heap* heap = Runtime::Current()->GetHeap();
241 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700242 CHECK(java_lang_Class.get() != NULL);
243 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700244 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700245 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700246
Elliott Hughes418d20f2011-09-22 14:00:39 -0700247 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700248 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
249 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700250
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700251 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
253 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700254 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700255 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700256 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700257
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700258 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700259 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
260 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700261
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700262 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700263 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700264
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700265 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700266 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
267 char_array_class->SetComponentType(char_class.get());
268 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700269
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700270 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700271 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
272 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273 java_lang_String->SetObjectSize(sizeof(String));
274 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400275
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700276 // Create storage for root classes, save away our work so far (requires
277 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700278 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700279 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700280 SetClassRoot(kJavaLangClass, java_lang_Class.get());
281 SetClassRoot(kJavaLangObject, java_lang_Object.get());
282 SetClassRoot(kClassArrayClass, class_array_class.get());
283 SetClassRoot(kObjectArrayClass, object_array_class.get());
284 SetClassRoot(kCharArrayClass, char_array_class.get());
285 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700286
287 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700288 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
289 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
290 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
291 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
292 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
293 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
294 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
295 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700297 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700298 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299
300 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700301 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700302 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700303 IntArray::SetArrayClass(int_array_class.get());
304 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700306 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700307
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700308 // setup boot_class_path_ and register class_path now that we can
309 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800310 CHECK_NE(0U, boot_class_path.size());
311 for (size_t i = 0; i != boot_class_path.size(); ++i) {
312 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700313 CHECK(dex_file != NULL);
314 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700315 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700316
Elliott Hughes80609252011-09-23 17:24:51 -0700317 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700319 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700320 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700322 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
323
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
325 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700326 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700327 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700328 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700329 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700330
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700333 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700334 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700335 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700336 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700337
338 // now we can use FindSystemClass
339
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700340 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700341 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700342 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700343
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700344 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700345 java_lang_Object->SetStatus(Class::kStatusNotReady);
346 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700347 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
349 java_lang_String->SetStatus(Class::kStatusNotReady);
350 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700351 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700352 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
353
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700354 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700355 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
356 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
357
358 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
359 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
360
361 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700362 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700363
364 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
365 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
366
367 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700368 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700369
370 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
371 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
372
373 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
374 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
375
376 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
377 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
378
Elliott Hughes418d20f2011-09-22 14:00:39 -0700379 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700380 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700381
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700382 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700383 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700384
385 // Setup the single, global copies of "interfaces" and "iftable"
386 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
387 CHECK(java_lang_Cloneable != NULL);
388 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
389 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700390 // We assume that Cloneable/Serializable don't have superinterfaces --
391 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700392 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800393 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
394 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700395
Elliott Hughes418d20f2011-09-22 14:00:39 -0700396 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800397 ClassHelper kh(class_array_class.get(), this);
398 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
399 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
400 kh.ChangeClass(object_array_class.get());
401 CHECK_EQ(java_lang_Cloneable, kh.GetInterface(0));
402 CHECK_EQ(java_io_Serializable, kh.GetInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700403 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700404 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700405 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700406 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700407
Elliott Hughes80609252011-09-23 17:24:51 -0700408 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
409 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700410 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700411
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700412 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700413 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700414 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700415
416 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700417 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700418 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700419
Ian Rogers466bb252011-10-14 03:29:56 -0700420 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
421
422 // Create java.lang.reflect.Proxy root
423 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
424 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
425
Brian Carlstrom1f870082011-08-23 16:02:11 -0700426 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700427 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
428 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700429 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700430 java_lang_ref_FinalizerReference->SetAccessFlags(
431 java_lang_ref_FinalizerReference->GetAccessFlags() |
432 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700433 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700434 java_lang_ref_PhantomReference->SetAccessFlags(
435 java_lang_ref_PhantomReference->GetAccessFlags() |
436 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700437 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700438 java_lang_ref_SoftReference->SetAccessFlags(
439 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700440 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700441 java_lang_ref_WeakReference->SetAccessFlags(
442 java_lang_ref_WeakReference->GetAccessFlags() |
443 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700444
Brian Carlstromaded5f72011-10-07 17:15:04 -0700445 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700446 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700447 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700448 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
449
450 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
451 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
452 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
453
454 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
455 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
456 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
457 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
458
jeffhao8cd6dda2012-02-22 10:15:34 -0800459 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
460 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800461 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
462 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800463 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700464 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
465 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700466 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700467
Brian Carlstroma663ea52011-08-19 23:33:41 -0700468 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700469
Brian Carlstroma004aa92012-02-08 18:05:09 -0800470 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700471}
472
473void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800474 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700475
476 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700477 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700478 // as the types of the field can't be resolved prior to the runtime being
479 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700480 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700481 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700482 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
483
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800484 Heap* heap = Runtime::Current()->GetHeap();
485 heap->SetWellKnownClasses(java_lang_ref_FinalizerReference, java_lang_ref_ReferenceQueue);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700486
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800487 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
488
Brian Carlstrom16192862011-09-12 17:50:06 -0700489 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800490 FieldHelper fh(pendingNext, this);
491 CHECK_STREQ(fh.GetName(), "pendingNext");
492 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
493 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700494
495 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 fh.ChangeField(queue);
497 CHECK_STREQ(fh.GetName(), "queue");
498 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
499 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700500
501 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800502 fh.ChangeField(queueNext);
503 CHECK_STREQ(fh.GetName(), "queueNext");
504 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
505 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700506
507 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800508 fh.ChangeField(referent);
509 CHECK_STREQ(fh.GetName(), "referent");
510 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
511 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700512
513 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800514 fh.ChangeField(zombie);
515 CHECK_STREQ(fh.GetName(), "zombie");
516 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
517 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700518
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800519 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700520 queue->GetOffset(),
521 queueNext->GetOffset(),
522 pendingNext->GetOffset(),
523 zombie->GetOffset());
524
Brian Carlstroma663ea52011-08-19 23:33:41 -0700525 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700526 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700527 ClassRoot class_root = static_cast<ClassRoot>(i);
528 Class* klass = GetClassRoot(class_root);
529 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700530 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700531 // note SetClassRoot does additional validation.
532 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700533 }
534
Elliott Hughes92f14b22011-10-06 12:29:54 -0700535 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700536
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700537 // disable the slow paths in FindClass and CreatePrimitiveClass now
538 // that Object, Class, and Object[] are setup
539 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700540
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800541 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700542}
543
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700544void ClassLinker::RunRootClinits() {
545 Thread* self = Thread::Current();
546 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
547 Class* c = GetClassRoot(ClassRoot(i));
548 if (!c->IsArrayClass() && !c->IsPrimitive()) {
549 EnsureInitialized(GetClassRoot(ClassRoot(i)), true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700550 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700551 }
552 }
553}
554
Brian Carlstromd601af82012-01-06 10:15:19 -0800555bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
556 int oat_fd,
557 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800558 std::string dex2oat_string(GetAndroidRoot());
559 dex2oat_string += "/bin/dex2oat";
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800560#ifndef NDEBUG
561 dex2oat_string += 'd';
562#endif
563 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();
Brian Carlstroma004aa92012-02-08 18:05:09 -0800651 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatBegin());
Ian Rogers30fab402012-01-23 15:43:46 -0800652 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700653 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700654 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700655 return NULL;
656 }
657 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
658 uint32_t image_oat_checksum = image_header.GetOatChecksum();
659 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800660 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700661 << " to expected oat checksum " << std::hex << oat_checksum
662 << " in image";
663 return NULL;
664 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800665 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800666 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700667 return oat_file;
668}
669
Brian Carlstromae826982011-11-09 01:33:42 -0800670const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800671 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800672}
673
Brian Carlstroma004aa92012-02-08 18:05:09 -0800674const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800675 for (size_t i = 0; i < oat_files_.size(); i++) {
676 const OatFile* oat_file = oat_files_[i];
677 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800678 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800679 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800680 return oat_file;
681 }
682 }
683 return NULL;
684}
685
Brian Carlstromd601af82012-01-06 10:15:19 -0800686class LockedFd {
687 public:
688 static LockedFd* CreateAndLock(std::string& name, mode_t mode) {
689 int fd = open(name.c_str(), O_CREAT | O_RDWR, mode);
690 if (fd == -1) {
691 PLOG(ERROR) << "Failed to open file '" << name << "'";
692 return NULL;
693 }
694 fchmod(fd, mode);
695
696 LOG(INFO) << "locking file " << name << " (fd=" << fd << ")";
697 // try to lock non-blocking so we can log if we need may need to block
698 int result = flock(fd, LOCK_EX | LOCK_NB);
699 if (result == -1) {
700 LOG(WARNING) << "sleeping while locking file " << name;
701 // retry blocking
702 result = flock(fd, LOCK_EX);
703 }
704 if (result == -1) {
705 PLOG(ERROR) << "Failed to lock file '" << name << "'";
706 close(fd);
707 return NULL;
708 }
709 return new LockedFd(fd);
710 }
711
712 int GetFd() const {
713 return fd_;
714 }
715
716 ~LockedFd() {
717 if (fd_ != -1) {
718 int result = flock(fd_, LOCK_UN);
719 if (result == -1) {
720 PLOG(WARNING) << "flock(" << fd_ << ", LOCK_UN) failed";
721 }
722 close(fd_);
723 }
724 }
725
726 private:
727 explicit LockedFd(int fd) : fd_(fd) {}
728
729 int fd_;
730};
731
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800732static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
733 uint32_t dex_location_checksum,
734 const std::string& oat_location) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800735 UniquePtr<OatFile> oat_file(OatFile::Open(oat_location, oat_location, NULL));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800736 if (oat_file.get() == NULL) {
737 return NULL;
738 }
739 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
740 if (oat_dex_file == NULL) {
741 return NULL;
742 }
743 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
744 return NULL;
745 }
746 Runtime::Current()->GetClassLinker()->RegisterOatFile(*oat_file.release());
747 return oat_dex_file->OpenDexFile();
748}
749
750const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
751 const std::string& oat_location) {
752 uint32_t dex_location_checksum;
753 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
754 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
755 return NULL;
756 }
757
758 // Check if we already have an up-to-date output file
759 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
760 dex_location_checksum,
761 oat_location);
762 if (dex_file != NULL) {
763 return dex_file;
764 }
765
766 // Generate the output oat file for the dex file
767 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
768 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
769 if (file.get() == NULL) {
770 LOG(ERROR) << "Failed to create oat file: " << oat_location;
771 return NULL;
772 }
773 if (!class_linker->GenerateOatFile(dex_location, file->Fd(), oat_location)) {
774 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
775 return NULL;
776 }
777 // Open the oat from file descriptor we passed to GenerateOatFile
778 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
779 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
780 return NULL;
781 }
782 const OatFile* oat_file = OatFile::Open(*file.get(), oat_location, NULL);
783 if (oat_file == NULL) {
784 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
785 return NULL;
786 }
787 class_linker->RegisterOatFile(*oat_file);
788 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
789 if (oat_dex_file == NULL) {
790 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
791 return NULL;
792 }
793 return oat_dex_file->OpenDexFile();
794}
795
796const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700797 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800798
Brian Carlstroma004aa92012-02-08 18:05:09 -0800799 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800800 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800801 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800802 }
803
Brian Carlstroma004aa92012-02-08 18:05:09 -0800804 // Look for an existing file next to dex, assuming its up-to-date if found
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800805 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800806 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800807 if (oat_file != NULL) {
808 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800809 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
810 return oat_dex_file->OpenDexFile();
811 }
812 // Look for an existing file in the art-cache, validating the result if found
813 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
814 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
815 oat_file = FindOatFileFromOatLocation(cache_location);
816 if (oat_file != NULL) {
817 uint32_t dex_location_checksum;
818 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
819 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
820 return NULL;
821 }
822 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
823 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800824 if (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum()) {
825 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700826 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800827 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
828 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
829 << ") mismatch with " << dex_location
830 << " (" << std::hex << dex_location_checksum << ")--- regenerating";
831 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
832 PLOG(FATAL) << "Couldn't remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800833 }
jeffhao262bf462011-10-20 18:36:32 -0700834 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800835 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
836
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800837 // Try to generate oat file if it wasn't found or was obsolete.
838 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
839 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700840}
841
Brian Carlstromae826982011-11-09 01:33:42 -0800842const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700843 for (size_t i = 0; i < oat_files_.size(); i++) {
844 const OatFile* oat_file = oat_files_[i];
845 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800846 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700847 return oat_file;
848 }
849 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700850 return NULL;
851}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700852
Brian Carlstromae826982011-11-09 01:33:42 -0800853const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800854 MutexLock mu(dex_lock_);
855 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
856 if (oat_file != NULL) {
857 return oat_file;
858 }
859
Brian Carlstroma004aa92012-02-08 18:05:09 -0800860 oat_file = OatFile::Open(oat_location, oat_location, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700861 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800862 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700863 }
Brian Carlstromae826982011-11-09 01:33:42 -0800864 CHECK(oat_file != NULL) << oat_location;
jeffhaof6174e82012-01-31 16:14:17 -0800865 RegisterOatFileLocked(*oat_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700866 return oat_file;
867}
868
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700869void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800870 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700871 CHECK(!init_done_);
872
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800873 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700874 ImageSpace* space = heap->GetImageSpace();
875 OatFile* oat_file = OpenOat(space);
876 CHECK(oat_file != NULL) << "Failed to open oat file for image";
877 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
878 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700879
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700880 // Special case of setting up the String class early so that we can test arbitrary objects
881 // as being Strings or not
882 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
883 ->AsObjectArray<Class>()->Get(kJavaLangString);
884 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800885
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700886 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
887 static_cast<uint32_t>(dex_caches->GetLength()));
888 for (int i = 0; i < dex_caches->GetLength(); i++) {
889 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
890 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
891 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
892 const DexFile* dex_file = oat_dex_file->OpenDexFile();
893 if (dex_file == NULL) {
894 LOG(FATAL) << "Failed to open dex file " << dex_file_location
895 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700896 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700897
898 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
899
900 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700901 }
902
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800903 HeapBitmap* heap_bitmap = heap->GetLiveBits();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700904 DCHECK(heap_bitmap != NULL);
905
Brian Carlstroma663ea52011-08-19 23:33:41 -0700906 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700907 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700908
909 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800910 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700911 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700912 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700913
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800914 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700915 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
916 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800917 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700918 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700919 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700920 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
921 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
922 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
923 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
924 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
925 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
926 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
927 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700928 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Ian Rogers5167c972012-02-03 10:41:20 -0800929 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700930 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700931
932 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700933
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800934 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700935}
936
Brian Carlstrom78128a62011-09-15 17:21:19 -0700937void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700938 DCHECK(obj != NULL);
939 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700940 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700941
Elliott Hughesdbb40792011-11-18 17:05:22 -0800942 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700943 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700944 return;
945 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700946 if (obj->IsClass()) {
947 // restore class to ClassLinker::classes_ table
948 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800949 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800950 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
951 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700952 return;
953 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700954}
955
956// Keep in sync with InitCallback. Anything we visit, we need to
957// reinit references to when reinitializing a ClassLinker from a
958// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700959void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
960 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700961
962 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700963 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700964 }
965
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700966 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700967 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700968 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700969 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700970 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700971 }
Ian Rogers5d76c432011-10-31 21:42:49 -0700972 // Note. we deliberately ignore the class roots in the image (held in image_classes_)
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700973 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700974
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700975 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700976}
977
Elliott Hughesa2155262011-11-16 16:26:58 -0800978void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
979 MutexLock mu(classes_lock_);
980 typedef Table::const_iterator It; // TODO: C++0x auto
981 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
982 if (!visitor(it->second, arg)) {
983 return;
984 }
985 }
986 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
987 if (!visitor(it->second, arg)) {
988 return;
989 }
990 }
991}
992
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700993ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700994 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700995 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700996 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700997 BooleanArray::ResetArrayClass();
998 ByteArray::ResetArrayClass();
999 CharArray::ResetArrayClass();
1000 DoubleArray::ResetArrayClass();
1001 FloatArray::ResetArrayClass();
1002 IntArray::ResetArrayClass();
1003 LongArray::ResetArrayClass();
1004 ShortArray::ResetArrayClass();
1005 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001006 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001007 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001008 STLDeleteElements(&boot_class_path_);
1009 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001010}
1011
1012DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001013 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1014 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001015 return NULL;
1016 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001017 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1018 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001019 return NULL;
1020 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001021 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1022 if (strings.get() == NULL) {
1023 return NULL;
1024 }
1025 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1026 if (types.get() == NULL) {
1027 return NULL;
1028 }
1029 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1030 if (methods.get() == NULL) {
1031 return NULL;
1032 }
1033 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1034 if (fields.get() == NULL) {
1035 return NULL;
1036 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001037 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1038 if (initialized_static_storage.get() == NULL) {
1039 return NULL;
1040 }
1041
1042 dex_cache->Init(location.get(),
1043 strings.get(),
1044 types.get(),
1045 methods.get(),
1046 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001047 initialized_static_storage.get());
1048 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001049}
1050
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001051InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1052 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001053 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1054 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001055 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001056 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001057}
1058
Brian Carlstrom4873d462011-08-21 15:23:39 -07001059Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1060 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001061 Heap* heap = Runtime::Current()->GetHeap();
1062 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001063 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001064 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001065 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001066}
1067
Brian Carlstrom4873d462011-08-21 15:23:39 -07001068Class* ClassLinker::AllocClass(size_t class_size) {
1069 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001070}
1071
Jesse Wilson35baaab2011-08-10 16:18:03 -04001072Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001073 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001074}
1075
1076Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001077 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001078}
1079
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001080ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1081 return ObjectArray<StackTraceElement>::Alloc(
1082 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1083 length);
1084}
1085
Brian Carlstromaded5f72011-10-07 17:15:04 -07001086Class* EnsureResolved(Class* klass) {
1087 DCHECK(klass != NULL);
1088 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001089 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001090 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001091 ObjectLock lock(klass);
1092 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001093 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001094 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001095 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001096 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001097 return NULL;
1098 }
1099 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001100 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001101 lock.Wait();
1102 }
1103 }
1104 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001105 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001106 return NULL;
1107 }
1108 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001109 CHECK(klass->IsResolved()) << PrettyClass(klass);
1110 CHECK(!self->IsExceptionPending())
1111 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1112 return klass;
1113}
1114
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001115Class* ClassLinker::FindSystemClass(const char* descriptor) {
1116 return FindClass(descriptor, NULL);
1117}
1118
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001119Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001120 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001121 Thread* self = Thread::Current();
1122 DCHECK(self != NULL);
1123 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001124 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001125 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1126 // for primitive classes that aren't backed by dex files.
1127 return FindPrimitiveClass(descriptor[0]);
1128 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001129 // Find the class in the loaded classes table.
1130 Class* klass = LookupClass(descriptor, class_loader);
1131 if (klass != NULL) {
1132 return EnsureResolved(klass);
1133 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001134 // Class is not yet loaded.
1135 if (descriptor[0] == '[') {
1136 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001137
Jesse Wilson47daf872011-11-23 11:42:45 -05001138 } else if (class_loader == NULL) {
1139 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1140 if (pair.second != NULL) {
1141 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1142 }
1143
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001144 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001145 // first try the boot class path
1146 Class* system_class = FindSystemClass(descriptor);
1147 if (system_class != NULL) {
1148 return system_class;
1149 }
1150 CHECK(self->IsExceptionPending());
1151 self->ClearException();
1152
1153 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001154 const std::vector<const DexFile*>& class_path
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001155 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001156 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001157 if (pair.second != NULL) {
1158 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001159 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001160
1161 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001162 std::string class_name_string(DescriptorToDot(descriptor));
Elliott Hughes09d4d012012-02-03 17:44:20 -08001163 ScopedThreadStateChange tsc(self, Thread::kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001164 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001165 ScopedLocalRef<jclass> c(env, AddLocalReference<jclass>(env, GetClassRoot(kJavaLangClassLoader)));
1166 CHECK(c.get() != NULL);
1167 // TODO: cache method?
1168 jmethodID mid = env->GetMethodID(c.get(), "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;");
1169 CHECK(mid != NULL);
1170 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1171 if (class_name_object.get() == NULL) {
1172 return NULL;
1173 }
1174 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Ian Rogers761bfa82012-01-11 10:14:05 -08001175 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(), mid,
1176 class_name_object.get()));
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001177 if (env->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001178 // If the ClassLoader threw, pass that exception up.
1179 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001180 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001181 // broken loader - throw NPE to be compatible with Dalvik
1182 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1183 class_name_string.c_str());
1184 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001185 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001186 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001187 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001188 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001189 }
1190
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001191 ThrowNoClassDefFoundError("Class %s not found", PrintableString(StringPiece(descriptor)).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001192 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001193}
1194
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001195Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001196 const ClassLoader* class_loader,
1197 const DexFile& dex_file,
1198 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001199 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001200 // Load the class from the dex file.
1201 if (!init_done_) {
1202 // finish up init of hand crafted class_roots_
1203 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001204 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001205 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001206 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001207 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001208 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001209 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001210 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001211 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001212 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001213 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001214 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001215 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001216 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001217 }
1218 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001219 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001220 }
1221 klass->SetDexCache(FindDexCache(dex_file));
1222 LoadClass(dex_file, dex_class_def, klass, class_loader);
1223 // Check for a pending exception during load
1224 Thread* self = Thread::Current();
1225 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001226 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001227 return NULL;
1228 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001229 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001230 klass->SetClinitThreadId(self->GetTid());
1231 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001232 Class* existing = InsertClass(descriptor, klass.get(), false);
1233 if (existing != NULL) {
1234 // We failed to insert because we raced with another thread.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001235 klass->SetClinitThreadId(0);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001236 klass.reset(existing);
1237 return EnsureResolved(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001238 }
1239 // Finish loading (if necessary) by finding parents
1240 CHECK(!klass->IsLoaded());
1241 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1242 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001243 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001244 lock.NotifyAll();
1245 return NULL;
1246 }
1247 CHECK(klass->IsLoaded());
1248 // Link the class (if necessary)
1249 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001250 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001251 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001252 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001253 lock.NotifyAll();
1254 return NULL;
1255 }
1256 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001257
1258 /*
1259 * We send CLASS_PREPARE events to the debugger from here. The
1260 * definition of "preparation" is creating the static fields for a
1261 * class and initializing them to the standard default values, but not
1262 * executing any code (that comes later, during "initialization").
1263 *
1264 * We did the static preparation in LinkClass.
1265 *
1266 * The class has been prepared and resolved but possibly not yet verified
1267 * at this point.
1268 */
1269 Dbg::PostClassPrepare(klass.get());
1270
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001271 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001272}
1273
Brian Carlstrom4873d462011-08-21 15:23:39 -07001274// Precomputes size that will be needed for Class, matching LinkStaticFields
1275size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1276 const DexFile::ClassDef& dex_class_def) {
1277 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001278 size_t num_ref = 0;
1279 size_t num_32 = 0;
1280 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001281 if (class_data != NULL) {
1282 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1283 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001284 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001285 char c = descriptor[0];
1286 if (c == 'L' || c == '[') {
1287 num_ref++;
1288 } else if (c == 'J' || c == 'D') {
1289 num_64++;
1290 } else {
1291 num_32++;
1292 }
1293 }
1294 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001295 // start with generic class data
1296 size_t size = sizeof(Class);
1297 // follow with reference fields which must be contiguous at start
1298 size += (num_ref * sizeof(uint32_t));
1299 // if there are 64-bit fields to add, make sure they are aligned
1300 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1301 if (num_32 != 0) {
1302 // use an available 32-bit field for padding
1303 num_32--;
1304 }
1305 size += sizeof(uint32_t); // either way, we are adding a word
1306 DCHECK_EQ(size, RoundUp(size, 8));
1307 }
1308 // tack on any 64-bit fields now that alignment is assured
1309 size += (num_64 * sizeof(uint64_t));
1310 // tack on any remaining 32-bit fields
1311 size += (num_32 * sizeof(uint32_t));
1312 return size;
1313}
1314
Ian Rogers19846512012-02-24 11:42:47 -08001315const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1316 DCHECK(descriptor != NULL);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001317 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001318 return NULL;
1319 }
1320 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1321 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1322 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1323 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1324 uint32_t class_def_index;
1325 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1326 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1327 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1328 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1329 return oat_class;
1330}
1331
1332const void* ClassLinker::GetOatCodeFor(const Method* method) {
1333 // Special case to get oat code without overwriting a trampoline.
1334 CHECK(method->GetDeclaringClass()->IsInitializing());
1335 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001336 // method for direct methods (or virtual methods made direct).
1337 Class* declaring_class = method->GetDeclaringClass();
1338 size_t oat_method_index;
1339 if (method->IsStatic() || method->IsDirect()) {
1340 // Simple case where the oat method index was stashed at load time.
1341 oat_method_index = method->GetMethodIndex();
1342 } else {
1343 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1344 // by search for its position in the declared virtual methods.
1345 oat_method_index = declaring_class->NumDirectMethods();
1346 size_t end = declaring_class->NumVirtualMethods();
1347 bool found = false;
1348 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001349 if (declaring_class->GetVirtualMethod(i) == method) {
1350 found = true;
1351 break;
1352 }
Ian Rogersf320b632012-03-13 18:47:47 -07001353 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001354 }
1355 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1356 }
1357 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001358 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Ian Rogersfb6adba2012-03-04 21:51:51 -08001359 return oat_class->GetOatMethod(oat_method_index).GetCode();
Ian Rogers19846512012-02-24 11:42:47 -08001360}
1361
1362void ClassLinker::FixupStaticTrampolines(Class* klass) {
1363 ClassHelper kh(klass);
1364 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1365 CHECK(dex_class_def != NULL);
1366 const DexFile& dex_file = kh.GetDexFile();
1367 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1368 if (class_data == NULL) {
1369 return; // no fields or methods - for example a marker interface
1370 }
1371 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1372 if (oat_class.get() == NULL) {
1373 // OAT file unavailable
1374 return;
1375 }
1376 ClassDataItemIterator it(dex_file, class_data);
1377 // Skip fields
1378 while (it.HasNextStaticField()) {
1379 it.Next();
1380 }
1381 while (it.HasNextInstanceField()) {
1382 it.Next();
1383 }
1384 size_t method_index = 0;
1385 // Link the code of methods skipped by LinkCode
1386 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1387 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1388 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001389 if (Runtime::Current()->IsMethodTracingActive()) {
1390 Trace* tracer = Runtime::Current()->GetTracer();
1391 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1392 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1393 tracer->ResetSavedCode(method);
1394 method->SetCode(code);
1395 tracer->SaveAndUpdateCode(method);
1396 }
1397 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001398 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1399 CHECK(code != NULL);
1400 method->SetCode(code);
1401 }
1402 method_index++;
1403 }
1404}
1405
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001406void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001407 // Every kind of method should at least get an invoke stub from the oat_method.
1408 // non-abstract methods also get their code pointers.
1409 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001410 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001411
Ian Rogers19846512012-02-24 11:42:47 -08001412 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001413 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001414 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001415 return;
1416 }
Ian Rogers19846512012-02-24 11:42:47 -08001417
1418 if (method->IsStatic() && !method->IsConstructor()) {
1419 // For static methods excluding the class initializer, install the trampoline
1420 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001421 }
1422 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001423 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001424 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001425 }
1426
1427 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001428 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001429 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001430 }
1431}
1432
Brian Carlstromf615a612011-07-23 12:50:34 -07001433void ClassLinker::LoadClass(const DexFile& dex_file,
1434 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001435 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001436 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001437 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001438 CHECK(klass->GetDexCache() != NULL);
1439 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001440 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001441 CHECK(descriptor != NULL);
1442
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001443 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001444 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001445 // Make sure that none of our runtime-only flags are set.
1446 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001447 klass->SetAccessFlags(access_flags);
1448 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001449 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001450 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001451
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001452 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001453
Ian Rogers0571d352011-11-03 19:51:38 -07001454 // Load fields fields.
1455 const byte* class_data = dex_file.GetClassData(dex_class_def);
1456 if (class_data == NULL) {
1457 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001458 }
Ian Rogers0571d352011-11-03 19:51:38 -07001459 ClassDataItemIterator it(dex_file, class_data);
1460 if (it.NumStaticFields() != 0) {
1461 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1462 }
1463 if (it.NumInstanceFields() != 0) {
1464 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1465 }
1466 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1467 SirtRef<Field> sfield(AllocField());
1468 klass->SetStaticField(i, sfield.get());
1469 LoadField(dex_file, it, klass, sfield);
1470 }
1471 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1472 SirtRef<Field> ifield(AllocField());
1473 klass->SetInstanceField(i, ifield.get());
1474 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001475 }
1476
Ian Rogers19846512012-02-24 11:42:47 -08001477 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, descriptor));
1478
Ian Rogers0571d352011-11-03 19:51:38 -07001479 // Load methods.
1480 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001481 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001482 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001483 }
Ian Rogers0571d352011-11-03 19:51:38 -07001484 if (it.NumVirtualMethods() != 0) {
1485 // TODO: append direct methods to class object
1486 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001487 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001488 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001489 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1490 SirtRef<Method> method(AllocMethod());
1491 klass->SetDirectMethod(i, method.get());
1492 LoadMethod(dex_file, it, klass, method);
1493 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001494 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001495 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001496 method->SetMethodIndex(class_def_method_index);
1497 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001498 }
1499 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1500 SirtRef<Method> method(AllocMethod());
1501 klass->SetVirtualMethod(i, method.get());
1502 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001503 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001504 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001505 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001506 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001507 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001508 }
1509 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001510}
1511
Ian Rogers0571d352011-11-03 19:51:38 -07001512void ClassLinker::LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
1513 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001514 uint32_t field_idx = it.GetMemberIndex();
1515 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001516 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001517 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001518}
1519
Ian Rogers0571d352011-11-03 19:51:38 -07001520void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1521 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001522 uint32_t dex_method_idx = it.GetMemberIndex();
1523 dst->SetDexMethodIndex(dex_method_idx);
1524 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001525 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001526
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001527
1528 StringPiece method_name(dex_file.GetMethodName(method_id));
1529 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001530 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1531 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001532
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001533 if (method_name == "finalize") {
1534 // Create the prototype for a signature of "()V"
1535 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1536 if (void_string_id != NULL) {
1537 const DexFile::TypeId* void_type_id =
1538 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1539 if (void_type_id != NULL) {
1540 std::vector<uint16_t> no_args;
1541 const DexFile::ProtoId* finalizer_proto =
1542 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1543 if (finalizer_proto != NULL) {
1544 // We have the prototype in the dex file
1545 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1546 klass->SetFinalizable();
1547 } else {
1548 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1549 // The Enum class declares a "final" finalize() method to prevent subclasses from
1550 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1551 // subclasses, so we exclude it here.
1552 // We also want to avoid setting the flag on Object, where we know that finalize() is
1553 // empty.
1554 if (klass_descriptor != "Ljava/lang/Object;" &&
1555 klass_descriptor != "Ljava/lang/Enum;") {
1556 klass->SetFinalizable();
1557 }
1558 }
1559 }
1560 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001561 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001562 }
Ian Rogers0571d352011-11-03 19:51:38 -07001563 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001564 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001565
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001566 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001567 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001568 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001569 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001570}
1571
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001572void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001573 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1574 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001575}
1576
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001577void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1578 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001579 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001580 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001581}
1582
Brian Carlstromaded5f72011-10-07 17:15:04 -07001583bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001584 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001585 for (size_t i = 0; i != dex_files_.size(); ++i) {
1586 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001587 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001588 }
1589 }
1590 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001591}
1592
Brian Carlstromaded5f72011-10-07 17:15:04 -07001593bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001594 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001595 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001596}
1597
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001598void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001599 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001600 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001601 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001602 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001603 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001604}
1605
Brian Carlstromaded5f72011-10-07 17:15:04 -07001606void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001607 {
1608 MutexLock mu(dex_lock_);
1609 if (IsDexFileRegisteredLocked(dex_file)) {
1610 return;
1611 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001612 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001613 // Don't alloc while holding the lock, since allocation may need to
1614 // suspend all threads and another thread may need the dex_lock_ to
1615 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001616 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001617 {
1618 MutexLock mu(dex_lock_);
1619 if (IsDexFileRegisteredLocked(dex_file)) {
1620 return;
1621 }
1622 RegisterDexFileLocked(dex_file, dex_cache);
1623 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001624}
1625
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001626void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001627 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001628 RegisterDexFileLocked(dex_file, dex_cache);
1629}
1630
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001631const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001632 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001633 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001634 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1635 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001636 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001637 }
1638 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001639 CHECK(false) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001640 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001641}
1642
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001643DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001644 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001645 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001646 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001647 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001648 }
1649 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001650 CHECK(false) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001651 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001652}
1653
Ian Rogers19846512012-02-24 11:42:47 -08001654void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1655 MutexLock mu(dex_lock_);
1656 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1657 dex_caches_[i]->Fixup(resolution_method);
1658 }
1659}
1660
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001661Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1662 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001663 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001664 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001665 CHECK(primitive_class != NULL);
1666 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001667 primitive_class->SetPrimitiveType(type);
1668 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001669 Class* existing = InsertClass(descriptor, primitive_class, false);
1670 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001671 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001672}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001673
Brian Carlstrombe977852011-07-19 14:54:54 -07001674// Create an array class (i.e. the class object for the array, not the
1675// array itself). "descriptor" looks like "[C" or "[[[[B" or
1676// "[Ljava/lang/String;".
1677//
1678// If "descriptor" refers to an array of primitives, look up the
1679// primitive type's internally-generated class object.
1680//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001681// "class_loader" is the class loader of the class that's referring to
1682// us. It's used to ensure that we're looking for the element type in
1683// the right context. It does NOT become the class loader for the
1684// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001685//
1686// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001687Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001688 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001689
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001690 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001691 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001692 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001693 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001694 return NULL;
1695 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001696
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001697 // See if the component type is already loaded. Array classes are
1698 // always associated with the class loader of their underlying
1699 // element type -- an array of Strings goes with the loader for
1700 // java/lang/String -- so we need to look for it there. (The
1701 // caller should have checked for the existence of the class
1702 // before calling here, but they did so with *their* class loader,
1703 // not the component type's loader.)
1704 //
1705 // If we find it, the caller adds "loader" to the class' initiating
1706 // loader list, which should prevent us from going through this again.
1707 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001708 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001709 // are the same, because our caller (FindClass) just did the
1710 // lookup. (Even if we get this wrong we still have correct behavior,
1711 // because we effectively do this lookup again when we add the new
1712 // class to the hash table --- necessary because of possible races with
1713 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001714 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001715 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001716 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001717 return new_class;
1718 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001719 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001720
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001721 // Fill out the fields in the Class.
1722 //
1723 // It is possible to execute some methods against arrays, because
1724 // all arrays are subclasses of java_lang_Object_, so we need to set
1725 // up a vtable. We can just point at the one in java_lang_Object_.
1726 //
1727 // Array classes are simple enough that we don't need to do a full
1728 // link step.
1729
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001730 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001731 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001732 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001733 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001734 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001735 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001736 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001737 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001738 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001739 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001740 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001741 }
1742 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001743 if (new_class.get() == NULL) {
1744 new_class.reset(AllocClass(sizeof(Class)));
1745 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001746 return NULL;
1747 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001748 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001749 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001750 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001751 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001752 new_class->SetSuperClass(java_lang_Object);
1753 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001754 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001755 new_class->SetClassLoader(component_type->GetClassLoader());
1756 new_class->SetStatus(Class::kStatusInitialized);
1757 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001758 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001759
1760
1761 // All arrays have java/lang/Cloneable and java/io/Serializable as
1762 // interfaces. We need to set that up here, so that stuff like
1763 // "instanceof" works right.
1764 //
1765 // Note: The GC could run during the call to FindSystemClass,
1766 // so we need to make sure the class object is GC-valid while we're in
1767 // there. Do this by clearing the interface list so the GC will just
1768 // think that the entries are null.
1769
1770
1771 // Use the single, global copies of "interfaces" and "iftable"
1772 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001773 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001774 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001775
1776 // Inherit access flags from the component type. Arrays can't be
1777 // used as a superclass or interface, so we want to add "final"
1778 // and remove "interface".
1779 //
1780 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001781 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001782 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001783 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1784 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001785
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001786 Class* existing = InsertClass(descriptor, new_class.get(), false);
1787 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001788 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001789 }
1790 // Another thread must have loaded the class after we
1791 // started but before we finished. Abandon what we've
1792 // done.
1793 //
1794 // (Yes, this happens.)
1795
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001796 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001797}
1798
1799Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001800 switch (Primitive::GetType(type)) {
1801 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001802 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001803 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001804 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001805 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001806 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001807 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001808 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001809 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001810 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001811 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001812 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001813 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001814 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001815 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001816 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001817 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001818 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001819 case Primitive::kPrimNot:
1820 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001821 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001822 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001823 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001824 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001825}
1826
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001827Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001828 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001829 DexCache* dex_cache = klass->GetDexCache();
1830 std::string source;
1831 if (dex_cache != NULL) {
1832 source += " from ";
1833 source += dex_cache->GetLocation()->ToModifiedUtf8();
1834 }
1835 LOG(INFO) << "Loaded class " << descriptor << source;
1836 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001837 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001838 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001839 Table& classes = image_class ? image_classes_ : classes_;
1840 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1841#ifndef NDEBUG
1842 // Check we don't have the class in the other table in error
1843 Table& other_classes = image_class ? classes_ : image_classes_;
1844 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1845#endif
1846 if (existing != NULL) {
1847 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001848 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001849 classes.insert(std::make_pair(hash, klass));
1850 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001851}
1852
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001853bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1854 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001855 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001856 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001857 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001858 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001859 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001860 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001861 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001862 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001863 classes_.erase(it);
1864 return true;
1865 }
1866 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001867 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001868 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001869 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001870 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001871 image_classes_.erase(it);
1872 return true;
1873 }
1874 }
1875 return false;
1876}
1877
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001878Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1879 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001880 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001881 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001882 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1883 if (klass != NULL) {
1884 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001885 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001886 return LookupClass(descriptor, class_loader, hash, image_classes_);
1887}
1888
1889Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1890 size_t hash, const Table& classes) {
1891 ClassHelper kh(NULL, this);
1892 typedef Table::const_iterator It; // TODO: C++0x auto
1893 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001894 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001895 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001896 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001897#ifndef NDEBUG
1898 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001899 Class* klass2 = it->second;
1900 kh.ChangeClass(klass2);
1901 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001902 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001903 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001904 }
1905#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001906 return klass;
1907 }
1908 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001909 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001910}
1911
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001912void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001913 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001914 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001915 MutexLock mu(classes_lock_);
1916 typedef Table::const_iterator It; // TODO: C++0x auto
1917 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001918 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001919 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001920 Class* klass = it->second;
1921 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001922 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001923 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001924 }
1925 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001926 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001927 Class* klass = it->second;
1928 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001929 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001930 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001931 }
1932 }
1933}
1934
Ian Rogersc20a83e2012-01-18 18:15:32 -08001935#ifndef NDEBUG
1936static void CheckMethodsHaveGcMaps(Class* klass) {
1937 if (!Runtime::Current()->IsStarted()) {
1938 return;
1939 }
1940 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1941 Method* method = klass->GetDirectMethod(i);
1942 if (!method->IsNative() && !method->IsAbstract()) {
1943 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1944 }
1945 }
1946 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1947 Method* method = klass->GetVirtualMethod(i);
1948 if (!method->IsNative() && !method->IsAbstract()) {
1949 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1950 }
1951 }
1952}
1953#else
1954static void CheckMethodsHaveGcMaps(Class* klass) {
1955}
1956#endif
1957
jeffhao98eacac2011-09-14 16:11:53 -07001958void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001959 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08001960 ObjectLock lock(klass);
1961
jeffhao98eacac2011-09-14 16:11:53 -07001962 if (klass->IsVerified()) {
1963 return;
1964 }
1965
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001966 // The class might already be erroneous if we attempted to verify a subclass
1967 if (klass->IsErroneous()) {
1968 ThrowEarlierClassFailure(klass);
1969 return;
1970 }
1971
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001972 CHECK_EQ(klass->GetStatus(), Class::kStatusResolved) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001973 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001974
Ian Rogers1c5eb702012-02-01 09:18:34 -08001975 // Verify super class
1976 Class* super = klass->GetSuperClass();
1977 std::string error_msg;
1978 if (super != NULL) {
1979 // Acquire lock to prevent races on verifying the super class
1980 ObjectLock lock(super);
1981
1982 if (!super->IsVerified() && !super->IsErroneous()) {
1983 Runtime::Current()->GetClassLinker()->VerifyClass(super);
1984 }
1985 if (!super->IsVerified()) {
1986 error_msg = "Rejecting class ";
1987 error_msg += PrettyDescriptor(klass);
1988 error_msg += " that attempts to sub-class erroneous class ";
1989 error_msg += PrettyDescriptor(super);
1990 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
1991 Thread* self = Thread::Current();
1992 SirtRef<Throwable> cause(self->GetException());
1993 if (cause.get() != NULL) {
1994 self->ClearException();
1995 }
1996 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
1997 if (cause.get() != NULL) {
1998 self->GetException()->SetCause(cause.get());
1999 }
2000 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2001 klass->SetStatus(Class::kStatusError);
2002 return;
2003 }
2004 }
2005
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002006 // Try to use verification information from oat file, otherwise do runtime verification
2007 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002008 if (VerifyClassUsingOatFile(dex_file, klass) ||
2009 verifier::DexVerifier::VerifyClass(klass, error_msg)) {
Ian Rogersc4762272012-02-01 15:55:55 -08002010 DCHECK(!Thread::Current()->IsExceptionPending());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002011 // Make sure all classes referenced by catch blocks are resolved
2012 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002013 klass->SetStatus(Class::kStatusVerified);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002014 // Sanity check that a verified class has GC maps on all methods
2015 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002016 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002017 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002018 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2019 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002020 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002021 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002022 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2023 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002024 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002025 }
jeffhao98eacac2011-09-14 16:11:53 -07002026}
2027
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002028bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass) {
2029 if (!Runtime::Current()->IsStarted()) {
2030 return false;
2031 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002032 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002033 return false;
2034 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002035 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2036 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002037 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002038 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002039 const char* descriptor = ClassHelper(klass).GetDescriptor();
2040 uint32_t class_def_index;
2041 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002042 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002043 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002044 CHECK(oat_class.get() != NULL)
2045 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002046 Class::Status status = oat_class->GetStatus();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002047 if (status == Class::kStatusVerified || status == Class::kStatusInitialized) {
2048 return true;
2049 }
Ian Rogersc4762272012-02-01 15:55:55 -08002050 if (status == Class::kStatusError) {
2051 // Compile time verification failed. Compile time verification can fail because we have
2052 // incomplete type information. Consider the following:
2053 // class ... {
2054 // Foo x;
2055 // .... () {
2056 // if (...) {
2057 // v1 gets assigned a type of resolved class Foo
2058 // } else {
2059 // v1 gets assigned a type of unresolved class Bar
2060 // }
2061 // iput x = v1
2062 // } }
2063 // when we merge v1 following the if-the-else it results in Conflict
2064 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2065 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2066 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2067 // at compile time).
2068 return false;
2069 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002070 if (status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002071 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2072 // not loading the class.
2073 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2074 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002075 return false;
2076 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002077 LOG(FATAL) << "Unexpected class status: " << status
2078 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2079
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002080 return false;
2081}
2082
2083void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2084 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2085 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2086 }
2087 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2088 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2089 }
2090}
2091
2092void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2093 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2094 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2095 if (code_item == NULL) {
2096 return; // native or abstract method
2097 }
2098 if (code_item->tries_size_ == 0) {
2099 return; // nothing to process
2100 }
2101 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2102 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2103 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2104 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2105 CatchHandlerIterator iterator(handlers_ptr);
2106 for (; iterator.HasNext(); iterator.Next()) {
2107 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2108 // unresolved exception types will be ignored by exception delivery
2109 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2110 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2111 if (exception_type == NULL) {
2112 DCHECK(Thread::Current()->IsExceptionPending());
2113 Thread::Current()->ClearException();
2114 }
2115 }
2116 }
2117 handlers_ptr = iterator.EndDataPointer();
2118 }
2119}
2120
Ian Rogersc2b44472011-12-14 21:17:17 -08002121static void CheckProxyConstructor(Method* constructor);
2122static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2123
Jesse Wilson95caa792011-10-12 18:14:17 -04002124Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002125 ClassLoader* loader, ObjectArray<Method>* methods,
2126 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002127 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002128 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002129 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002130 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002131 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002132 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002133 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002134 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002135 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002136 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002137
2138 klass->SetStatus(Class::kStatusIdx);
2139
2140 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2141
2142 // Create static field that holds throws, instance fields are inherited
2143 klass->SetSFields(AllocObjectArray<Field>(1));
2144 SirtRef<Field> sfield(AllocField());
2145 klass->SetStaticField(0, sfield.get());
2146 sfield->SetDexFieldIndex(-1);
2147 sfield->SetDeclaringClass(klass.get());
2148 sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002149
Ian Rogers466bb252011-10-14 03:29:56 -07002150 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002151 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002152 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002153
Ian Rogers466bb252011-10-14 03:29:56 -07002154 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002155 size_t num_virtual_methods = methods->GetLength();
2156 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2157 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002158 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002159 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002160 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002161
2162 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2163 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2164 DCHECK(!Thread::Current()->IsExceptionPending());
2165
2166 // Link the fields and virtual methods, creating vtable and iftables
2167 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002168 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002169 return NULL;
2170 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002171 sfield->SetObject(NULL, throws); // initialize throws field
2172 klass->SetStatus(Class::kStatusInitialized);
2173
2174 // sanity checks
2175#ifndef NDEBUG
2176 bool debug = true;
2177#else
2178 bool debug = false;
2179#endif
2180 if (debug) {
2181 CHECK(klass->GetIFields() == NULL);
2182 CheckProxyConstructor(klass->GetDirectMethod(0));
2183 for (size_t i = 0; i < num_virtual_methods; ++i) {
2184 SirtRef<Method> prototype(methods->Get(i));
2185 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2186 }
Brian Carlstrom89521892011-12-07 22:05:07 -08002187 std::string throws_field_name("java.lang.Class[][] ");
Ian Rogersc2b44472011-12-14 21:17:17 -08002188 throws_field_name += name->ToModifiedUtf8();
2189 throws_field_name += ".throws";
2190 CHECK(PrettyField(klass->GetStaticField(0)) == throws_field_name);
2191
2192 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
2193 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2194 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002195 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002196}
2197
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002198std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2199 DCHECK(proxy_class->IsProxyClass());
2200 String* name = proxy_class->GetName();
2201 DCHECK(name != NULL);
2202 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2203}
2204
Ian Rogers16f93672012-02-14 12:29:06 -08002205Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2206 DCHECK(proxy_class->IsProxyClass());
2207 DCHECK(proxy_method->IsProxyMethod());
2208 // Locate the dex cache of the original interface/Object
2209 DexCache* dex_cache = NULL;
2210 {
2211 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2212 MutexLock mu(dex_lock_);
2213 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2214 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2215 dex_cache = dex_caches_[i];
2216 break;
2217 }
2218 }
2219 }
2220 CHECK(dex_cache != NULL);
2221 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2222 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2223 CHECK(resolved_method != NULL);
2224 return resolved_method;
2225}
2226
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002227
2228Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002229 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002230 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002231 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002232 Method* proxy_constructor = proxy_direct_methods->Get(2);
2233 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2234 // code_ too)
2235 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2236 // Make this constructor public and fix the class to be our Proxy version
2237 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002238 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002239 return constructor;
2240}
2241
2242static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002243 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002244 MethodHelper mh(constructor);
2245 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002246 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002247 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002248}
2249
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002250Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2251 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2252 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002253 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2254 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002255 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002256 // as necessary
2257 Method* method = down_cast<Method*>(prototype->Clone());
2258
2259 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2260 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002261 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002262 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002263
Ian Rogers466bb252011-10-14 03:29:56 -07002264 // At runtime the method looks like a reference and argument saving method, clone the code
2265 // related parameters from this method.
2266 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2267 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2268 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2269 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
2270 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
Ian Rogers16f93672012-02-14 12:29:06 -08002271
Ian Rogersc2b44472011-12-14 21:17:17 -08002272 return method;
2273}
Jesse Wilson95caa792011-10-12 18:14:17 -04002274
Ian Rogersc2b44472011-12-14 21:17:17 -08002275static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002276 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002277 CHECK(!prototype->IsFinal());
2278 CHECK(method->IsFinal());
2279 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002280
2281 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2282 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2283 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2284 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2285 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2286 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2287 method->GetDexCacheInitializedStaticStorage());
2288 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2289
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002290 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002291 MethodHelper mh2(prototype.get());
2292 CHECK_STREQ(mh.GetName(), mh2.GetName());
2293 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002294 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002295 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002296}
2297
Brian Carlstrom25c33252011-09-18 15:58:35 -07002298bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002299 CHECK(klass->IsResolved() || klass->IsErroneous())
2300 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002301
Carl Shapirob5573532011-07-12 18:22:59 -07002302 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002303
Brian Carlstrom25c33252011-09-18 15:58:35 -07002304 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002305 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002306 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002307 ObjectLock lock(klass);
2308
Brian Carlstromd1422f82011-09-28 11:37:09 -07002309 if (klass->GetStatus() == Class::kStatusInitialized) {
2310 return true;
2311 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002312
Brian Carlstromd1422f82011-09-28 11:37:09 -07002313 if (klass->IsErroneous()) {
2314 ThrowEarlierClassFailure(klass);
2315 return false;
2316 }
2317
2318 if (klass->GetStatus() == Class::kStatusResolved) {
jeffhao98eacac2011-09-14 16:11:53 -07002319 VerifyClass(klass);
2320 if (klass->GetStatus() != Class::kStatusVerified) {
Ian Rogers595799e2012-01-11 17:32:51 -08002321 CHECK(self->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002322 return false;
2323 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002324 }
2325
Brian Carlstrom25c33252011-09-18 15:58:35 -07002326 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2327 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002328 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002329 // don't bother going to kStatusInitializing. We return false so that
2330 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002331 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2332 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002333 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002334 }
2335
Brian Carlstromd1422f82011-09-28 11:37:09 -07002336 // If the class is kStatusInitializing, either this thread is
2337 // initializing higher up the stack or another thread has beat us
2338 // to initializing and we need to wait. Either way, this
2339 // invocation of InitializeClass will not be responsible for
2340 // running <clinit> and will return.
2341 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002342 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002343 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002344 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002345 return true;
2346 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002347 // No. That's fine. Wait for another thread to finish initializing.
2348 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002349 }
2350
2351 if (!ValidateSuperClassDescriptors(klass)) {
2352 klass->SetStatus(Class::kStatusError);
2353 return false;
2354 }
2355
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002356 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002357
Elliott Hughesdcc24742011-09-07 14:02:44 -07002358 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002359 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002360 }
2361
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002362 uint64_t t0 = NanoTime();
2363
Brian Carlstrom25c33252011-09-18 15:58:35 -07002364 if (!InitializeSuperClass(klass, can_run_clinit)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002365 // Super class initialization failed, this can be because we can't run
2366 // super-class class initializers in which case we'll be verified.
2367 // Otherwise this class is erroneous.
2368 if (!can_run_clinit) {
2369 CHECK(klass->IsVerified());
2370 } else {
2371 CHECK(klass->IsErroneous());
2372 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002373 return false;
2374 }
2375
2376 InitializeStaticFields(klass);
2377
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002378 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002379 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002380 }
2381
Ian Rogers19846512012-02-24 11:42:47 -08002382 FixupStaticTrampolines(klass);
2383
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002384 uint64_t t1 = NanoTime();
2385
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002386 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002387 {
2388 ObjectLock lock(klass);
2389
2390 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002391 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002392 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002393 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002394 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002395 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2396 RuntimeStats* thread_stats = self->GetStats();
2397 ++global_stats->class_init_count;
2398 ++thread_stats->class_init_count;
2399 global_stats->class_init_time_ns += (t1 - t0);
2400 thread_stats->class_init_time_ns += (t1 - t0);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002401 klass->SetStatus(Class::kStatusInitialized);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002402 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002403 ClassHelper kh(klass);
2404 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002405 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002406 }
2407 lock.NotifyAll();
2408 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002409 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002410}
2411
Brian Carlstromd1422f82011-09-28 11:37:09 -07002412bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2413 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002414 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002415 lock.Wait();
2416
2417 // When we wake up, repeat the test for init-in-progress. If
2418 // there's an exception pending (only possible if
2419 // "interruptShouldThrow" was set), bail out.
2420 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002421 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002422 klass->SetStatus(Class::kStatusError);
2423 return false;
2424 }
2425 // Spurious wakeup? Go back to waiting.
2426 if (klass->GetStatus() == Class::kStatusInitializing) {
2427 continue;
2428 }
2429 if (klass->IsErroneous()) {
2430 // The caller wants an exception, but it was thrown in a
2431 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002432 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002433 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002434 return false;
2435 }
2436 if (klass->IsInitialized()) {
2437 return true;
2438 }
2439 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2440 }
2441 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2442}
2443
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002444bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2445 if (klass->IsInterface()) {
2446 return true;
2447 }
2448 // begin with the methods local to the superclass
2449 if (klass->HasSuperClass() &&
2450 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2451 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002452 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2453 const Method* method = klass->GetVTable()->Get(i);
2454 if (method != super->GetVTable()->Get(i) &&
2455 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002456 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2457 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2458 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002459 return false;
2460 }
2461 }
2462 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002463 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2464 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2465 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002466 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2467 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002468 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002469 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2470 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002471 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2472 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2473 PrettyMethod(method).c_str(),
2474 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002475 return false;
2476 }
2477 }
2478 }
2479 }
2480 return true;
2481}
2482
Ian Rogers595799e2012-01-11 17:32:51 -08002483// Returns true if classes referenced by the signature of the method are the
2484// same classes in klass1 as they are in klass2.
2485bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2486 const Class* klass1,
2487 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002488 if (klass1 == klass2) {
2489 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002490 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002491 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002492 const DexFile::ProtoId& proto_id =
2493 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002494 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2495 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002496 if (descriptor == NULL) {
2497 break;
2498 }
2499 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2500 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002501 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002502 return false;
2503 }
2504 }
2505 }
2506 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002507 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002508 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002509 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002510 return false;
2511 }
2512 }
2513 return true;
2514}
2515
Ian Rogers595799e2012-01-11 17:32:51 -08002516// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2517bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2518 const Class* klass1,
2519 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002520 CHECK(descriptor != NULL);
2521 CHECK(klass1 != NULL);
2522 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002523 if (klass1 == klass2) {
2524 return true;
2525 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002526 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002527 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002528 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002529 }
Ian Rogers595799e2012-01-11 17:32:51 -08002530 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2531 if (found2 == NULL) {
2532 Thread::Current()->ClearException();
2533 }
2534 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002535}
2536
Brian Carlstrom25c33252011-09-18 15:58:35 -07002537bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002538 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002539 if (!klass->IsInterface() && klass->HasSuperClass()) {
2540 Class* super_class = klass->GetSuperClass();
2541 if (super_class->GetStatus() != Class::kStatusInitialized) {
2542 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002543 Thread* self = Thread::Current();
2544 klass->MonitorEnter(self);
Brian Carlstrom25c33252011-09-18 15:58:35 -07002545 bool super_initialized = InitializeClass(super_class, can_run_clinit);
Elliott Hughes5f791332011-09-15 17:45:30 -07002546 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002547 // TODO: check for a pending exception
2548 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002549 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002550 // Don't set status to error when we can't run <clinit>.
2551 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2552 klass->SetStatus(Class::kStatusVerified);
2553 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002554 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002555 klass->SetStatus(Class::kStatusError);
2556 klass->NotifyAll();
2557 return false;
2558 }
2559 }
2560 }
2561 return true;
2562}
2563
Brian Carlstrom25c33252011-09-18 15:58:35 -07002564bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002565 CHECK(c != NULL);
2566 if (c->IsInitialized()) {
2567 return true;
2568 }
2569
Elliott Hughes5f791332011-09-15 17:45:30 -07002570 Thread* self = Thread::Current();
Elliott Hughes4681c802011-09-25 18:04:37 -07002571 ScopedThreadStateChange tsc(self, Thread::kRunnable);
Ian Rogers595799e2012-01-11 17:32:51 -08002572 bool success = InitializeClass(c, can_run_clinit);
2573 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002574 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002575 }
2576 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002577}
2578
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002579void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -07002580 Class* c, std::map<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002581 const ClassLoader* cl = c->GetClassLoader();
2582 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002583 ClassDataItemIterator it(dex_file, class_data);
2584 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
2585 field_map[i] = ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002586 }
2587}
2588
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002589void ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002590 size_t num_static_fields = klass->NumStaticFields();
2591 if (num_static_fields == 0) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002592 return;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002593 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002594 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002595 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002596 if (dex_cache == NULL) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002597 return;
2598 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002599 ClassHelper kh(klass);
2600 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002601 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002602 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002603 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002604
Ian Rogers0571d352011-11-03 19:51:38 -07002605 if (it.HasNext()) {
2606 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
2607 std::map<uint32_t, Field*> field_map;
2608 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2609 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
2610 it.ReadValueToField(field_map[i]);
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002611 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002612 }
2613}
2614
Ian Rogersc2b44472011-12-14 21:17:17 -08002615bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002616 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002617 if (!LinkSuperClass(klass)) {
2618 return false;
2619 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002620 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002621 return false;
2622 }
2623 if (!LinkInstanceFields(klass)) {
2624 return false;
2625 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002626 if (!LinkStaticFields(klass)) {
2627 return false;
2628 }
2629 CreateReferenceInstanceOffsets(klass);
2630 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002631 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2632 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002633 return true;
2634}
2635
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002636bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002637 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002638 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2639 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002640 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002641 uint16_t super_class_idx = class_def->superclass_idx_;
2642 if (super_class_idx != DexFile::kDexNoIndex16) {
2643 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002644 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002645 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002646 return false;
2647 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002648 // Verify
2649 if (!klass->CanAccess(super_class)) {
2650 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2651 "Class %s extended by class %s is inaccessible",
2652 PrettyDescriptor(super_class).c_str(),
2653 PrettyDescriptor(klass.get()).c_str());
2654 return false;
2655 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002656 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002657 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002658 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2659 if (interfaces != NULL) {
2660 for (size_t i = 0; i < interfaces->Size(); i++) {
2661 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2662 Class* interface = ResolveType(dex_file, idx, klass.get());
2663 if (interface == NULL) {
2664 DCHECK(Thread::Current()->IsExceptionPending());
2665 return false;
2666 }
2667 // Verify
2668 if (!klass->CanAccess(interface)) {
2669 // TODO: the RI seemed to ignore this in my testing.
2670 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2671 "Interface %s implemented by class %s is inaccessible",
2672 PrettyDescriptor(interface).c_str(),
2673 PrettyDescriptor(klass.get()).c_str());
2674 return false;
2675 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002676 }
2677 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002678 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002679 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002680 return true;
2681}
2682
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002683bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002684 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002685 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002686 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002687 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002688 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002689 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002690 return false;
2691 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002692 return true;
2693 }
2694 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002695 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002696 return false;
2697 }
2698 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002699 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002700 Thread* self = Thread::Current();
2701 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002702 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002703 PrettyDescriptor(super).c_str(),
2704 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002705 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002706 return false;
2707 }
2708 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002709 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002710 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002711 PrettyDescriptor(super).c_str(),
2712 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002713 return false;
2714 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002715
2716 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2717 if (super->IsFinalizable()) {
2718 klass->SetFinalizable();
2719 }
2720
Elliott Hughes2da50362011-10-10 16:57:08 -07002721 // Inherit reference flags (if any) from the superclass.
2722 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2723 if (reference_flags != 0) {
2724 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2725 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002726 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002727 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002728 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002729 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002730 return false;
2731 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002732
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002733#ifndef NDEBUG
2734 // Ensure super classes are fully resolved prior to resolving fields..
2735 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002736 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002737 super = super->GetSuperClass();
2738 }
2739#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002740 return true;
2741}
2742
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002743// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002744bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002745 if (klass->IsInterface()) {
2746 // No vtable.
2747 size_t count = klass->NumVirtualMethods();
2748 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002749 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002750 return false;
2751 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002752 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002753 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002754 }
jeffhaobdb76512011-09-07 11:43:16 -07002755 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002756 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002757 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002758 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002759 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002760 }
2761 return true;
2762}
2763
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002764bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002765 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002766 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2767 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002768 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002769 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002770 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002771 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002772 MethodHelper local_mh(NULL, this);
2773 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002774 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002775 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002776 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002777 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002778 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002779 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002780 super_mh.ChangeMethod(super_method);
2781 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002782 // Verify
2783 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002784 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002785 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002786 PrettyDescriptor(klass.get()).c_str(),
2787 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002788 return false;
2789 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002790 vtable->Set(j, local_method);
2791 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002792 break;
2793 }
2794 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002795 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002796 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002797 vtable->Set(actual_count, local_method);
2798 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002799 actual_count += 1;
2800 }
2801 }
2802 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002803 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002804 return false;
2805 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002806 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002807 CHECK_LE(actual_count, max_count);
2808 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002809 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002810 }
Ian Rogers30fab402012-01-23 15:43:46 -08002811 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002812 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002813 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002814 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002815 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002816 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002817 return false;
2818 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002819 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002820 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002821 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2822 vtable->Set(i, virtual_method);
2823 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002824 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002825 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002826 }
2827 return true;
2828}
2829
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002830bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002831 size_t super_ifcount;
2832 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002833 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002834 } else {
2835 super_ifcount = 0;
2836 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002837 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002838 ClassHelper kh(klass.get(), this);
2839 uint32_t num_interfaces = interfaces == NULL ? kh.NumInterfaces() : interfaces->GetLength();
2840 ifcount += num_interfaces;
2841 for (size_t i = 0; i < num_interfaces; i++) {
2842 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
2843 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002844 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002845 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002846 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002847 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002848 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002849 return true;
2850 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002851 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002852 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002853 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2854 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002855 Class* super_interface = super_iftable->Get(i)->GetInterface();
2856 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002857 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002858 }
2859 // Flatten the interface inheritance hierarchy.
2860 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002861 for (size_t i = 0; i < num_interfaces; i++) {
2862 Class* interface = interfaces == NULL ? kh.GetInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002863 DCHECK(interface != NULL);
2864 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002865 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002866 Thread* self = Thread::Current();
2867 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002868 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002869 PrettyDescriptor(klass.get()).c_str(),
2870 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002871 return false;
2872 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002873 // Check if interface is already in iftable
2874 bool duplicate = false;
2875 for (size_t j = 0; j < idx; j++) {
2876 Class* existing_interface = iftable->Get(j)->GetInterface();
2877 if (existing_interface == interface) {
2878 duplicate = true;
2879 break;
2880 }
2881 }
2882 if (!duplicate) {
2883 // Add this non-duplicate interface.
2884 iftable->Set(idx++, AllocInterfaceEntry(interface));
2885 // Add this interface's non-duplicate super-interfaces.
2886 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2887 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2888 bool super_duplicate = false;
2889 for (size_t k = 0; k < idx; k++) {
2890 Class* existing_interface = iftable->Get(k)->GetInterface();
2891 if (existing_interface == super_interface) {
2892 super_duplicate = true;
2893 break;
2894 }
2895 }
2896 if (!super_duplicate) {
2897 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2898 }
2899 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002900 }
2901 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002902 // Shrink iftable in case duplicates were found
2903 if (idx < ifcount) {
2904 iftable.reset(iftable->CopyOf(idx));
2905 ifcount = idx;
2906 } else {
2907 CHECK_EQ(idx, ifcount);
2908 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002909 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002910
2911 // If we're an interface, we don't need the vtable pointers, so we're done.
2912 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002913 return true;
2914 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002915 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002916 MethodHelper vtable_mh(NULL, this);
2917 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002918 for (size_t i = 0; i < ifcount; ++i) {
2919 InterfaceEntry* interface_entry = iftable->Get(i);
2920 Class* interface = interface_entry->GetInterface();
2921 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2922 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002923 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002924 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2925 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002926 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002927 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002928 // For each method listed in the interface's method list, find the
2929 // matching method in our class's method list. We want to favor the
2930 // subclass over the superclass, which just requires walking
2931 // back from the end of the vtable. (This only matters if the
2932 // superclass defines a private method and this class redefines
2933 // it -- otherwise it would use the same vtable slot. In .dex files
2934 // those don't end up in the virtual method table, so it shouldn't
2935 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002936 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2937 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002938 vtable_mh.ChangeMethod(vtable_method);
2939 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002940 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002941 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002942 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002943 return false;
2944 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002945 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002946 break;
2947 }
2948 }
2949 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002950 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07002951 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002952 Method* mir_method = miranda_list[mir];
2953 vtable_mh.ChangeMethod(mir_method);
2954 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002955 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002956 break;
2957 }
2958 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002959 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07002960 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002961 miranda_method.reset(AllocMethod());
2962 memcpy(miranda_method.get(), interface_method, sizeof(Method));
2963 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002964 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002965 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002966 }
2967 }
2968 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002969 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002970 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07002971 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002972 klass->SetVirtualMethods((old_method_count == 0)
2973 ? AllocObjectArray<Method>(new_method_count)
2974 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002975
Ian Rogers30fab402012-01-23 15:43:46 -08002976 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
2977 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002978 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07002979 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08002980 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07002981 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07002982 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07002983 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07002984 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
2985 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
2986 klass->SetVirtualMethod(old_method_count + i, method);
2987 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002988 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002989 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002990 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002991 }
Elliott Hughes4681c802011-09-25 18:04:37 -07002992
2993 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
2994 for (int i = 0; i < vtable->GetLength(); ++i) {
2995 CHECK(vtable->Get(i) != NULL);
2996 }
2997
2998// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
2999
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003000 return true;
3001}
3002
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003003bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3004 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003005 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003006}
3007
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003008bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3009 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003010 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003011 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003012 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003013 return success;
3014}
3015
Brian Carlstromdbc05252011-09-09 01:59:59 -07003016struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003017 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003018 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003019 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003020 fh_->ChangeField(field1);
3021 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3022 fh_->ChangeField(field2);
3023 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003024 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3025 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3026 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3027 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003028 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3029 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3030 if (order1 != order2) {
3031 return order1 < order2;
3032 }
3033
3034 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003035 fh_->ChangeField(field1);
3036 StringPiece name1(fh_->GetName());
3037 fh_->ChangeField(field2);
3038 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003039 return name1 < name2;
3040 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003041
3042 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003043};
3044
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003045bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003046 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003047 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003048
3049 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003050 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003051
3052 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003053 size_t size;
3054 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003055 if (is_static) {
3056 size = klass->GetClassSize();
3057 field_offset = Class::FieldsOffset();
3058 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003059 Class* super_class = klass->GetSuperClass();
3060 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003061 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003062 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003063 }
3064 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003065 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003066
Brian Carlstromdbc05252011-09-09 01:59:59 -07003067 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003068
Brian Carlstromdbc05252011-09-09 01:59:59 -07003069 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003070 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003071 std::deque<Field*> grouped_and_sorted_fields;
3072 for (size_t i = 0; i < num_fields; i++) {
3073 grouped_and_sorted_fields.push_back(fields->Get(i));
3074 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003075 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003076 std::sort(grouped_and_sorted_fields.begin(),
3077 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003078 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003079
3080 // References should be at the front.
3081 size_t current_field = 0;
3082 size_t num_reference_fields = 0;
3083 for (; current_field < num_fields; current_field++) {
3084 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003085 fh.ChangeField(field);
3086 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003087 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003088 if (isPrimitive) {
3089 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003090 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003091 grouped_and_sorted_fields.pop_front();
3092 num_reference_fields++;
3093 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003094 field->SetOffset(field_offset);
3095 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003096 }
3097
3098 // Now we want to pack all of the double-wide fields together. If
3099 // we're not aligned, though, we want to shuffle one 32-bit field
3100 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003101 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003102 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3103 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003104 fh.ChangeField(field);
3105 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003106 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3107 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003108 continue;
3109 }
3110 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003111 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003112 // drop the consumed field
3113 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3114 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003115 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003116 // whether we found a 32-bit field for padding or not, we advance
3117 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003118 }
3119
3120 // Alignment is good, shuffle any double-wide fields forward, and
3121 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003122 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003123 while (!grouped_and_sorted_fields.empty()) {
3124 Field* field = grouped_and_sorted_fields.front();
3125 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003126 fh.ChangeField(field);
3127 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003128 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003129 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003130 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003131 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003132 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003133 ? sizeof(uint64_t)
3134 : sizeof(uint32_t)));
3135 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003136 }
3137
Elliott Hughesadb460d2011-10-05 17:02:34 -07003138 // 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 -08003139 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3140 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003141 // We know there are no non-reference fields in the Reference classes, and we know
3142 // that 'referent' is alphabetically last, so this is easy...
3143 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003144 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003145 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003146 --num_reference_fields;
3147 }
3148
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003149#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003150 // Make sure that all reference fields appear before
3151 // non-reference fields, and all double-wide fields are aligned.
3152 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003153 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003154 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003155 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003156 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003157 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003158 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003159 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3160 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003161 fh.ChangeField(field);
3162 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003163 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003164 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003165 is_primitive = true; // We lied above, so we have to expect a lie here.
3166 }
3167 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003168 if (!seen_non_ref) {
3169 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003170 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003171 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003172 } else {
3173 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003174 }
3175 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003176 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003177 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003178 }
3179#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003180 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003181 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003182 if (is_static) {
3183 klass->SetNumReferenceStaticFields(num_reference_fields);
3184 klass->SetClassSize(size);
3185 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003186 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003187 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003188 klass->SetObjectSize(size);
3189 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003190 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003191 return true;
3192}
3193
3194// Set the bitmap of reference offsets, refOffsets, from the ifields
3195// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003196void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003197 uint32_t reference_offsets = 0;
3198 Class* super_class = klass->GetSuperClass();
3199 if (super_class != NULL) {
3200 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003201 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003202 if (reference_offsets == CLASS_WALK_SUPER) {
3203 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003204 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003205 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003206 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003207 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003208}
3209
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003210void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003211 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003212}
3213
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003214void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003215 uint32_t reference_offsets) {
3216 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003217 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3218 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003219 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003220 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003221 // All of the fields that contain object references are guaranteed
3222 // to be at the beginning of the fields list.
3223 for (size_t i = 0; i < num_reference_fields; ++i) {
3224 // Note that byte_offset is the offset from the beginning of
3225 // object, not the offset into instance data
3226 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003227 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003228 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3229 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3230 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003231 CHECK_NE(new_bit, 0U);
3232 reference_offsets |= new_bit;
3233 } else {
3234 reference_offsets = CLASS_WALK_SUPER;
3235 break;
3236 }
3237 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003238 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003239 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003240 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003241 } else {
3242 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003243 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003244}
3245
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003246String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003247 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003248 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003249 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003250 if (resolved != NULL) {
3251 return resolved;
3252 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003253 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3254 int32_t utf16_length = dex_file.GetStringLength(string_id);
3255 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003256 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003257 dex_cache->SetResolvedString(string_idx, string);
3258 return string;
3259}
3260
3261Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003262 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003263 DexCache* dex_cache,
3264 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003265 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003266 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003267 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003268 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003269 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003270 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003271 // TODO: we used to throw here if resolved's class loader was not the
3272 // boot class loader. This was to permit different classes with the
3273 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003274 dex_cache->SetResolvedType(type_idx, resolved);
3275 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003276 CHECK(Thread::Current()->IsExceptionPending())
3277 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003278 // Convert a ClassNotFoundException to a NoClassDefFoundError
3279 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3280 Thread::Current()->ClearException();
3281 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3282 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003283 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003284 }
3285 return resolved;
3286}
3287
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003288Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3289 uint32_t method_idx,
3290 DexCache* dex_cache,
3291 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003292 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003293 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003294 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3295 if (resolved != NULL) {
3296 return resolved;
3297 }
3298 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3299 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3300 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003301 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003302 return NULL;
3303 }
3304
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003305 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003306 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003307 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003308 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003309 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003310 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003311 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003312
3313 if (resolved == NULL) {
3314 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3315 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3316 if (is_direct) {
3317 resolved = klass->FindDirectMethod(name, signature);
3318 } else if (klass->IsInterface()) {
3319 resolved = klass->FindInterfaceMethod(name, signature);
3320 } else {
3321 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003322 // If a virtual method isn't found, search the direct methods. This can
3323 // happen when trying to access private methods directly, and allows the
3324 // proper exception to be thrown in the caller.
3325 if (resolved == NULL) {
3326 resolved = klass->FindDirectMethod(name, signature);
3327 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003328 }
3329 if (resolved == NULL) {
3330 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3331 return NULL;
3332 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003333 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003334 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003335 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003336}
3337
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003338Field* ClassLinker::ResolveField(const DexFile& dex_file,
3339 uint32_t field_idx,
3340 DexCache* dex_cache,
3341 const ClassLoader* class_loader,
3342 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003343 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003344 Field* resolved = dex_cache->GetResolvedField(field_idx);
3345 if (resolved != NULL) {
3346 return resolved;
3347 }
3348 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3349 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3350 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003351 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003352 return NULL;
3353 }
3354
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003355 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003356 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003357 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003358 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003359 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003360
3361 if (resolved == NULL) {
3362 const char* name = dex_file.GetFieldName(field_id);
3363 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3364 if (is_static) {
3365 resolved = klass->FindStaticField(name, type);
3366 } else {
3367 resolved = klass->FindInstanceField(name, type);
3368 }
3369 if (resolved == NULL) {
3370 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3371 return NULL;
3372 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003373 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003374 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003375 return resolved;
3376}
3377
3378Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3379 uint32_t field_idx,
3380 DexCache* dex_cache,
3381 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003382 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003383 Field* resolved = dex_cache->GetResolvedField(field_idx);
3384 if (resolved != NULL) {
3385 return resolved;
3386 }
3387 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3388 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3389 if (klass == NULL) {
3390 DCHECK(Thread::Current()->IsExceptionPending());
3391 return NULL;
3392 }
3393
3394 const char* name = dex_file.GetFieldName(field_id);
3395 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3396 resolved = klass->FindField(name, type);
3397 if (resolved != NULL) {
3398 dex_cache->SetResolvedField(field_idx, resolved);
3399 } else {
3400 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003401 }
3402 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003403}
3404
Ian Rogers19846512012-02-24 11:42:47 -08003405const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003406 Class* declaring_class = referrer->GetDeclaringClass();
3407 DexCache* dex_cache = declaring_class->GetDexCache();
3408 const DexFile& dex_file = FindDexFile(dex_cache);
3409 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003410 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003411}
3412
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003413void ClassLinker::DumpAllClasses(int flags) const {
3414 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3415 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3416 std::vector<Class*> all_classes;
3417 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003418 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003419 typedef Table::const_iterator It; // TODO: C++0x auto
3420 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3421 all_classes.push_back(it->second);
3422 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003423 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3424 all_classes.push_back(it->second);
3425 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003426 }
3427
3428 for (size_t i = 0; i < all_classes.size(); ++i) {
3429 all_classes[i]->DumpClass(std::cerr, flags);
3430 }
3431}
3432
Elliott Hughescac6cc72011-11-03 20:31:21 -07003433void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3434 MutexLock mu(classes_lock_);
3435 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3436 << classes_.size() << " allocated classes\n";
3437}
3438
Elliott Hughese27955c2011-08-26 15:21:24 -07003439size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003440 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003441 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003442}
3443
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003444pid_t ClassLinker::GetClassesLockOwner() {
3445 return classes_lock_.GetOwner();
3446}
3447
3448pid_t ClassLinker::GetDexLockOwner() {
3449 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003450}
3451
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003452void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3453 DCHECK(!init_done_);
3454
3455 DCHECK(klass != NULL);
3456 DCHECK(klass->GetClassLoader() == NULL);
3457
3458 DCHECK(class_roots_ != NULL);
3459 DCHECK(class_roots_->Get(class_root) == NULL);
3460 class_roots_->Set(class_root, klass);
3461}
3462
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003463} // namespace art