blob: 6e3d90333b9b2dce60aba0324ebcf5ebf9fcfe20 [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 "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070036#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070037#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070038#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070039#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070040#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080041#include "object_utils.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080042#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070043#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070044#include "runtime_support.h"
TDYa1275bb86012012-04-11 05:57:28 -070045#if defined(ART_USE_LLVM_COMPILER)
46#include "compiler_llvm/runtime_support_llvm.h"
47#endif
Elliott Hughes4d0207c2011-10-03 19:14:34 -070048#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070049#include "scoped_thread_state_change.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070050#include "space.h"
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070051#include "space_bitmap.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070052#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070053#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070054#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070055#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070056#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070057#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070058
59namespace art {
60
Ian Rogers00f7d0e2012-07-19 15:28:27 -070061static void ThrowNoClassDefFoundError(const char* fmt, ...)
62 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070063 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070064static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070065 va_list args;
66 va_start(args, fmt);
67 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
68 va_end(args);
69}
70
Ian Rogers00f7d0e2012-07-19 15:28:27 -070071static void ThrowClassFormatError(const char* fmt, ...)
72 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070073 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070074static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070075 va_list args;
76 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070077 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070078 va_end(args);
79}
80
Ian Rogers00f7d0e2012-07-19 15:28:27 -070081static void ThrowLinkageError(const char* fmt, ...)
82 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070083 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070084static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070085 va_list args;
86 va_start(args, fmt);
87 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
88 va_end(args);
89}
90
Elliott Hughes0512f022012-03-15 22:10:52 -070091static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070092 const StringPiece& name)
Ian Rogersb726dcb2012-09-05 08:57:23 -070093 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080094 ClassHelper kh(c);
95 std::ostringstream msg;
Ian Rogers08f753d2012-08-24 14:35:25 -070096 msg << "No " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080097 << " in class " << kh.GetDescriptor() << " or its superclasses";
98 std::string location(kh.GetLocation());
99 if (!location.empty()) {
100 msg << " (defined in " << location << ")";
101 }
102 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
103}
104
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700105static void ThrowNullPointerException(const char* fmt, ...)
106 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -0700107 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -0700108static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800109 va_list args;
110 va_start(args, fmt);
111 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
112 va_end(args);
113}
114
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700115static void ThrowEarlierClassFailure(Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700116 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes5c599942012-06-13 16:45:05 -0700117 // The class failed to initialize on a previous attempt, so we want to throw
118 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
119 // failed in verification, in which case v2 5.4.1 says we need to re-throw
120 // the previous error.
Ian Rogers87e552d2012-08-31 15:54:48 -0700121 if (!Runtime::Current()->IsCompiler()) { // Give info if this occurs at runtime.
122 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
123 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700124
Elliott Hughes5c599942012-06-13 16:45:05 -0700125 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700126 if (c->GetVerifyErrorClass() != NULL) {
127 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800128 ClassHelper ve_ch(c->GetVerifyErrorClass());
129 std::string error_descriptor(ve_ch.GetDescriptor());
130 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700131 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800132 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700133 }
134}
135
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700136static void WrapExceptionInInitializer()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700137 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700138 Thread* self = Thread::Current();
139 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700140
141 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
142 CHECK(cause.get() != NULL);
143
144 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700145 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
146 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700147
Elliott Hughesa4f94742012-05-29 16:28:38 -0700148 // We only wrap non-Error exceptions; an Error can just be used as-is.
149 if (!is_error) {
150 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", NULL);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700151 }
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700152}
153
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800154static size_t Hash(const char* s) {
155 // This is the java.lang.String hashcode for convenience, not interoperability.
156 size_t hash = 0;
157 for (; *s != '\0'; ++s) {
158 hash = hash * 31 + *s;
159 }
160 return hash;
161}
162
Elliott Hughes418d20f2011-09-22 14:00:39 -0700163const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700164 "Ljava/lang/Class;",
165 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700166 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700167 "[Ljava/lang/Object;",
168 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700169 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700170 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700171 "Ljava/lang/reflect/Field;",
172 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700173 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700174 "Ljava/lang/ClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800175 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800176 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700177 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700178 "Z",
179 "B",
180 "C",
181 "D",
182 "F",
183 "I",
184 "J",
185 "S",
186 "V",
187 "[Z",
188 "[B",
189 "[C",
190 "[D",
191 "[F",
192 "[I",
193 "[J",
194 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700195 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700196};
197
Brian Carlstroma004aa92012-02-08 18:05:09 -0800198ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
199 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700200 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800201 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800202 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700203 return class_linker.release();
204}
205
Brian Carlstroma004aa92012-02-08 18:05:09 -0800206ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800207 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700208 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700209 return class_linker.release();
210}
211
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800212ClassLinker::ClassLinker(InternTable* intern_table)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700213 // dex_lock_ is recursive as it may be used in stack dumping.
214 : dex_lock_("ClassLinker dex lock", kDefaultMutexLevel, true),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700215 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700216 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700217 init_done_(false),
218 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700219 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700220}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700221
Brian Carlstroma004aa92012-02-08 18:05:09 -0800222void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
223 VLOG(startup) << "ClassLinker::Init";
224 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700225
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700226 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700227
Elliott Hughes30646832011-10-13 16:59:46 -0700228 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800229 Heap* heap = Runtime::Current()->GetHeap();
230 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700231 CHECK(java_lang_Class.get() != NULL);
232 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700233 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700234 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700235
Elliott Hughes418d20f2011-09-22 14:00:39 -0700236 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700237 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
238 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700239
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700240 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700241 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
242 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700243 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700244 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700245 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700246
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700247 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700248 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
249 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700250
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700251 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700253
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700254 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700255 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
256 char_array_class->SetComponentType(char_class.get());
257 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700258
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700259 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700260 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
261 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700262 java_lang_String->SetObjectSize(sizeof(String));
263 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400264
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700265 // Create storage for root classes, save away our work so far (requires
266 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700267 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700268 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700269 SetClassRoot(kJavaLangClass, java_lang_Class.get());
270 SetClassRoot(kJavaLangObject, java_lang_Object.get());
271 SetClassRoot(kClassArrayClass, class_array_class.get());
272 SetClassRoot(kObjectArrayClass, object_array_class.get());
273 SetClassRoot(kCharArrayClass, char_array_class.get());
274 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700275
276 // Setup the primitive type classes.
Ian Rogersc8982582012-09-07 16:53:25 -0700277 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass(Primitive::kPrimBoolean));
278 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass(Primitive::kPrimByte));
279 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass(Primitive::kPrimShort));
280 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass(Primitive::kPrimInt));
281 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass(Primitive::kPrimLong));
282 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass(Primitive::kPrimFloat));
283 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass(Primitive::kPrimDouble));
284 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass(Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700285
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700286 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700287 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700288
289 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700290 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700291 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700292 IntArray::SetArrayClass(int_array_class.get());
293 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700295 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700296
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700297 // setup boot_class_path_ and register class_path now that we can
298 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800299 CHECK_NE(0U, boot_class_path.size());
300 for (size_t i = 0; i != boot_class_path.size(); ++i) {
301 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700302 CHECK(dex_file != NULL);
303 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700304 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305
Elliott Hughes80609252011-09-23 17:24:51 -0700306 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700307 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700308 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700309 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700310 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700311 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
312
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700313 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
314 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700315 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700316 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700317 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700319
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700322 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700323 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700324 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700325 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700326
327 // now we can use FindSystemClass
328
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700329 // run char class through InitializePrimitiveClass to finish init
Ian Rogersc8982582012-09-07 16:53:25 -0700330 InitializePrimitiveClass(char_class.get(), Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700332
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700333 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_Object->SetStatus(Class::kStatusNotReady);
335 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700336 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700337 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
338 java_lang_String->SetStatus(Class::kStatusNotReady);
339 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700340 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700341 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
342
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700343 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
345 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
346
347 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
348 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
349
350 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700351 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700352
353 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
354 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
355
356 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700357 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358
359 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
360 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
361
362 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
363 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
364
365 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
366 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
367
Elliott Hughes418d20f2011-09-22 14:00:39 -0700368 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700369 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700370
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700371 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700372 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700373
374 // Setup the single, global copies of "interfaces" and "iftable"
375 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
376 CHECK(java_lang_Cloneable != NULL);
377 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
378 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700379 // We assume that Cloneable/Serializable don't have superinterfaces --
380 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700381 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800382 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
383 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700384
Elliott Hughes418d20f2011-09-22 14:00:39 -0700385 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800386 ClassHelper kh(class_array_class.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -0700387 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
388 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800389 kh.ChangeClass(object_array_class.get());
Ian Rogersd24e2642012-06-06 21:21:43 -0700390 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
391 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700392 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700393 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700394 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700395 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700396
Elliott Hughes80609252011-09-23 17:24:51 -0700397 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
398 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700399 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700400
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700401 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700402 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700403 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700404
405 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700406 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700407 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700408
Ian Rogers466bb252011-10-14 03:29:56 -0700409 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
410
411 // Create java.lang.reflect.Proxy root
412 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
413 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
414
Brian Carlstrom1f870082011-08-23 16:02:11 -0700415 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700416 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
417 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700418 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700419 java_lang_ref_FinalizerReference->SetAccessFlags(
420 java_lang_ref_FinalizerReference->GetAccessFlags() |
421 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700422 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700423 java_lang_ref_PhantomReference->SetAccessFlags(
424 java_lang_ref_PhantomReference->GetAccessFlags() |
425 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700426 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700427 java_lang_ref_SoftReference->SetAccessFlags(
428 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700429 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700430 java_lang_ref_WeakReference->SetAccessFlags(
431 java_lang_ref_WeakReference->GetAccessFlags() |
432 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700433
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700434 // Setup the ClassLoader, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700435 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700436 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
438
jeffhao8cd6dda2012-02-22 10:15:34 -0800439 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
440 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800441 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
442 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800443 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700444 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
445 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700446 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700447
Brian Carlstroma663ea52011-08-19 23:33:41 -0700448 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700449
Brian Carlstroma004aa92012-02-08 18:05:09 -0800450 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700451}
452
453void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800454 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700455
456 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700457 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700458 // as the types of the field can't be resolved prior to the runtime being
459 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700460 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700461 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700462 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
463
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800464 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
465
Brian Carlstrom16192862011-09-12 17:50:06 -0700466 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800467 FieldHelper fh(pendingNext, this);
468 CHECK_STREQ(fh.GetName(), "pendingNext");
469 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
470 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700471
472 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800473 fh.ChangeField(queue);
474 CHECK_STREQ(fh.GetName(), "queue");
475 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
476 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700477
478 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800479 fh.ChangeField(queueNext);
480 CHECK_STREQ(fh.GetName(), "queueNext");
481 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
482 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700483
484 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800485 fh.ChangeField(referent);
486 CHECK_STREQ(fh.GetName(), "referent");
487 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
488 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700489
490 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800491 fh.ChangeField(zombie);
492 CHECK_STREQ(fh.GetName(), "zombie");
493 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
494 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700495
Elliott Hughesa4f94742012-05-29 16:28:38 -0700496 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800497 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700498 queue->GetOffset(),
499 queueNext->GetOffset(),
500 pendingNext->GetOffset(),
501 zombie->GetOffset());
502
Brian Carlstroma663ea52011-08-19 23:33:41 -0700503 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700504 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700505 ClassRoot class_root = static_cast<ClassRoot>(i);
506 Class* klass = GetClassRoot(class_root);
507 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700508 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700509 // note SetClassRoot does additional validation.
510 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700511 }
512
Elliott Hughes92f14b22011-10-06 12:29:54 -0700513 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700514
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700515 // disable the slow paths in FindClass and CreatePrimitiveClass now
516 // that Object, Class, and Object[] are setup
517 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700518
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800519 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700520}
521
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700522void ClassLinker::RunRootClinits() {
523 Thread* self = Thread::Current();
524 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
525 Class* c = GetClassRoot(ClassRoot(i));
526 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700527 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700528 self->AssertNoPendingException();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700529 }
530 }
531}
532
Brian Carlstromd601af82012-01-06 10:15:19 -0800533bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
534 int oat_fd,
535 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800536 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700537 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800538 const char* dex2oat = dex2oat_string.c_str();
539
Brian Carlstroma004aa92012-02-08 18:05:09 -0800540 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800541
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800542 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800543 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700544 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800545 const char* boot_image_option = boot_image_option_string.c_str();
546
547 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800548 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800549 const char* dex_file_option = dex_file_option_string.c_str();
550
Brian Carlstromd601af82012-01-06 10:15:19 -0800551 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800552 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800553 const char* oat_fd_option = oat_fd_option_string.c_str();
554
Brian Carlstroma004aa92012-02-08 18:05:09 -0800555 std::string oat_location_option_string("--oat-location=");
556 oat_location_option_string += oat_cache_filename;
557 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800558
jeffhao262bf462011-10-20 18:36:32 -0700559 // fork and exec dex2oat
560 pid_t pid = fork();
561 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800562 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800563
564 // change process groups, so we don't get reaped by ProcessManager
565 setpgid(0, 0);
566
jeffhao10037c82012-01-23 15:06:23 -0800567 VLOG(class_linker) << dex2oat
568 << " --runtime-arg -Xms64m"
569 << " --runtime-arg -Xmx64m"
570 << " --runtime-arg -classpath"
571 << " --runtime-arg " << class_path
572 << " " << boot_image_option
573 << " " << dex_file_option
574 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800575 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800576
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800577 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700578 "--runtime-arg", "-Xms64m",
579 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500580 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800581 "--runtime-arg", class_path,
582 boot_image_option,
583 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800584 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800585 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700586 NULL);
587
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800588 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800589 return false;
jeffhao262bf462011-10-20 18:36:32 -0700590 } else {
591 // wait for dex2oat to finish
592 int status;
593 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
594 if (got_pid != pid) {
595 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800596 return false;
jeffhao262bf462011-10-20 18:36:32 -0700597 }
598 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800599 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
600 return false;
jeffhao262bf462011-10-20 18:36:32 -0700601 }
602 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800603 return true;
jeffhao262bf462011-10-20 18:36:32 -0700604}
605
Brian Carlstrom866c8622012-01-06 16:35:13 -0800606void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
607 MutexLock mu(dex_lock_);
608 RegisterOatFileLocked(oat_file);
609}
610
611void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
612 dex_lock_.AssertHeld();
613 oat_files_.push_back(&oat_file);
614}
615
Ian Rogers30fab402012-01-23 15:43:46 -0800616OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700617 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700618 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700619 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800620 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
621 // check the down cast
622 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700623 std::string oat_filename;
624 oat_filename += runtime->GetHostPrefix();
625 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800626 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
627 image_header.GetOatBegin(),
628 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800629 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700630 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700631 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700632 return NULL;
633 }
634 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
635 uint32_t image_oat_checksum = image_header.GetOatChecksum();
636 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800637 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700638 << " to expected oat checksum " << std::hex << oat_checksum
639 << " in image";
640 return NULL;
641 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800642 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800643 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700644 return oat_file;
645}
646
Brian Carlstromae826982011-11-09 01:33:42 -0800647const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700648 MutexLock mu(dex_lock_);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800649 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800650}
651
Brian Carlstroma004aa92012-02-08 18:05:09 -0800652const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800653 for (size_t i = 0; i < oat_files_.size(); i++) {
654 const OatFile* oat_file = oat_files_[i];
655 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800656 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800657 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800658 return oat_file;
659 }
660 }
661 return NULL;
662}
663
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800664static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
665 uint32_t dex_location_checksum,
666 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800667 UniquePtr<OatFile> oat_file(
668 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800669 if (oat_file.get() == NULL) {
670 return NULL;
671 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700672 Runtime* runtime = Runtime::Current();
673 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
674 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
675 return NULL;
676 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800677 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
678 if (oat_dex_file == NULL) {
679 return NULL;
680 }
681 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
682 return NULL;
683 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700684 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800685 return oat_dex_file->OpenDexFile();
686}
687
688const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
689 const std::string& oat_location) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700690 MutexLock mu(dex_lock_);
691 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_location);
692}
693
694const DexFile* ClassLinker::FindOrCreateOatFileForDexLocationLocked(const std::string& dex_location,
695 const std::string& oat_location) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800696 uint32_t dex_location_checksum;
697 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
698 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
699 return NULL;
700 }
701
702 // Check if we already have an up-to-date output file
703 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
704 dex_location_checksum,
705 oat_location);
706 if (dex_file != NULL) {
707 return dex_file;
708 }
709
710 // Generate the output oat file for the dex file
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800711 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
712 if (file.get() == NULL) {
713 LOG(ERROR) << "Failed to create oat file: " << oat_location;
714 return NULL;
715 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700716 if (!GenerateOatFile(dex_location, file->Fd(), oat_location)) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800717 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
718 return NULL;
719 }
720 // Open the oat from file descriptor we passed to GenerateOatFile
721 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
722 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
723 return NULL;
724 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800725 const OatFile* oat_file =
726 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800727 if (oat_file == NULL) {
728 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
729 return NULL;
730 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700731 RegisterOatFileLocked(*oat_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800732 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
733 if (oat_dex_file == NULL) {
734 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
735 return NULL;
736 }
737 return oat_dex_file->OpenDexFile();
738}
739
Brian Carlstromafe25512012-06-27 17:02:58 -0700740bool ClassLinker::VerifyOatFileChecksums(const OatFile* oat_file,
741 const std::string& dex_location,
742 uint32_t dex_location_checksum) {
743 Runtime* runtime = Runtime::Current();
744 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
745 uint32_t image_checksum = image_header.GetOatChecksum();
746 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700747
Brian Carlstromafe25512012-06-27 17:02:58 -0700748 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
749 if (oat_dex_file == NULL) {
750 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
751 << " does not contain contents for " << dex_location;
752 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
753 for (size_t i = 0; i < oat_dex_files.size(); i++) {
754 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
755 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
756 << " contains contents for " << oat_dex_file->GetDexFileLocation();
757 }
758 return false;
759 }
760 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700761
Brian Carlstromafe25512012-06-27 17:02:58 -0700762 if (image_check && dex_check) {
763 return true;
764 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700765
Brian Carlstromafe25512012-06-27 17:02:58 -0700766 if (!image_check) {
767 std::string image_file(image_header.GetImageRoot(
768 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
769 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
770 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
771 << ") mismatch with " << image_file
772 << " (" << std::hex << image_checksum << ")";
773 }
774 if (!dex_check) {
775 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
776 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
777 << ") mismatch with " << dex_location
778 << " (" << std::hex << dex_location_checksum << ")";
779 }
780 return false;
781}
782
783const DexFile* ClassLinker::VerifyAndOpenDexFileFromOatFile(const OatFile* oat_file,
784 const std::string& dex_location,
785 uint32_t dex_location_checksum) {
786 bool verified = VerifyOatFileChecksums(oat_file, dex_location, dex_location_checksum);
787 if (!verified) {
788 return NULL;
789 }
790 RegisterOatFileLocked(*oat_file);
791 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700792}
793
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800794const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700795 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800796
Brian Carlstroma004aa92012-02-08 18:05:09 -0800797 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800798 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800799 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800800 }
801
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700802 // Look for an existing file next to dex. for example, for
803 // /foo/bar/baz.jar, look for /foo/bar/baz.jar.oat.
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800804 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700805 const OatFile* oat_file = FindOatFileFromOatLocationLocked(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800806 if (oat_file != NULL) {
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700807 uint32_t dex_location_checksum;
808 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
809 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
810 // This is the common case in user builds for jar's and apk's in the /system directory.
811 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
812 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
813 RegisterOatFileLocked(*oat_file);
814 return oat_dex_file->OpenDexFile();
815 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700816 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
817 dex_location,
818 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700819 if (dex_file != NULL) {
820 return dex_file;
821 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800822 }
823 // Look for an existing file in the art-cache, validating the result if found
824 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
825 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700826 oat_file = FindOatFileFromOatLocationLocked(cache_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800827 if (oat_file != NULL) {
828 uint32_t dex_location_checksum;
829 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
830 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
831 return NULL;
832 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700833 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
834 dex_location,
835 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700836 if (dex_file != NULL) {
837 return dex_file;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700838 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800839 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700840 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800841 }
jeffhao262bf462011-10-20 18:36:32 -0700842 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800843 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
844
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800845 // Try to generate oat file if it wasn't found or was obsolete.
846 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700847 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700848}
849
Brian Carlstromae826982011-11-09 01:33:42 -0800850const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700851 for (size_t i = 0; i < oat_files_.size(); i++) {
852 const OatFile* oat_file = oat_files_[i];
853 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800854 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700855 return oat_file;
856 }
857 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700858 return NULL;
859}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700860
Brian Carlstromae826982011-11-09 01:33:42 -0800861const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800862 MutexLock mu(dex_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700863 return FindOatFileFromOatLocationLocked(oat_location);
864}
865
866const OatFile* ClassLinker::FindOatFileFromOatLocationLocked(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800867 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
868 if (oat_file != NULL) {
869 return oat_file;
870 }
871
Logan Chien0c717dd2012-03-28 18:31:07 +0800872 oat_file = OatFile::Open(oat_location, oat_location, NULL,
873 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700874 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800875 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700876 }
Brian Carlstromae826982011-11-09 01:33:42 -0800877 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700878 return oat_file;
879}
880
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700881void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800882 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700883 CHECK(!init_done_);
884
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800885 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700886 ImageSpace* space = heap->GetImageSpace();
887 OatFile* oat_file = OpenOat(space);
888 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700889 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
Elliott Hughes74847412012-06-20 18:10:21 -0700890 CHECK(oat_file->GetOatHeader().GetImageFileLocation().empty());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700891 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
892 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700893
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700894 // Special case of setting up the String class early so that we can test arbitrary objects
895 // as being Strings or not
896 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
897 ->AsObjectArray<Class>()->Get(kJavaLangString);
898 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800899
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700900 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
901 static_cast<uint32_t>(dex_caches->GetLength()));
902 for (int i = 0; i < dex_caches->GetLength(); i++) {
903 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
904 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
905 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
906 const DexFile* dex_file = oat_dex_file->OpenDexFile();
907 if (dex_file == NULL) {
908 LOG(FATAL) << "Failed to open dex file " << dex_file_location
909 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700910 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700911
912 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
913
914 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700915 }
916
Brian Carlstroma663ea52011-08-19 23:33:41 -0700917 // reinit clases_ table
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700918 {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700919 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700920 heap->FlushAllocStack();
921 const Spaces& vec = heap->GetSpaces();
922 // TODO: C++0x auto
923 for (Spaces::const_iterator it = vec.begin(); it != vec.end(); ++it) {
924 (*it)->GetLiveBitmap()->Walk(InitFromImageCallback, this);
925 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700926 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700927
928 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800929 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700930 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700931 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700932
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800933 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700934 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
935 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800936 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700937 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700938 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700939 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
940 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
941 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
942 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
943 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
944 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
945 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
946 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Ian Rogers5167c972012-02-03 10:41:20 -0800947 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700948 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700949
950 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700951
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800952 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700953}
954
Brian Carlstrom78128a62011-09-15 17:21:19 -0700955void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700956 DCHECK(obj != NULL);
957 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700958 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700959
Elliott Hughesdbb40792011-11-18 17:05:22 -0800960 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700961 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700962 return;
963 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700964 if (obj->IsClass()) {
965 // restore class to ClassLinker::classes_ table
966 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800967 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800968 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
969 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700970 return;
971 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700972}
973
974// Keep in sync with InitCallback. Anything we visit, we need to
975// reinit references to when reinitializing a ClassLinker from a
976// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700977void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
978 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700979
Elliott Hughesf8349362012-06-18 15:00:06 -0700980 {
981 MutexLock mu(dex_lock_);
982 for (size_t i = 0; i < dex_caches_.size(); i++) {
983 visitor(dex_caches_[i], arg);
984 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700985 }
986
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700987 {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700988 MutexLock mu(*Locks::classlinker_classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700989 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700990 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700991 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700992 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700993
994 // We deliberately ignore the class roots in the image since we
995 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700996 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700997
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700998 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700999}
1000
Elliott Hughesa2155262011-11-16 16:26:58 -08001001void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001002 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -08001003 typedef Table::const_iterator It; // TODO: C++0x auto
1004 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
1005 if (!visitor(it->second, arg)) {
1006 return;
1007 }
1008 }
1009 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
1010 if (!visitor(it->second, arg)) {
1011 return;
1012 }
1013 }
1014}
1015
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001016static bool GetClassesVisitor(Class* c, void* arg) {
1017 std::set<Class*>* classes = reinterpret_cast<std::set<Class*>*>(arg);
1018 classes->insert(c);
1019 return true;
1020}
1021
1022void ClassLinker::VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg) const {
1023 std::set<Class*> classes;
1024 VisitClasses(GetClassesVisitor, &classes);
1025 typedef std::set<Class*>::const_iterator It; // TODO: C++0x auto
1026 for (It it = classes.begin(), end = classes.end(); it != end; ++it) {
1027 if (!visitor(*it, arg)) {
1028 return;
1029 }
1030 }
1031}
1032
1033
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001034ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001035 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001036 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001037 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001038 BooleanArray::ResetArrayClass();
1039 ByteArray::ResetArrayClass();
1040 CharArray::ResetArrayClass();
1041 DoubleArray::ResetArrayClass();
1042 FloatArray::ResetArrayClass();
1043 IntArray::ResetArrayClass();
1044 LongArray::ResetArrayClass();
1045 ShortArray::ResetArrayClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001046 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001047 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001048 STLDeleteElements(&boot_class_path_);
1049 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001050}
1051
1052DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001053 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1054 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001055 return NULL;
1056 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001057 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1058 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001059 return NULL;
1060 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001061 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1062 if (strings.get() == NULL) {
1063 return NULL;
1064 }
1065 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1066 if (types.get() == NULL) {
1067 return NULL;
1068 }
1069 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1070 if (methods.get() == NULL) {
1071 return NULL;
1072 }
1073 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1074 if (fields.get() == NULL) {
1075 return NULL;
1076 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001077 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1078 if (initialized_static_storage.get() == NULL) {
1079 return NULL;
1080 }
1081
1082 dex_cache->Init(location.get(),
1083 strings.get(),
1084 types.get(),
1085 methods.get(),
1086 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001087 initialized_static_storage.get());
1088 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001089}
1090
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001091InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1092 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001093 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1094 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001095 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001096 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001097}
1098
Brian Carlstrom4873d462011-08-21 15:23:39 -07001099Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1100 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001101 Heap* heap = Runtime::Current()->GetHeap();
1102 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001103 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001104 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001105 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001106}
1107
Brian Carlstrom4873d462011-08-21 15:23:39 -07001108Class* ClassLinker::AllocClass(size_t class_size) {
1109 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001110}
1111
Jesse Wilson35baaab2011-08-10 16:18:03 -04001112Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001113 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001114}
1115
1116Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001117 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001118}
1119
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001120ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1121 return ObjectArray<StackTraceElement>::Alloc(
1122 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1123 length);
1124}
1125
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001126static Class* EnsureResolved(Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001127 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001128 DCHECK(klass != NULL);
1129 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001130 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001131 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001132 ObjectLock lock(klass);
1133 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001134 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001135 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001136 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001137 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001138 return NULL;
1139 }
1140 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001141 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001142 lock.Wait();
1143 }
1144 }
1145 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001146 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001147 return NULL;
1148 }
1149 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001150 CHECK(klass->IsResolved()) << PrettyClass(klass);
1151 CHECK(!self->IsExceptionPending())
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001152 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException()) << "\n"
1153 << self->GetException()->Dump();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001154 return klass;
1155}
1156
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001157Class* ClassLinker::FindSystemClass(const char* descriptor) {
1158 return FindClass(descriptor, NULL);
1159}
1160
Ian Rogers365c1022012-06-22 15:05:28 -07001161Class* ClassLinker::FindClass(const char* descriptor, ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001162 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001163 Thread* self = Thread::Current();
1164 DCHECK(self != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001165 self->AssertNoPendingException();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001166 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001167 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1168 // for primitive classes that aren't backed by dex files.
1169 return FindPrimitiveClass(descriptor[0]);
1170 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001171 // Find the class in the loaded classes table.
1172 Class* klass = LookupClass(descriptor, class_loader);
1173 if (klass != NULL) {
1174 return EnsureResolved(klass);
1175 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001176 // Class is not yet loaded.
1177 if (descriptor[0] == '[') {
1178 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001179
Jesse Wilson47daf872011-11-23 11:42:45 -05001180 } else if (class_loader == NULL) {
1181 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1182 if (pair.second != NULL) {
1183 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1184 }
1185
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001186 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001187 // first try the boot class path
1188 Class* system_class = FindSystemClass(descriptor);
1189 if (system_class != NULL) {
1190 return system_class;
1191 }
1192 CHECK(self->IsExceptionPending());
1193 self->ClearException();
1194
1195 // next try the compile time class path
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001196 const std::vector<const DexFile*>* class_path;
1197 {
1198 ScopedObjectAccessUnchecked soa(Thread::Current());
1199 ScopedLocalRef<jobject> jclass_loader(soa.Env(), soa.AddLocalReference<jobject>(class_loader));
1200 class_path = &Runtime::Current()->GetCompileTimeClassPath(jclass_loader.get());
1201 }
1202
1203 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, *class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001204 if (pair.second != NULL) {
1205 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001206 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001207
1208 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001209 ScopedObjectAccessUnchecked soa(self->GetJniEnv());
1210 ScopedLocalRef<jobject> class_loader_object(soa.Env(),
1211 soa.AddLocalReference<jobject>(class_loader));
Elliott Hughes95572412011-12-13 18:14:20 -08001212 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001213 ScopedLocalRef<jobject> result(soa.Env(), NULL);
Ian Rogers365c1022012-06-22 15:05:28 -07001214 {
1215 ScopedThreadStateChange tsc(self, kNative);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001216 ScopedLocalRef<jobject> class_name_object(soa.Env(),
1217 soa.Env()->NewStringUTF(class_name_string.c_str()));
Ian Rogers365c1022012-06-22 15:05:28 -07001218 if (class_name_object.get() == NULL) {
1219 return NULL;
1220 }
1221 CHECK(class_loader_object.get() != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001222 result.reset(soa.Env()->CallObjectMethod(class_loader_object.get(),
1223 WellKnownClasses::java_lang_ClassLoader_loadClass,
1224 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05001225 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001226 if (soa.Env()->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001227 // If the ClassLoader threw, pass that exception up.
1228 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001229 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001230 // broken loader - throw NPE to be compatible with Dalvik
1231 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1232 class_name_string.c_str());
1233 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001234 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001235 // success, return Class*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001236 return soa.Decode<Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001237 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001238 }
1239
Elliott Hughes82914b62012-04-09 15:56:29 -07001240 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001241 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001242}
1243
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001244Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Ian Rogers365c1022012-06-22 15:05:28 -07001245 ClassLoader* class_loader,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001246 const DexFile& dex_file,
1247 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001248 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001249 // Load the class from the dex file.
1250 if (!init_done_) {
1251 // finish up init of hand crafted class_roots_
1252 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001253 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001254 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001255 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001256 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001257 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001258 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001259 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001260 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001261 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001262 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001263 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001264 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001265 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001266 }
1267 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001268 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001269 }
1270 klass->SetDexCache(FindDexCache(dex_file));
1271 LoadClass(dex_file, dex_class_def, klass, class_loader);
1272 // Check for a pending exception during load
1273 Thread* self = Thread::Current();
1274 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001275 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001276 return NULL;
1277 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001278 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001279 klass->SetClinitThreadId(self->GetTid());
1280 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001281 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1282 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001283 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001284 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001285 }
1286 // Finish loading (if necessary) by finding parents
1287 CHECK(!klass->IsLoaded());
1288 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1289 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001290 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001291 lock.NotifyAll();
1292 return NULL;
1293 }
1294 CHECK(klass->IsLoaded());
1295 // Link the class (if necessary)
1296 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001297 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001298 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001299 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001300 lock.NotifyAll();
1301 return NULL;
1302 }
1303 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001304
1305 /*
1306 * We send CLASS_PREPARE events to the debugger from here. The
1307 * definition of "preparation" is creating the static fields for a
1308 * class and initializing them to the standard default values, but not
1309 * executing any code (that comes later, during "initialization").
1310 *
1311 * We did the static preparation in LinkClass.
1312 *
1313 * The class has been prepared and resolved but possibly not yet verified
1314 * at this point.
1315 */
1316 Dbg::PostClassPrepare(klass.get());
1317
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001318 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001319}
1320
Brian Carlstrom4873d462011-08-21 15:23:39 -07001321// Precomputes size that will be needed for Class, matching LinkStaticFields
1322size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1323 const DexFile::ClassDef& dex_class_def) {
1324 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001325 size_t num_ref = 0;
1326 size_t num_32 = 0;
1327 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001328 if (class_data != NULL) {
1329 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1330 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001331 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001332 char c = descriptor[0];
1333 if (c == 'L' || c == '[') {
1334 num_ref++;
1335 } else if (c == 'J' || c == 'D') {
1336 num_64++;
1337 } else {
1338 num_32++;
1339 }
1340 }
1341 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001342 // start with generic class data
1343 size_t size = sizeof(Class);
1344 // follow with reference fields which must be contiguous at start
1345 size += (num_ref * sizeof(uint32_t));
1346 // if there are 64-bit fields to add, make sure they are aligned
1347 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1348 if (num_32 != 0) {
1349 // use an available 32-bit field for padding
1350 num_32--;
1351 }
1352 size += sizeof(uint32_t); // either way, we are adding a word
1353 DCHECK_EQ(size, RoundUp(size, 8));
1354 }
1355 // tack on any 64-bit fields now that alignment is assured
1356 size += (num_64 * sizeof(uint64_t));
1357 // tack on any remaining 32-bit fields
1358 size += (num_32 * sizeof(uint32_t));
1359 return size;
1360}
1361
Ian Rogers19846512012-02-24 11:42:47 -08001362const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1363 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001364 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1365 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1366 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1367 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1368 uint32_t class_def_index;
1369 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1370 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1371 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1372 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1373 return oat_class;
1374}
1375
TDYa12785321912012-04-01 15:24:56 -07001376const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001377 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001378 // method for direct methods (or virtual methods made direct).
1379 Class* declaring_class = method->GetDeclaringClass();
1380 size_t oat_method_index;
1381 if (method->IsStatic() || method->IsDirect()) {
1382 // Simple case where the oat method index was stashed at load time.
1383 oat_method_index = method->GetMethodIndex();
1384 } else {
1385 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1386 // by search for its position in the declared virtual methods.
1387 oat_method_index = declaring_class->NumDirectMethods();
1388 size_t end = declaring_class->NumVirtualMethods();
1389 bool found = false;
1390 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001391 if (declaring_class->GetVirtualMethod(i) == method) {
1392 found = true;
1393 break;
1394 }
Ian Rogersf320b632012-03-13 18:47:47 -07001395 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001396 }
1397 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1398 }
1399 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001400 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001401 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001402 return oat_class->GetOatMethod(oat_method_index);
1403}
1404
1405// Special case to get oat code without overwriting a trampoline.
1406const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001407 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001408 return GetOatMethodFor(method).GetCode();
1409}
1410
Ian Rogers19846512012-02-24 11:42:47 -08001411void ClassLinker::FixupStaticTrampolines(Class* klass) {
1412 ClassHelper kh(klass);
1413 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1414 CHECK(dex_class_def != NULL);
1415 const DexFile& dex_file = kh.GetDexFile();
1416 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1417 if (class_data == NULL) {
1418 return; // no fields or methods - for example a marker interface
1419 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001420 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001421 // OAT file unavailable
1422 return;
1423 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001424 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1425 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001426 ClassDataItemIterator it(dex_file, class_data);
1427 // Skip fields
1428 while (it.HasNextStaticField()) {
1429 it.Next();
1430 }
1431 while (it.HasNextInstanceField()) {
1432 it.Next();
1433 }
1434 size_t method_index = 0;
1435 // Link the code of methods skipped by LinkCode
1436 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1437 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1438 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001439 if (Runtime::Current()->IsMethodTracingActive()) {
1440 Trace* tracer = Runtime::Current()->GetTracer();
1441 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1442 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1443 tracer->ResetSavedCode(method);
1444 method->SetCode(code);
1445 tracer->SaveAndUpdateCode(method);
1446 }
1447 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001448 const void* code = oat_class->GetOatMethod(method_index).GetCode();
Ian Rogers08f753d2012-08-24 14:35:25 -07001449 CHECK(code != NULL)
1450 << "Resolving a static trampoline but found no code for: " << PrettyMethod(method);
Ian Rogers19846512012-02-24 11:42:47 -08001451 method->SetCode(code);
1452 }
1453 method_index++;
1454 }
1455}
1456
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001457static void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class,
1458 uint32_t method_index)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001460 // Every kind of method should at least get an invoke stub from the oat_method.
1461 // non-abstract methods also get their code pointers.
1462 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001463 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001464
Ian Rogers19846512012-02-24 11:42:47 -08001465 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001466 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001467 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001468 return;
1469 }
Ian Rogers19846512012-02-24 11:42:47 -08001470
1471 if (method->IsStatic() && !method->IsConstructor()) {
1472 // For static methods excluding the class initializer, install the trampoline
1473 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001474 }
1475 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001476 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001477 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001478 }
1479
1480 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001481 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001482 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001483 }
1484}
1485
Brian Carlstromf615a612011-07-23 12:50:34 -07001486void ClassLinker::LoadClass(const DexFile& dex_file,
1487 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001488 SirtRef<Class>& klass,
Ian Rogers365c1022012-06-22 15:05:28 -07001489 ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001490 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001491 CHECK(klass->GetDexCache() != NULL);
1492 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001493 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001494 CHECK(descriptor != NULL);
1495
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001496 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001497 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001498 // Make sure that none of our runtime-only flags are set.
1499 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001500 klass->SetAccessFlags(access_flags);
1501 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001502 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001503 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001504
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001505 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001506
Ian Rogers0571d352011-11-03 19:51:38 -07001507 // Load fields fields.
1508 const byte* class_data = dex_file.GetClassData(dex_class_def);
1509 if (class_data == NULL) {
1510 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001511 }
Ian Rogers0571d352011-11-03 19:51:38 -07001512 ClassDataItemIterator it(dex_file, class_data);
1513 if (it.NumStaticFields() != 0) {
1514 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1515 }
1516 if (it.NumInstanceFields() != 0) {
1517 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1518 }
1519 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1520 SirtRef<Field> sfield(AllocField());
1521 klass->SetStaticField(i, sfield.get());
1522 LoadField(dex_file, it, klass, sfield);
1523 }
1524 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1525 SirtRef<Field> ifield(AllocField());
1526 klass->SetInstanceField(i, ifield.get());
1527 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001528 }
1529
Brian Carlstromf5822582012-03-19 22:34:31 -07001530 UniquePtr<const OatFile::OatClass> oat_class;
1531 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1532 oat_class.reset(GetOatClass(dex_file, descriptor));
1533 }
Ian Rogers19846512012-02-24 11:42:47 -08001534
Ian Rogers0571d352011-11-03 19:51:38 -07001535 // Load methods.
1536 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001537 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001538 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001539 }
Ian Rogers0571d352011-11-03 19:51:38 -07001540 if (it.NumVirtualMethods() != 0) {
1541 // TODO: append direct methods to class object
1542 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001543 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001544 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001545 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1546 SirtRef<Method> method(AllocMethod());
1547 klass->SetDirectMethod(i, method.get());
1548 LoadMethod(dex_file, it, klass, method);
1549 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001550 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001551 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001552 method->SetMethodIndex(class_def_method_index);
1553 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001554 }
1555 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1556 SirtRef<Method> method(AllocMethod());
1557 klass->SetVirtualMethod(i, method.get());
1558 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001559 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001560 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001561 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001562 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001563 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001564 }
1565 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001566}
1567
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001568void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001569 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001570 uint32_t field_idx = it.GetMemberIndex();
1571 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001572 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001573 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001574}
1575
Ian Rogers0571d352011-11-03 19:51:38 -07001576void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1577 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001578 uint32_t dex_method_idx = it.GetMemberIndex();
1579 dst->SetDexMethodIndex(dex_method_idx);
1580 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001581 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001582
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001583
1584 StringPiece method_name(dex_file.GetMethodName(method_id));
1585 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001586 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1587 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001588
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001589 if (method_name == "finalize") {
1590 // Create the prototype for a signature of "()V"
1591 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1592 if (void_string_id != NULL) {
1593 const DexFile::TypeId* void_type_id =
1594 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1595 if (void_type_id != NULL) {
1596 std::vector<uint16_t> no_args;
1597 const DexFile::ProtoId* finalizer_proto =
1598 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1599 if (finalizer_proto != NULL) {
1600 // We have the prototype in the dex file
1601 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1602 klass->SetFinalizable();
1603 } else {
1604 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1605 // The Enum class declares a "final" finalize() method to prevent subclasses from
1606 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1607 // subclasses, so we exclude it here.
1608 // We also want to avoid setting the flag on Object, where we know that finalize() is
1609 // empty.
1610 if (klass_descriptor != "Ljava/lang/Object;" &&
1611 klass_descriptor != "Ljava/lang/Enum;") {
1612 klass->SetFinalizable();
1613 }
1614 }
1615 }
1616 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001617 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001618 }
Ian Rogers0571d352011-11-03 19:51:38 -07001619 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001620 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001621
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001622 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001623 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001624 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001625 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001626}
1627
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001628void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001629 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1630 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001631}
1632
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001633void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1634 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001635 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001636 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001637}
1638
Brian Carlstromaded5f72011-10-07 17:15:04 -07001639bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001640 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001641 for (size_t i = 0; i != dex_files_.size(); ++i) {
1642 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001643 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001644 }
1645 }
1646 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001647}
1648
Brian Carlstromaded5f72011-10-07 17:15:04 -07001649bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001650 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001651 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001652}
1653
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001654void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001655 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001656 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001657 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001658 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001659 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001660}
1661
Brian Carlstromaded5f72011-10-07 17:15:04 -07001662void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001663 {
1664 MutexLock mu(dex_lock_);
1665 if (IsDexFileRegisteredLocked(dex_file)) {
1666 return;
1667 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001668 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001669 // Don't alloc while holding the lock, since allocation may need to
1670 // suspend all threads and another thread may need the dex_lock_ to
1671 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001672 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001673 {
1674 MutexLock mu(dex_lock_);
1675 if (IsDexFileRegisteredLocked(dex_file)) {
1676 return;
1677 }
1678 RegisterDexFileLocked(dex_file, dex_cache);
1679 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001680}
1681
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001682void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001683 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001684 RegisterDexFileLocked(dex_file, dex_cache);
1685}
1686
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001687const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001688 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001689 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001690 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1691 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001692 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001693 }
1694 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001695 LOG(FATAL) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001696 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001697}
1698
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001699DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001700 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001701 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001702 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001703 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001704 }
1705 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001706 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001707 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001708}
1709
Ian Rogers19846512012-02-24 11:42:47 -08001710void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1711 MutexLock mu(dex_lock_);
1712 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1713 dex_caches_[i]->Fixup(resolution_method);
1714 }
1715}
1716
Ian Rogersc8982582012-09-07 16:53:25 -07001717Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class, Primitive::Type type) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001718 CHECK(primitive_class != NULL);
Ian Rogersc8982582012-09-07 16:53:25 -07001719 ObjectLock lock(primitive_class); // Must hold lock on object when initializing.
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001720 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001721 primitive_class->SetPrimitiveType(type);
1722 primitive_class->SetStatus(Class::kStatusInitialized);
Ian Rogersc8982582012-09-07 16:53:25 -07001723 Class* existing = InsertClass(Primitive::Descriptor(type), primitive_class, false);
1724 CHECK(existing == NULL) << "InitPrimitiveClass(" << type << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001725 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001726}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001727
Brian Carlstrombe977852011-07-19 14:54:54 -07001728// Create an array class (i.e. the class object for the array, not the
1729// array itself). "descriptor" looks like "[C" or "[[[[B" or
1730// "[Ljava/lang/String;".
1731//
1732// If "descriptor" refers to an array of primitives, look up the
1733// primitive type's internally-generated class object.
1734//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001735// "class_loader" is the class loader of the class that's referring to
1736// us. It's used to ensure that we're looking for the element type in
1737// the right context. It does NOT become the class loader for the
1738// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001739//
1740// Returns NULL with an exception raised on failure.
Ian Rogers365c1022012-06-22 15:05:28 -07001741Class* ClassLinker::CreateArrayClass(const std::string& descriptor, ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001742 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001743
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001744 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001745 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001746 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001747 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001748 return NULL;
1749 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001750
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001751 // See if the component type is already loaded. Array classes are
1752 // always associated with the class loader of their underlying
1753 // element type -- an array of Strings goes with the loader for
1754 // java/lang/String -- so we need to look for it there. (The
1755 // caller should have checked for the existence of the class
1756 // before calling here, but they did so with *their* class loader,
1757 // not the component type's loader.)
1758 //
1759 // If we find it, the caller adds "loader" to the class' initiating
1760 // loader list, which should prevent us from going through this again.
1761 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001762 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001763 // are the same, because our caller (FindClass) just did the
1764 // lookup. (Even if we get this wrong we still have correct behavior,
1765 // because we effectively do this lookup again when we add the new
1766 // class to the hash table --- necessary because of possible races with
1767 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001768 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001769 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001770 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001771 return new_class;
1772 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001773 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001774
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001775 // Fill out the fields in the Class.
1776 //
1777 // It is possible to execute some methods against arrays, because
1778 // all arrays are subclasses of java_lang_Object_, so we need to set
1779 // up a vtable. We can just point at the one in java_lang_Object_.
1780 //
1781 // Array classes are simple enough that we don't need to do a full
1782 // link step.
1783
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001784 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001785 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001786 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001787 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001788 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001789 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001790 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001791 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001792 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001793 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001794 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001795 }
1796 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001797 if (new_class.get() == NULL) {
1798 new_class.reset(AllocClass(sizeof(Class)));
1799 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001800 return NULL;
1801 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001802 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001803 }
Ian Rogersc8982582012-09-07 16:53:25 -07001804 ObjectLock lock(new_class.get()); // Must hold lock on object when initializing.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001805 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001806 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001807 new_class->SetSuperClass(java_lang_Object);
1808 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001809 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001810 new_class->SetClassLoader(component_type->GetClassLoader());
1811 new_class->SetStatus(Class::kStatusInitialized);
1812 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001813 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001814
1815
1816 // All arrays have java/lang/Cloneable and java/io/Serializable as
1817 // interfaces. We need to set that up here, so that stuff like
1818 // "instanceof" works right.
1819 //
1820 // Note: The GC could run during the call to FindSystemClass,
1821 // so we need to make sure the class object is GC-valid while we're in
1822 // there. Do this by clearing the interface list so the GC will just
1823 // think that the entries are null.
1824
1825
1826 // Use the single, global copies of "interfaces" and "iftable"
1827 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001828 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001829 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001830
1831 // Inherit access flags from the component type. Arrays can't be
1832 // used as a superclass or interface, so we want to add "final"
1833 // and remove "interface".
1834 //
1835 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001836 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001837 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001838 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1839 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001840
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001841 Class* existing = InsertClass(descriptor, new_class.get(), false);
1842 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001843 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001844 }
1845 // Another thread must have loaded the class after we
1846 // started but before we finished. Abandon what we've
1847 // done.
1848 //
1849 // (Yes, this happens.)
1850
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001851 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001852}
1853
1854Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001855 switch (Primitive::GetType(type)) {
1856 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001857 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001858 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001859 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001860 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001861 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001862 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001863 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001864 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001865 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001866 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001867 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001868 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001869 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001870 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001871 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001872 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001873 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001874 case Primitive::kPrimNot:
1875 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001876 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001877 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001878 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001879 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001880}
1881
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001882Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001883 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001884 DexCache* dex_cache = klass->GetDexCache();
1885 std::string source;
1886 if (dex_cache != NULL) {
1887 source += " from ";
1888 source += dex_cache->GetLocation()->ToModifiedUtf8();
1889 }
1890 LOG(INFO) << "Loaded class " << descriptor << source;
1891 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001892 size_t hash = StringPieceHash()(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07001893 MutexLock mu(*Locks::classlinker_classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001894 Table& classes = image_class ? image_classes_ : classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001895 Class* existing = LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, classes);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001896#ifndef NDEBUG
1897 // Check we don't have the class in the other table in error
1898 Table& other_classes = image_class ? classes_ : image_classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001899 CHECK(LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001900#endif
1901 if (existing != NULL) {
1902 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001903 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001904 classes.insert(std::make_pair(hash, klass));
1905 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001906}
1907
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001908bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1909 size_t hash = Hash(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07001910 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001911 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001912 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001913 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001914 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001915 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001916 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001917 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001918 classes_.erase(it);
1919 return true;
1920 }
1921 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001922 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001923 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001924 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001925 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001926 image_classes_.erase(it);
1927 return true;
1928 }
1929 }
1930 return false;
1931}
1932
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001933Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1934 size_t hash = Hash(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07001935 MutexLock mu(*Locks::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001936 // TODO: determine if its better to search classes_ or image_classes_ first
Elliott Hughesf8349362012-06-18 15:00:06 -07001937 Class* klass = LookupClassLocked(descriptor, class_loader, hash, classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001938 if (klass != NULL) {
1939 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001940 }
Elliott Hughesf8349362012-06-18 15:00:06 -07001941 return LookupClassLocked(descriptor, class_loader, hash, image_classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001942}
1943
Elliott Hughesf8349362012-06-18 15:00:06 -07001944Class* ClassLinker::LookupClassLocked(const char* descriptor, const ClassLoader* class_loader,
1945 size_t hash, const Table& classes) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001946 ClassHelper kh(NULL, this);
1947 typedef Table::const_iterator It; // TODO: C++0x auto
1948 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001949 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001950 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001951 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001952#ifndef NDEBUG
1953 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001954 Class* klass2 = it->second;
1955 kh.ChangeClass(klass2);
1956 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001957 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001958 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001959 }
1960#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001961 return klass;
1962 }
1963 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001964 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001965}
1966
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001967void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001968 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001969 size_t hash = Hash(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07001970 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001971 typedef Table::const_iterator It; // TODO: C++0x auto
1972 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001973 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001974 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001975 Class* klass = it->second;
1976 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001977 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001978 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001979 }
1980 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001981 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001982 Class* klass = it->second;
1983 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001984 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001985 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001986 }
1987 }
1988}
1989
TDYa1273db52852012-04-01 15:11:43 -07001990#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001991static void CheckMethodsHaveGcMaps(Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001992 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08001993 if (!Runtime::Current()->IsStarted()) {
1994 return;
1995 }
1996 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1997 Method* method = klass->GetDirectMethod(i);
1998 if (!method->IsNative() && !method->IsAbstract()) {
1999 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
2000 }
2001 }
2002 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2003 Method* method = klass->GetVirtualMethod(i);
2004 if (!method->IsNative() && !method->IsAbstract()) {
2005 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
2006 }
2007 }
2008}
2009#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002010static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08002011}
2012#endif
2013
jeffhao98eacac2011-09-14 16:11:53 -07002014void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002015 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08002016 ObjectLock lock(klass);
2017
Ian Rogers9ffb0392012-09-10 11:56:50 -07002018 // Don't attempt to re-verify if already sufficiently verified.
2019 if (klass->IsVerified() ||
2020 (klass->IsCompileTimeVerified() && Runtime::Current()->IsCompiler())) {
jeffhao98eacac2011-09-14 16:11:53 -07002021 return;
2022 }
2023
Ian Rogers9ffb0392012-09-10 11:56:50 -07002024 // The class might already be erroneous, for example at compile time if we attempted to verify
2025 // this class as a parent to another.
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002026 if (klass->IsErroneous()) {
2027 ThrowEarlierClassFailure(klass);
2028 return;
2029 }
2030
Ian Rogers9ffb0392012-09-10 11:56:50 -07002031 if (klass->GetStatus() == Class::kStatusResolved) {
2032 klass->SetStatus(Class::kStatusVerifying);
2033 } else {
2034 CHECK_EQ(klass->GetStatus(), Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
2035 CHECK(!Runtime::Current()->IsCompiler());
2036 klass->SetStatus(Class::kStatusVerifyingAtRuntime);
2037 }
jeffhao98eacac2011-09-14 16:11:53 -07002038
Ian Rogers9ffb0392012-09-10 11:56:50 -07002039 // Verify super class.
Ian Rogers1c5eb702012-02-01 09:18:34 -08002040 Class* super = klass->GetSuperClass();
2041 std::string error_msg;
2042 if (super != NULL) {
Ian Rogers9ffb0392012-09-10 11:56:50 -07002043 // Acquire lock to prevent races on verifying the super class.
Ian Rogers1c5eb702012-02-01 09:18:34 -08002044 ObjectLock lock(super);
2045
2046 if (!super->IsVerified() && !super->IsErroneous()) {
2047 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2048 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002049 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08002050 error_msg = "Rejecting class ";
2051 error_msg += PrettyDescriptor(klass);
2052 error_msg += " that attempts to sub-class erroneous class ";
2053 error_msg += PrettyDescriptor(super);
2054 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2055 Thread* self = Thread::Current();
2056 SirtRef<Throwable> cause(self->GetException());
2057 if (cause.get() != NULL) {
2058 self->ClearException();
2059 }
2060 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2061 if (cause.get() != NULL) {
2062 self->GetException()->SetCause(cause.get());
2063 }
Ian Rogers1c5eb702012-02-01 09:18:34 -08002064 klass->SetStatus(Class::kStatusError);
2065 return;
2066 }
2067 }
2068
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002069 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002070 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002071 Class::Status oat_file_class_status(Class::kStatusNotReady);
2072 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002073 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
jeffhaoec014232012-09-05 10:42:25 -07002074 if (oat_file_class_status == Class::kStatusError) {
2075 LOG(WARNING) << "Skipping runtime verification of erroneous class " << PrettyDescriptor(klass)
2076 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2077 error_msg = "Rejecting class ";
2078 error_msg += PrettyDescriptor(klass);
2079 error_msg += " because it failed compile-time verification";
2080 Thread::Current()->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2081 klass->SetStatus(Class::kStatusError);
2082 return;
2083 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002084 if (!preverified) {
2085 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2086 }
2087 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Ian Rogers529781d2012-07-23 17:24:29 -07002088 if (!preverified && verifier_failure != verifier::MethodVerifier::kNoFailure) {
2089 LOG(WARNING) << "Soft verification failure in class " << PrettyDescriptor(klass)
2090 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2091 << " because: " << error_msg;
2092 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002093 Thread::Current()->AssertNoPendingException();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002094 // Make sure all classes referenced by catch blocks are resolved.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002095 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002096 if (verifier_failure == verifier::MethodVerifier::kNoFailure) {
2097 klass->SetStatus(Class::kStatusVerified);
2098 } else {
2099 CHECK_EQ(verifier_failure, verifier::MethodVerifier::kSoftFailure);
2100 // Soft failures at compile time should be retried at runtime. Soft
2101 // failures at runtime will be handled by slow paths in the generated
2102 // code. Set status accordingly.
2103 if (Runtime::Current()->IsCompiler()) {
2104 klass->SetStatus(Class::kStatusRetryVerificationAtRuntime);
2105 } else {
2106 klass->SetStatus(Class::kStatusVerified);
2107 }
2108 }
Ian Rogers9ffb0392012-09-10 11:56:50 -07002109 // Sanity check that a verified class has GC maps on all methods.
Ian Rogersc20a83e2012-01-18 18:15:32 -08002110 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002111 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002112 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002113 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2114 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002115 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002116 self->AssertNoPendingException();
Ian Rogers1c5eb702012-02-01 09:18:34 -08002117 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002118 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002119 }
jeffhao98eacac2011-09-14 16:11:53 -07002120}
2121
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002122bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2123 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002124 if (!Runtime::Current()->IsStarted()) {
2125 return false;
2126 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002127 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002128 return false;
2129 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002130 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2131 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002132 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002133 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002134 const char* descriptor = ClassHelper(klass).GetDescriptor();
2135 uint32_t class_def_index;
2136 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002137 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002138 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002139 CHECK(oat_class.get() != NULL)
2140 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002141 oat_file_class_status = oat_class->GetStatus();
Ian Rogers9ffb0392012-09-10 11:56:50 -07002142 if (oat_file_class_status == Class::kStatusVerified ||
2143 oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002144 return true;
2145 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002146 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002147 // Compile time verification failed with a soft error. Compile time verification can fail
2148 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002149 // class ... {
2150 // Foo x;
2151 // .... () {
2152 // if (...) {
2153 // v1 gets assigned a type of resolved class Foo
2154 // } else {
2155 // v1 gets assigned a type of unresolved class Bar
2156 // }
2157 // iput x = v1
2158 // } }
2159 // when we merge v1 following the if-the-else it results in Conflict
2160 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2161 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2162 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2163 // at compile time).
2164 return false;
2165 }
jeffhao1ac29442012-03-26 11:37:32 -07002166 if (oat_file_class_status == Class::kStatusError) {
2167 // Compile time verification failed with a hard error. This is caused by invalid instructions
2168 // in the class. These errors are unrecoverable.
2169 return false;
2170 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002171 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002172 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2173 // not loading the class.
2174 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2175 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002176 return false;
2177 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002178 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002179 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2180
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002181 return false;
2182}
2183
2184void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2185 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2186 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2187 }
2188 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2189 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2190 }
2191}
2192
2193void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2194 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2195 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2196 if (code_item == NULL) {
2197 return; // native or abstract method
2198 }
2199 if (code_item->tries_size_ == 0) {
2200 return; // nothing to process
2201 }
2202 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2203 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2204 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2205 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2206 CatchHandlerIterator iterator(handlers_ptr);
2207 for (; iterator.HasNext(); iterator.Next()) {
2208 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2209 // unresolved exception types will be ignored by exception delivery
2210 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2211 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2212 if (exception_type == NULL) {
2213 DCHECK(Thread::Current()->IsExceptionPending());
2214 Thread::Current()->ClearException();
2215 }
2216 }
2217 }
2218 handlers_ptr = iterator.EndDataPointer();
2219 }
2220}
2221
Ian Rogersc2b44472011-12-14 21:17:17 -08002222static void CheckProxyConstructor(Method* constructor);
2223static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2224
Jesse Wilson95caa792011-10-12 18:14:17 -04002225Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002226 ClassLoader* loader, ObjectArray<Method>* methods,
2227 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002228 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002229 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002230 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002231 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002232 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002233 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002234 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002235 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002236 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002237 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002238
2239 klass->SetStatus(Class::kStatusIdx);
2240
2241 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2242
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002243 // Instance fields are inherited, but we add a couple of static fields...
2244 klass->SetSFields(AllocObjectArray<Field>(2));
2245 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2246 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2247 SirtRef<Field> interfaces_sfield(AllocField());
2248 klass->SetStaticField(0, interfaces_sfield.get());
2249 interfaces_sfield->SetDexFieldIndex(0);
2250 interfaces_sfield->SetDeclaringClass(klass.get());
2251 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2252 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2253 SirtRef<Field> throws_sfield(AllocField());
2254 klass->SetStaticField(1, throws_sfield.get());
2255 throws_sfield->SetDexFieldIndex(1);
2256 throws_sfield->SetDeclaringClass(klass.get());
2257 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002258
Ian Rogers466bb252011-10-14 03:29:56 -07002259 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002260 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002261 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002262
Ian Rogers466bb252011-10-14 03:29:56 -07002263 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002264 size_t num_virtual_methods = methods->GetLength();
2265 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2266 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002267 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002268 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002269 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002270
2271 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2272 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2273 DCHECK(!Thread::Current()->IsExceptionPending());
2274
2275 // Link the fields and virtual methods, creating vtable and iftables
2276 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002277 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002278 return NULL;
2279 }
Ian Rogersc8982582012-09-07 16:53:25 -07002280 {
2281 ObjectLock lock(klass.get()); // Must hold lock on object when initializing.
2282 interfaces_sfield->SetObject(NULL, interfaces);
2283 throws_sfield->SetObject(NULL, throws);
2284 klass->SetStatus(Class::kStatusInitialized);
2285 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002286
2287 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002288 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002289 CHECK(klass->GetIFields() == NULL);
2290 CheckProxyConstructor(klass->GetDirectMethod(0));
2291 for (size_t i = 0; i < num_virtual_methods; ++i) {
2292 SirtRef<Method> prototype(methods->Get(i));
2293 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2294 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002295
2296 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2297 name->ToModifiedUtf8().c_str()));
2298 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2299
2300 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2301 name->ToModifiedUtf8().c_str()));
2302 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002303
2304 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002305 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002306 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2307 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002308 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002309}
2310
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002311std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2312 DCHECK(proxy_class->IsProxyClass());
2313 String* name = proxy_class->GetName();
2314 DCHECK(name != NULL);
2315 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2316}
2317
Ian Rogers16f93672012-02-14 12:29:06 -08002318Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2319 DCHECK(proxy_class->IsProxyClass());
2320 DCHECK(proxy_method->IsProxyMethod());
2321 // Locate the dex cache of the original interface/Object
2322 DexCache* dex_cache = NULL;
2323 {
2324 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2325 MutexLock mu(dex_lock_);
2326 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2327 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2328 dex_cache = dex_caches_[i];
2329 break;
2330 }
2331 }
2332 }
2333 CHECK(dex_cache != NULL);
2334 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2335 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2336 CHECK(resolved_method != NULL);
2337 return resolved_method;
2338}
2339
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002340
2341Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002342 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002343 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002344 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002345 Method* proxy_constructor = proxy_direct_methods->Get(2);
2346 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2347 // code_ too)
2348 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2349 // Make this constructor public and fix the class to be our Proxy version
2350 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002351 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002352 return constructor;
2353}
2354
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002355static void CheckProxyConstructor(Method* constructor)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002356 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002357 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002358 MethodHelper mh(constructor);
2359 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002360 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002361 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002362}
2363
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002364Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2365 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2366 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002367 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2368 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002369 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002370 // as necessary
2371 Method* method = down_cast<Method*>(prototype->Clone());
2372
2373 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2374 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002375 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002376 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002377
Ian Rogers466bb252011-10-14 03:29:56 -07002378 // At runtime the method looks like a reference and argument saving method, clone the code
2379 // related parameters from this method.
2380 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2381 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2382 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2383 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002384#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002385 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002386#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002387 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2388 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002389#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002390
Ian Rogersc2b44472011-12-14 21:17:17 -08002391 return method;
2392}
Jesse Wilson95caa792011-10-12 18:14:17 -04002393
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002394static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002396 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002397 CHECK(!prototype->IsFinal());
2398 CHECK(method->IsFinal());
2399 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002400
2401 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2402 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2403 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2404 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2405 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2406 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2407 method->GetDexCacheInitializedStaticStorage());
2408 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2409
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002410 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002411 MethodHelper mh2(prototype.get());
2412 CHECK_STREQ(mh.GetName(), mh2.GetName());
2413 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002414 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002415 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002416}
2417
Ian Rogers0045a292012-03-31 21:08:41 -07002418bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002419 CHECK(klass->IsResolved() || klass->IsErroneous())
Ian Rogers9ffb0392012-09-10 11:56:50 -07002420 << PrettyClass(klass) << ": state=" << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002421
Carl Shapirob5573532011-07-12 18:22:59 -07002422 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002423
Brian Carlstrom25c33252011-09-18 15:58:35 -07002424 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002425 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002426 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002427 ObjectLock lock(klass);
2428
Brian Carlstromd1422f82011-09-28 11:37:09 -07002429 if (klass->GetStatus() == Class::kStatusInitialized) {
2430 return true;
2431 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002432
Brian Carlstromd1422f82011-09-28 11:37:09 -07002433 if (klass->IsErroneous()) {
2434 ThrowEarlierClassFailure(klass);
2435 return false;
2436 }
2437
jeffhaoebe2e0f2012-06-06 15:19:40 -07002438 if (klass->GetStatus() == Class::kStatusResolved ||
2439 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002440 VerifyClass(klass);
2441 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002442 if (klass->GetStatus() == Class::kStatusError) {
2443 CHECK(self->IsExceptionPending());
2444 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002445 return false;
2446 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002447 }
2448
Brian Carlstrom25c33252011-09-18 15:58:35 -07002449 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2450 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002451 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002452 // don't bother going to kStatusInitializing. We return false so that
2453 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002454 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2455 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002456 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002457 }
2458
Brian Carlstromd1422f82011-09-28 11:37:09 -07002459 // If the class is kStatusInitializing, either this thread is
2460 // initializing higher up the stack or another thread has beat us
2461 // to initializing and we need to wait. Either way, this
2462 // invocation of InitializeClass will not be responsible for
2463 // running <clinit> and will return.
2464 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002465 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002466 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002467 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002468 return true;
2469 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002470 // No. That's fine. Wait for another thread to finish initializing.
2471 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002472 }
2473
2474 if (!ValidateSuperClassDescriptors(klass)) {
2475 klass->SetStatus(Class::kStatusError);
2476 return false;
2477 }
2478
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002479 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002480
Elliott Hughesdcc24742011-09-07 14:02:44 -07002481 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002482 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002483 }
2484
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002485 uint64_t t0 = NanoTime();
2486
Ian Rogers0045a292012-03-31 21:08:41 -07002487 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002488 // Super class initialization failed, this can be because we can't run
2489 // super-class class initializers in which case we'll be verified.
2490 // Otherwise this class is erroneous.
2491 if (!can_run_clinit) {
2492 CHECK(klass->IsVerified());
2493 } else {
2494 CHECK(klass->IsErroneous());
2495 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002496 return false;
2497 }
2498
Ian Rogers0045a292012-03-31 21:08:41 -07002499 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002500
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002501 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002502 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002503 }
2504
Ian Rogers19846512012-02-24 11:42:47 -08002505 FixupStaticTrampolines(klass);
2506
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002507 uint64_t t1 = NanoTime();
2508
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002509 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002510 {
2511 ObjectLock lock(klass);
2512
2513 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002514 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002515 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002516 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002517 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002518 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2519 RuntimeStats* thread_stats = self->GetStats();
2520 ++global_stats->class_init_count;
2521 ++thread_stats->class_init_count;
2522 global_stats->class_init_time_ns += (t1 - t0);
2523 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002524 // Set the class as initialized except if we can't initialize static fields and static field
2525 // initialization is necessary.
2526 if (!can_init_statics && has_static_field_initializers) {
2527 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2528 success = false;
2529 } else {
2530 klass->SetStatus(Class::kStatusInitialized);
2531 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002532 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002533 ClassHelper kh(klass);
2534 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002535 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002536 }
2537 lock.NotifyAll();
2538 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002539 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002540}
2541
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002542bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002543 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002544 while (true) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002545 self->AssertNoPendingException();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002546 lock.Wait();
2547
2548 // When we wake up, repeat the test for init-in-progress. If
2549 // there's an exception pending (only possible if
2550 // "interruptShouldThrow" was set), bail out.
2551 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002552 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002553 klass->SetStatus(Class::kStatusError);
2554 return false;
2555 }
2556 // Spurious wakeup? Go back to waiting.
2557 if (klass->GetStatus() == Class::kStatusInitializing) {
2558 continue;
2559 }
2560 if (klass->IsErroneous()) {
2561 // The caller wants an exception, but it was thrown in a
2562 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002563 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002564 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002565 return false;
2566 }
2567 if (klass->IsInitialized()) {
2568 return true;
2569 }
2570 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2571 }
2572 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2573}
2574
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002575bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2576 if (klass->IsInterface()) {
2577 return true;
2578 }
2579 // begin with the methods local to the superclass
2580 if (klass->HasSuperClass() &&
2581 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2582 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002583 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2584 const Method* method = klass->GetVTable()->Get(i);
2585 if (method != super->GetVTable()->Get(i) &&
2586 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002587 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2588 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2589 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002590 return false;
2591 }
2592 }
2593 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002594 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2595 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2596 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002597 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2598 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002599 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002600 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2601 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002602 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2603 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2604 PrettyMethod(method).c_str(),
2605 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002606 return false;
2607 }
2608 }
2609 }
2610 }
2611 return true;
2612}
2613
Ian Rogers595799e2012-01-11 17:32:51 -08002614// Returns true if classes referenced by the signature of the method are the
2615// same classes in klass1 as they are in klass2.
2616bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2617 const Class* klass1,
2618 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002619 if (klass1 == klass2) {
2620 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002621 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002622 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002623 const DexFile::ProtoId& proto_id =
2624 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002625 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2626 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002627 if (descriptor == NULL) {
2628 break;
2629 }
2630 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2631 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002632 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002633 return false;
2634 }
2635 }
2636 }
2637 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002638 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002639 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002640 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002641 return false;
2642 }
2643 }
2644 return true;
2645}
2646
Ian Rogers595799e2012-01-11 17:32:51 -08002647// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2648bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2649 const Class* klass1,
2650 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002651 CHECK(descriptor != NULL);
2652 CHECK(klass1 != NULL);
2653 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002654 if (klass1 == klass2) {
2655 return true;
2656 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002657 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002658 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002659 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002660 }
Ian Rogers595799e2012-01-11 17:32:51 -08002661 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2662 if (found2 == NULL) {
2663 Thread::Current()->ClearException();
2664 }
2665 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002666}
2667
Ian Rogers0045a292012-03-31 21:08:41 -07002668bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002669 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002670 if (!klass->IsInterface() && klass->HasSuperClass()) {
2671 Class* super_class = klass->GetSuperClass();
Ian Rogers9ffb0392012-09-10 11:56:50 -07002672 if (!super_class->IsInitialized()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002673 CHECK(!super_class->IsInterface());
Ian Rogers9ffb0392012-09-10 11:56:50 -07002674 ObjectLock lock(klass); // Must hold lock on object when initializing and setting status.
Ian Rogers0045a292012-03-31 21:08:41 -07002675 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002676 // TODO: check for a pending exception
2677 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002678 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002679 // Don't set status to error when we can't run <clinit>.
2680 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2681 klass->SetStatus(Class::kStatusVerified);
2682 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002683 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002684 klass->SetStatus(Class::kStatusError);
2685 klass->NotifyAll();
2686 return false;
2687 }
2688 }
2689 }
2690 return true;
2691}
2692
Ian Rogers0045a292012-03-31 21:08:41 -07002693bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002694 CHECK(c != NULL);
2695 if (c->IsInitialized()) {
2696 return true;
2697 }
2698
Elliott Hughes5f791332011-09-15 17:45:30 -07002699 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002700 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002701 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002702 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002703 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002704 }
2705 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002706}
2707
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002708void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002709 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Ian Rogers365c1022012-06-22 15:05:28 -07002710 ClassLoader* cl = c->GetClassLoader();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002711 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002712 ClassDataItemIterator it(dex_file, class_data);
2713 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002714 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002715 }
2716}
2717
Ian Rogers0045a292012-03-31 21:08:41 -07002718bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002719 size_t num_static_fields = klass->NumStaticFields();
2720 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002721 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002722 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002723 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002724 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002725 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002726 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002727 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002728 ClassHelper kh(klass);
2729 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002730 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002731 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002732 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002733
Ian Rogers0571d352011-11-03 19:51:38 -07002734 if (it.HasNext()) {
2735 // We reordered the fields, so we need to be able to map the field indexes to the right fields.
Elliott Hughesa0e18062012-04-13 15:59:59 -07002736 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002737 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2738 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002739 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002740 }
Ian Rogers0045a292012-03-31 21:08:41 -07002741 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002742 }
Ian Rogers0045a292012-03-31 21:08:41 -07002743 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002744}
2745
Ian Rogersc2b44472011-12-14 21:17:17 -08002746bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002747 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002748 if (!LinkSuperClass(klass)) {
2749 return false;
2750 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002751 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002752 return false;
2753 }
2754 if (!LinkInstanceFields(klass)) {
2755 return false;
2756 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002757 if (!LinkStaticFields(klass)) {
2758 return false;
2759 }
2760 CreateReferenceInstanceOffsets(klass);
2761 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002762 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2763 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002764 return true;
2765}
2766
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002767bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002768 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002769 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2770 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002771 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002772 uint16_t super_class_idx = class_def->superclass_idx_;
2773 if (super_class_idx != DexFile::kDexNoIndex16) {
2774 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002775 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002776 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002777 return false;
2778 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002779 // Verify
2780 if (!klass->CanAccess(super_class)) {
2781 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2782 "Class %s extended by class %s is inaccessible",
2783 PrettyDescriptor(super_class).c_str(),
2784 PrettyDescriptor(klass.get()).c_str());
2785 return false;
2786 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002787 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002788 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002789 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2790 if (interfaces != NULL) {
2791 for (size_t i = 0; i < interfaces->Size(); i++) {
2792 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2793 Class* interface = ResolveType(dex_file, idx, klass.get());
2794 if (interface == NULL) {
2795 DCHECK(Thread::Current()->IsExceptionPending());
2796 return false;
2797 }
2798 // Verify
2799 if (!klass->CanAccess(interface)) {
2800 // TODO: the RI seemed to ignore this in my testing.
2801 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2802 "Interface %s implemented by class %s is inaccessible",
2803 PrettyDescriptor(interface).c_str(),
2804 PrettyDescriptor(klass.get()).c_str());
2805 return false;
2806 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002807 }
2808 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002809 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002810 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002811 return true;
2812}
2813
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002814bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002815 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002816 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002817 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002818 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002819 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002820 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002821 return false;
2822 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002823 return true;
2824 }
2825 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002826 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002827 return false;
2828 }
2829 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002830 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002831 Thread* self = Thread::Current();
2832 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002833 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002834 PrettyDescriptor(super).c_str(),
2835 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002836 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002837 return false;
2838 }
2839 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002840 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002841 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002842 PrettyDescriptor(super).c_str(),
2843 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002844 return false;
2845 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002846
2847 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2848 if (super->IsFinalizable()) {
2849 klass->SetFinalizable();
2850 }
2851
Elliott Hughes2da50362011-10-10 16:57:08 -07002852 // Inherit reference flags (if any) from the superclass.
2853 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2854 if (reference_flags != 0) {
2855 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2856 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002857 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002858 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002859 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002860 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002861 return false;
2862 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002863
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002864#ifndef NDEBUG
2865 // Ensure super classes are fully resolved prior to resolving fields..
2866 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002867 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002868 super = super->GetSuperClass();
2869 }
2870#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002871 return true;
2872}
2873
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002874// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002875bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002876 if (klass->IsInterface()) {
2877 // No vtable.
2878 size_t count = klass->NumVirtualMethods();
2879 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002880 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002881 return false;
2882 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002883 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002884 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002885 }
jeffhaobdb76512011-09-07 11:43:16 -07002886 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002887 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002888 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002889 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002890 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002891 }
2892 return true;
2893}
2894
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002895bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002896 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002897 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2898 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002899 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002900 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002901 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002902 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002903 MethodHelper local_mh(NULL, this);
2904 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002905 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002906 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002907 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002908 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002909 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002910 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002911 super_mh.ChangeMethod(super_method);
Elliott Hughes39717372012-07-13 16:21:23 -07002912 if (local_mh.HasSameNameAndSignature(&super_mh)) {
2913 if (klass->CanAccessMember(super_method->GetDeclaringClass(), super_method->GetAccessFlags())) {
2914 if (super_method->IsFinal()) {
2915 ThrowLinkageError("Method %s overrides final method in class %s",
2916 PrettyMethod(local_method).c_str(),
2917 super_mh.GetDeclaringClassDescriptor());
2918 return false;
2919 }
2920 vtable->Set(j, local_method);
2921 local_method->SetMethodIndex(j);
2922 break;
2923 } else {
2924 LOG(WARNING) << "Before Android 4.1, method " << PrettyMethod(local_method)
2925 << " would have incorrectly overridden the package-private method in "
2926 << PrettyDescriptor(super_mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002927 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002928 }
2929 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002930 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002931 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002932 vtable->Set(actual_count, local_method);
2933 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002934 actual_count += 1;
2935 }
2936 }
2937 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002938 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002939 return false;
2940 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002941 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002942 CHECK_LE(actual_count, max_count);
2943 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002944 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002945 }
Ian Rogers30fab402012-01-23 15:43:46 -08002946 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002947 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002948 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002949 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002950 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002951 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002952 return false;
2953 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002954 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002955 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002956 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2957 vtable->Set(i, virtual_method);
2958 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002959 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002960 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002961 }
2962 return true;
2963}
2964
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002965bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002966 size_t super_ifcount;
2967 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002968 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002969 } else {
2970 super_ifcount = 0;
2971 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002972 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002973 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07002974 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002975 ifcount += num_interfaces;
2976 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002977 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002978 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002979 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002980 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002981 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002982 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002983 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002984 return true;
2985 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002986 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002987 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002988 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2989 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002990 Class* super_interface = super_iftable->Get(i)->GetInterface();
2991 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002992 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002993 }
2994 // Flatten the interface inheritance hierarchy.
2995 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002996 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002997 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002998 DCHECK(interface != NULL);
2999 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003000 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08003001 Thread* self = Thread::Current();
3002 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003003 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003004 PrettyDescriptor(klass.get()).c_str(),
3005 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003006 return false;
3007 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08003008 // Check if interface is already in iftable
3009 bool duplicate = false;
3010 for (size_t j = 0; j < idx; j++) {
3011 Class* existing_interface = iftable->Get(j)->GetInterface();
3012 if (existing_interface == interface) {
3013 duplicate = true;
3014 break;
3015 }
3016 }
3017 if (!duplicate) {
3018 // Add this non-duplicate interface.
3019 iftable->Set(idx++, AllocInterfaceEntry(interface));
3020 // Add this interface's non-duplicate super-interfaces.
3021 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
3022 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
3023 bool super_duplicate = false;
3024 for (size_t k = 0; k < idx; k++) {
3025 Class* existing_interface = iftable->Get(k)->GetInterface();
3026 if (existing_interface == super_interface) {
3027 super_duplicate = true;
3028 break;
3029 }
3030 }
3031 if (!super_duplicate) {
3032 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
3033 }
3034 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003035 }
3036 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08003037 // Shrink iftable in case duplicates were found
3038 if (idx < ifcount) {
3039 iftable.reset(iftable->CopyOf(idx));
3040 ifcount = idx;
3041 } else {
3042 CHECK_EQ(idx, ifcount);
3043 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003044 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07003045
3046 // If we're an interface, we don't need the vtable pointers, so we're done.
3047 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003048 return true;
3049 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003050 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003051 MethodHelper vtable_mh(NULL, this);
3052 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003053 for (size_t i = 0; i < ifcount; ++i) {
3054 InterfaceEntry* interface_entry = iftable->Get(i);
3055 Class* interface = interface_entry->GetInterface();
3056 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
3057 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003058 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003059 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
3060 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003061 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003062 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07003063 // For each method listed in the interface's method list, find the
3064 // matching method in our class's method list. We want to favor the
3065 // subclass over the superclass, which just requires walking
3066 // back from the end of the vtable. (This only matters if the
3067 // superclass defines a private method and this class redefines
3068 // it -- otherwise it would use the same vtable slot. In .dex files
3069 // those don't end up in the virtual method table, so it shouldn't
3070 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003071 for (k = vtable->GetLength() - 1; k >= 0; --k) {
3072 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003073 vtable_mh.ChangeMethod(vtable_method);
3074 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07003075 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07003076 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003077 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003078 return false;
3079 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003080 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003081 break;
3082 }
3083 }
3084 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003085 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003086 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003087 Method* mir_method = miranda_list[mir];
3088 vtable_mh.ChangeMethod(mir_method);
3089 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003090 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003091 break;
3092 }
3093 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003094 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003095 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003096 miranda_method.reset(AllocMethod());
3097 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3098 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003099 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003100 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003101 }
3102 }
3103 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003104 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003105 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003106 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003107 klass->SetVirtualMethods((old_method_count == 0)
3108 ? AllocObjectArray<Method>(new_method_count)
3109 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003110
Ian Rogers30fab402012-01-23 15:43:46 -08003111 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3112 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003113 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003114 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003115 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003116 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003117 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003118 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003119 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3120 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3121 klass->SetVirtualMethod(old_method_count + i, method);
3122 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003123 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003124 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003125 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003126 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003127
3128 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3129 for (int i = 0; i < vtable->GetLength(); ++i) {
3130 CHECK(vtable->Get(i) != NULL);
3131 }
3132
3133// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3134
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003135 return true;
3136}
3137
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003138bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3139 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003140 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003141}
3142
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003143bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3144 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003145 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003146 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003147 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003148 return success;
3149}
3150
Brian Carlstromdbc05252011-09-09 01:59:59 -07003151struct LinkFieldsComparator {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003152 explicit LinkFieldsComparator(FieldHelper* fh)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003153 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003154 : fh_(fh) {}
3155 // No thread safety analysis as will be called from STL. Checked lock held in constructor.
3156 bool operator()(const Field* field1, const Field* field2) NO_THREAD_SAFETY_ANALYSIS {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003157 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003158 fh_->ChangeField(field1);
3159 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3160 fh_->ChangeField(field2);
3161 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003162 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3163 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3164 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3165 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003166 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3167 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3168 if (order1 != order2) {
3169 return order1 < order2;
3170 }
3171
3172 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003173 fh_->ChangeField(field1);
3174 StringPiece name1(fh_->GetName());
3175 fh_->ChangeField(field2);
3176 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003177 return name1 < name2;
3178 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003179
3180 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003181};
3182
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003183bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003184 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003185 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003186
3187 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003188 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003189
3190 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003191 size_t size;
3192 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003193 if (is_static) {
3194 size = klass->GetClassSize();
3195 field_offset = Class::FieldsOffset();
3196 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003197 Class* super_class = klass->GetSuperClass();
3198 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003199 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003200 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003201 }
3202 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003203 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003204
Brian Carlstromdbc05252011-09-09 01:59:59 -07003205 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003206
Brian Carlstromdbc05252011-09-09 01:59:59 -07003207 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003208 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003209 std::deque<Field*> grouped_and_sorted_fields;
3210 for (size_t i = 0; i < num_fields; i++) {
3211 grouped_and_sorted_fields.push_back(fields->Get(i));
3212 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003213 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003214 std::sort(grouped_and_sorted_fields.begin(),
3215 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003216 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003217
3218 // References should be at the front.
3219 size_t current_field = 0;
3220 size_t num_reference_fields = 0;
3221 for (; current_field < num_fields; current_field++) {
3222 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003223 fh.ChangeField(field);
3224 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003225 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003226 if (isPrimitive) {
3227 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003228 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003229 grouped_and_sorted_fields.pop_front();
3230 num_reference_fields++;
3231 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003232 field->SetOffset(field_offset);
3233 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003234 }
3235
3236 // Now we want to pack all of the double-wide fields together. If
3237 // we're not aligned, though, we want to shuffle one 32-bit field
3238 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003239 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003240 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3241 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003242 fh.ChangeField(field);
3243 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003244 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3245 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003246 continue;
3247 }
3248 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003249 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003250 // drop the consumed field
3251 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3252 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003253 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003254 // whether we found a 32-bit field for padding or not, we advance
3255 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003256 }
3257
3258 // Alignment is good, shuffle any double-wide fields forward, and
3259 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003260 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003261 while (!grouped_and_sorted_fields.empty()) {
3262 Field* field = grouped_and_sorted_fields.front();
3263 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003264 fh.ChangeField(field);
3265 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003266 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003267 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003268 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003269 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003270 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003271 ? sizeof(uint64_t)
3272 : sizeof(uint32_t)));
3273 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003274 }
3275
Elliott Hughesadb460d2011-10-05 17:02:34 -07003276 // 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 -08003277 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3278 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003279 // We know there are no non-reference fields in the Reference classes, and we know
3280 // that 'referent' is alphabetically last, so this is easy...
3281 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003282 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003283 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003284 --num_reference_fields;
3285 }
3286
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003287#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003288 // Make sure that all reference fields appear before
3289 // non-reference fields, and all double-wide fields are aligned.
3290 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003291 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003292 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003293 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003294 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003295 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003296 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003297 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3298 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003299 fh.ChangeField(field);
3300 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003301 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003302 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003303 is_primitive = true; // We lied above, so we have to expect a lie here.
3304 }
3305 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003306 if (!seen_non_ref) {
3307 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003308 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003309 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003310 } else {
3311 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003312 }
3313 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003314 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003315 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003316 }
3317#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003318 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003319 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003320 if (is_static) {
3321 klass->SetNumReferenceStaticFields(num_reference_fields);
3322 klass->SetClassSize(size);
3323 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003324 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003325 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003326 klass->SetObjectSize(size);
3327 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003328 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003329 return true;
3330}
3331
3332// Set the bitmap of reference offsets, refOffsets, from the ifields
3333// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003334void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003335 uint32_t reference_offsets = 0;
3336 Class* super_class = klass->GetSuperClass();
3337 if (super_class != NULL) {
3338 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003339 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003340 if (reference_offsets == CLASS_WALK_SUPER) {
3341 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003342 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003343 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003344 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003345 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003346}
3347
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003348void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003349 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003350}
3351
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003352void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003353 uint32_t reference_offsets) {
3354 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003355 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3356 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003357 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003358 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003359 // All of the fields that contain object references are guaranteed
3360 // to be at the beginning of the fields list.
3361 for (size_t i = 0; i < num_reference_fields; ++i) {
3362 // Note that byte_offset is the offset from the beginning of
3363 // object, not the offset into instance data
3364 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003365 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003366 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3367 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3368 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003369 CHECK_NE(new_bit, 0U);
3370 reference_offsets |= new_bit;
3371 } else {
3372 reference_offsets = CLASS_WALK_SUPER;
3373 break;
3374 }
3375 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003376 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003377 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003378 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003379 } else {
3380 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003381 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003382}
3383
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003384String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003385 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003386 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003387 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003388 if (resolved != NULL) {
3389 return resolved;
3390 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003391 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3392 int32_t utf16_length = dex_file.GetStringLength(string_id);
3393 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003394 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003395 dex_cache->SetResolvedString(string_idx, string);
3396 return string;
3397}
3398
3399Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003400 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003401 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003402 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003403 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003404 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003405 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003406 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003407 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003408 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003409 // TODO: we used to throw here if resolved's class loader was not the
3410 // boot class loader. This was to permit different classes with the
3411 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003412 dex_cache->SetResolvedType(type_idx, resolved);
3413 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003414 CHECK(Thread::Current()->IsExceptionPending())
3415 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003416 // Convert a ClassNotFoundException to a NoClassDefFoundError
3417 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3418 Thread::Current()->ClearException();
3419 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3420 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003421 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003422 }
3423 return resolved;
3424}
3425
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003426Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3427 uint32_t method_idx,
3428 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003429 ClassLoader* class_loader,
jeffhaoc0228b82012-08-29 18:15:05 -07003430 const Method* referrer,
Ian Rogers08f753d2012-08-24 14:35:25 -07003431 InvokeType type) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003432 DCHECK(dex_cache != NULL);
Ian Rogers08f753d2012-08-24 14:35:25 -07003433 // Check for hit in the dex cache.
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003434 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3435 if (resolved != NULL) {
3436 return resolved;
3437 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003438 // Fail, get the declaring class.
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003439 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3440 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3441 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003442 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003443 return NULL;
3444 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003445 // Scan using method_idx, this saves string compares but will only hit for matching dex
3446 // caches/files.
3447 switch (type) {
3448 case kDirect: // Fall-through.
3449 case kStatic:
3450 resolved = klass->FindDirectMethod(dex_cache, method_idx);
3451 break;
3452 case kInterface:
3453 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
3454 break;
3455 case kSuper: // Fall-through.
3456 case kVirtual:
3457 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
3458 break;
3459 default:
3460 LOG(FATAL) << "Unreachable - invocation type: " << type;
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003461 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003462 if (resolved == NULL) {
Ian Rogers08f753d2012-08-24 14:35:25 -07003463 // Search by name, which works across dex files.
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003464 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3465 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Ian Rogers08f753d2012-08-24 14:35:25 -07003466 switch (type) {
3467 case kDirect: // Fall-through.
3468 case kStatic:
jeffhao8cd6dda2012-02-22 10:15:34 -08003469 resolved = klass->FindDirectMethod(name, signature);
Ian Rogers08f753d2012-08-24 14:35:25 -07003470 break;
3471 case kInterface:
3472 resolved = klass->FindInterfaceMethod(name, signature);
3473 break;
3474 case kSuper: // Fall-through.
3475 case kVirtual:
3476 resolved = klass->FindVirtualMethod(name, signature);
3477 break;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003478 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003479 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003480 if (resolved != NULL) {
3481 // We found a method, check for incompatible class changes.
Ian Rogers87e552d2012-08-31 15:54:48 -07003482 if (resolved->CheckIncompatibleClassChange(type)) {
3483 resolved = NULL;
Ian Rogers08f753d2012-08-24 14:35:25 -07003484 }
3485 }
3486 if (resolved != NULL) {
3487 // Be a good citizen and update the dex cache to speed subsequent calls.
3488 dex_cache->SetResolvedMethod(method_idx, resolved);
3489 return resolved;
3490 } else {
jeffhaoc0228b82012-08-29 18:15:05 -07003491 // We failed to find the method which means either an access error, an incompatible class
3492 // change, or no such method. First try to find the method among direct and virtual methods.
Ian Rogers08f753d2012-08-24 14:35:25 -07003493 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3494 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3495 switch (type) {
3496 case kDirect:
3497 case kStatic:
3498 resolved = klass->FindVirtualMethod(name, signature);
jeffhaoc0228b82012-08-29 18:15:05 -07003499 break;
3500 case kInterface:
3501 case kVirtual:
3502 case kSuper:
3503 resolved = klass->FindDirectMethod(name, signature);
3504 break;
3505 }
3506
3507 // If we found something, check that it can be accessed by the referrer.
3508 if (resolved != NULL && referrer != NULL) {
3509 Class* methods_class = resolved->GetDeclaringClass();
3510 Class* referring_class = referrer->GetDeclaringClass();
3511 if (!referring_class->CanAccess(methods_class)) {
Ian Rogers87e552d2012-08-31 15:54:48 -07003512 ThrowIllegalAccessErrorClassForMethodDispatch(referring_class, methods_class,
3513 referrer, resolved, type);
jeffhaoc0228b82012-08-29 18:15:05 -07003514 return NULL;
3515 } else if (!referring_class->CanAccessMember(methods_class,
3516 resolved->GetAccessFlags())) {
Ian Rogers87e552d2012-08-31 15:54:48 -07003517 ThrowIllegalAccessErrorMethod(referring_class, resolved);
jeffhaoc0228b82012-08-29 18:15:05 -07003518 return NULL;
3519 }
3520 }
3521
3522 // Otherwise, throw an IncompatibleClassChangeError if we found something, and check interface
3523 // methods and throw if we find the method there. If we find nothing, throw a NoSuchMethodError.
3524 switch (type) {
3525 case kDirect:
3526 case kStatic:
Ian Rogers08f753d2012-08-24 14:35:25 -07003527 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003528 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003529 } else {
3530 resolved = klass->FindInterfaceMethod(name, signature);
3531 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003532 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003533 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003534 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003535 }
3536 }
3537 break;
3538 case kInterface:
Ian Rogers08f753d2012-08-24 14:35:25 -07003539 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003540 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003541 } else {
3542 resolved = klass->FindVirtualMethod(name, signature);
3543 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003544 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003545 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003546 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003547 }
3548 }
3549 break;
3550 case kSuper:
Ian Rogers2fc14272012-08-30 10:56:57 -07003551 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003552 break;
3553 case kVirtual:
Ian Rogers08f753d2012-08-24 14:35:25 -07003554 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003555 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003556 } else {
3557 resolved = klass->FindInterfaceMethod(name, signature);
3558 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003559 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003560 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003561 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003562 }
3563 }
3564 break;
3565 }
3566 DCHECK(Thread::Current()->IsExceptionPending());
3567 return NULL;
3568 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003569}
3570
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003571Field* ClassLinker::ResolveField(const DexFile& dex_file,
3572 uint32_t field_idx,
3573 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003574 ClassLoader* class_loader,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003575 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003576 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003577 Field* resolved = dex_cache->GetResolvedField(field_idx);
3578 if (resolved != NULL) {
3579 return resolved;
3580 }
3581 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3582 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3583 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003584 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003585 return NULL;
3586 }
3587
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003588 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003589 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003590 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003591 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003592 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003593
3594 if (resolved == NULL) {
3595 const char* name = dex_file.GetFieldName(field_id);
3596 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3597 if (is_static) {
3598 resolved = klass->FindStaticField(name, type);
3599 } else {
3600 resolved = klass->FindInstanceField(name, type);
3601 }
3602 if (resolved == NULL) {
3603 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3604 return NULL;
3605 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003606 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003607 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003608 return resolved;
3609}
3610
3611Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3612 uint32_t field_idx,
3613 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003614 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003615 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003616 Field* resolved = dex_cache->GetResolvedField(field_idx);
3617 if (resolved != NULL) {
3618 return resolved;
3619 }
3620 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3621 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3622 if (klass == NULL) {
3623 DCHECK(Thread::Current()->IsExceptionPending());
3624 return NULL;
3625 }
3626
3627 const char* name = dex_file.GetFieldName(field_id);
3628 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3629 resolved = klass->FindField(name, type);
3630 if (resolved != NULL) {
3631 dex_cache->SetResolvedField(field_idx, resolved);
3632 } else {
3633 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003634 }
3635 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003636}
3637
Ian Rogers19846512012-02-24 11:42:47 -08003638const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003639 Class* declaring_class = referrer->GetDeclaringClass();
3640 DexCache* dex_cache = declaring_class->GetDexCache();
3641 const DexFile& dex_file = FindDexFile(dex_cache);
3642 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003643 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003644}
3645
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003646void ClassLinker::DumpAllClasses(int flags) const {
3647 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3648 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3649 std::vector<Class*> all_classes;
3650 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003651 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003652 typedef Table::const_iterator It; // TODO: C++0x auto
3653 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3654 all_classes.push_back(it->second);
3655 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003656 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3657 all_classes.push_back(it->second);
3658 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003659 }
3660
3661 for (size_t i = 0; i < all_classes.size(); ++i) {
3662 all_classes[i]->DumpClass(std::cerr, flags);
3663 }
3664}
3665
Elliott Hughescac6cc72011-11-03 20:31:21 -07003666void ClassLinker::DumpForSigQuit(std::ostream& os) const {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003667 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -07003668 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3669 << classes_.size() << " allocated classes\n";
3670}
3671
Elliott Hughese27955c2011-08-26 15:21:24 -07003672size_t ClassLinker::NumLoadedClasses() const {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003673 MutexLock mu(*Locks::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003674 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003675}
3676
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003677pid_t ClassLinker::GetClassesLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003678 return Locks::classlinker_classes_lock_->GetExclusiveOwnerTid();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003679}
3680
3681pid_t ClassLinker::GetDexLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003682 return dex_lock_.GetExclusiveOwnerTid();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003683}
3684
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003685void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3686 DCHECK(!init_done_);
3687
3688 DCHECK(klass != NULL);
3689 DCHECK(klass->GetClassLoader() == NULL);
3690
3691 DCHECK(class_roots_ != NULL);
3692 DCHECK(class_roots_->Get(class_root) == NULL);
3693 class_roots_->Set(class_root, klass);
3694}
3695
Logan Chien0c717dd2012-03-28 18:31:07 +08003696void ClassLinker::RelocateExecutable() {
Elliott Hughesf8349362012-06-18 15:00:06 -07003697 MutexLock mu(dex_lock_);
Logan Chien0c717dd2012-03-28 18:31:07 +08003698 for (size_t i = 0; i < oat_files_.size(); ++i) {
3699 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3700 }
3701}
3702
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003703} // namespace art