blob: 343c58097a3eea575e5b361d79d1ed6b96a9e857 [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)))
63 SHARED_LOCKS_REQUIRED(GlobalSynchronization::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)))
73 SHARED_LOCKS_REQUIRED(GlobalSynchronization::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)))
83 SHARED_LOCKS_REQUIRED(GlobalSynchronization::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)
93 SHARED_LOCKS_REQUIRED(GlobalSynchronization::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)))
107 SHARED_LOCKS_REQUIRED(GlobalSynchronization::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)
116 SHARED_LOCKS_REQUIRED(GlobalSynchronization::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.
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700121 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
122
Elliott Hughes5c599942012-06-13 16:45:05 -0700123 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700124 if (c->GetVerifyErrorClass() != NULL) {
125 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800126 ClassHelper ve_ch(c->GetVerifyErrorClass());
127 std::string error_descriptor(ve_ch.GetDescriptor());
128 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700129 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800130 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700131 }
132}
133
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700134static void WrapExceptionInInitializer()
135 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700136 Thread* self = Thread::Current();
137 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700138
139 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
140 CHECK(cause.get() != NULL);
141
142 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700143 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
144 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700145
Elliott Hughesa4f94742012-05-29 16:28:38 -0700146 // We only wrap non-Error exceptions; an Error can just be used as-is.
147 if (!is_error) {
148 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", NULL);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700149 }
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700150}
151
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800152static size_t Hash(const char* s) {
153 // This is the java.lang.String hashcode for convenience, not interoperability.
154 size_t hash = 0;
155 for (; *s != '\0'; ++s) {
156 hash = hash * 31 + *s;
157 }
158 return hash;
159}
160
Elliott Hughes418d20f2011-09-22 14:00:39 -0700161const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700162 "Ljava/lang/Class;",
163 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700164 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700165 "[Ljava/lang/Object;",
166 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700167 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700168 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700169 "Ljava/lang/reflect/Field;",
170 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700171 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700172 "Ljava/lang/ClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800173 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800174 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700175 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700176 "Z",
177 "B",
178 "C",
179 "D",
180 "F",
181 "I",
182 "J",
183 "S",
184 "V",
185 "[Z",
186 "[B",
187 "[C",
188 "[D",
189 "[F",
190 "[I",
191 "[J",
192 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700193 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700194};
195
Brian Carlstroma004aa92012-02-08 18:05:09 -0800196ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
197 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700198 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800199 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800200 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700201 return class_linker.release();
202}
203
Brian Carlstroma004aa92012-02-08 18:05:09 -0800204ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800205 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700206 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700207 return class_linker.release();
208}
209
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800210ClassLinker::ClassLinker(InternTable* intern_table)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700211 // dex_lock_ is recursive as it may be used in stack dumping.
212 : dex_lock_("ClassLinker dex lock", kDefaultMutexLevel, true),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700213 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700214 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700215 init_done_(false),
216 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700217 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700218}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700219
Brian Carlstroma004aa92012-02-08 18:05:09 -0800220void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
221 VLOG(startup) << "ClassLinker::Init";
222 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700223
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700224 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700225
Elliott Hughes30646832011-10-13 16:59:46 -0700226 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800227 Heap* heap = Runtime::Current()->GetHeap();
228 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700229 CHECK(java_lang_Class.get() != NULL);
230 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700231 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700232 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700233
Elliott Hughes418d20f2011-09-22 14:00:39 -0700234 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700235 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
236 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700237
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700238 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700239 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
240 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700241 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700242 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700243 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700244
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700245 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700246 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
247 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700248
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700249 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700250 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700251
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700252 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700253 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
254 char_array_class->SetComponentType(char_class.get());
255 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700256
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700257 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700258 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
259 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700260 java_lang_String->SetObjectSize(sizeof(String));
261 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400262
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700263 // Create storage for root classes, save away our work so far (requires
264 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700265 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700266 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700267 SetClassRoot(kJavaLangClass, java_lang_Class.get());
268 SetClassRoot(kJavaLangObject, java_lang_Object.get());
269 SetClassRoot(kClassArrayClass, class_array_class.get());
270 SetClassRoot(kObjectArrayClass, object_array_class.get());
271 SetClassRoot(kCharArrayClass, char_array_class.get());
272 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700273
274 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700275 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
276 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
277 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
278 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
279 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
280 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
281 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
282 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700283
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700284 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700285 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700286
287 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700288 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700289 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700290 IntArray::SetArrayClass(int_array_class.get());
291 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700292
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700293 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700294
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700295 // setup boot_class_path_ and register class_path now that we can
296 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800297 CHECK_NE(0U, boot_class_path.size());
298 for (size_t i = 0; i != boot_class_path.size(); ++i) {
299 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700300 CHECK(dex_file != NULL);
301 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700302 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700303
Elliott Hughes80609252011-09-23 17:24:51 -0700304 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700305 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700306 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700307 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700308 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700309 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
310
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700311 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
312 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700313 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700314 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700315 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700316 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700317
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700319 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700320 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700322 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700323 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700324
325 // now we can use FindSystemClass
326
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700327 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700328 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700329 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700330
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700331 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 java_lang_Object->SetStatus(Class::kStatusNotReady);
333 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700334 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700335 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
336 java_lang_String->SetStatus(Class::kStatusNotReady);
337 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700338 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700339 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
340
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700341 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700342 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
343 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
344
345 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
346 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
347
348 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700349 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700350
351 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
352 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
353
354 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700355 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700356
357 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
358 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
359
360 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
361 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
362
363 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
364 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
365
Elliott Hughes418d20f2011-09-22 14:00:39 -0700366 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700367 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700368
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700369 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700370 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700371
372 // Setup the single, global copies of "interfaces" and "iftable"
373 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
374 CHECK(java_lang_Cloneable != NULL);
375 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
376 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700377 // We assume that Cloneable/Serializable don't have superinterfaces --
378 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700379 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800380 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
381 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700382
Elliott Hughes418d20f2011-09-22 14:00:39 -0700383 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800384 ClassHelper kh(class_array_class.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -0700385 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
386 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800387 kh.ChangeClass(object_array_class.get());
Ian Rogersd24e2642012-06-06 21:21:43 -0700388 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
389 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700390 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700391 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700392 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700393 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700394
Elliott Hughes80609252011-09-23 17:24:51 -0700395 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
396 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700397 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700398
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700399 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700400 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700401 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700402
403 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700404 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700405 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700406
Ian Rogers466bb252011-10-14 03:29:56 -0700407 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
408
409 // Create java.lang.reflect.Proxy root
410 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
411 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
412
Brian Carlstrom1f870082011-08-23 16:02:11 -0700413 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700414 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
415 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700416 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700417 java_lang_ref_FinalizerReference->SetAccessFlags(
418 java_lang_ref_FinalizerReference->GetAccessFlags() |
419 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700420 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700421 java_lang_ref_PhantomReference->SetAccessFlags(
422 java_lang_ref_PhantomReference->GetAccessFlags() |
423 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700424 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700425 java_lang_ref_SoftReference->SetAccessFlags(
426 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700427 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700428 java_lang_ref_WeakReference->SetAccessFlags(
429 java_lang_ref_WeakReference->GetAccessFlags() |
430 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700431
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700432 // Setup the ClassLoader, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700433 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700434 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700435 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
436
jeffhao8cd6dda2012-02-22 10:15:34 -0800437 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
438 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800439 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
440 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800441 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700442 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
443 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700444 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700445
Brian Carlstroma663ea52011-08-19 23:33:41 -0700446 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700447
Brian Carlstroma004aa92012-02-08 18:05:09 -0800448 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700449}
450
451void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800452 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700453
454 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700455 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700456 // as the types of the field can't be resolved prior to the runtime being
457 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700458 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700459 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700460 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
461
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800462 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
463
Brian Carlstrom16192862011-09-12 17:50:06 -0700464 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800465 FieldHelper fh(pendingNext, this);
466 CHECK_STREQ(fh.GetName(), "pendingNext");
467 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
468 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700469
470 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800471 fh.ChangeField(queue);
472 CHECK_STREQ(fh.GetName(), "queue");
473 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
474 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700475
476 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800477 fh.ChangeField(queueNext);
478 CHECK_STREQ(fh.GetName(), "queueNext");
479 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
480 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700481
482 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800483 fh.ChangeField(referent);
484 CHECK_STREQ(fh.GetName(), "referent");
485 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
486 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700487
488 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800489 fh.ChangeField(zombie);
490 CHECK_STREQ(fh.GetName(), "zombie");
491 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
492 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700493
Elliott Hughesa4f94742012-05-29 16:28:38 -0700494 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800495 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700496 queue->GetOffset(),
497 queueNext->GetOffset(),
498 pendingNext->GetOffset(),
499 zombie->GetOffset());
500
Brian Carlstroma663ea52011-08-19 23:33:41 -0700501 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700502 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700503 ClassRoot class_root = static_cast<ClassRoot>(i);
504 Class* klass = GetClassRoot(class_root);
505 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700506 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700507 // note SetClassRoot does additional validation.
508 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700509 }
510
Elliott Hughes92f14b22011-10-06 12:29:54 -0700511 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700512
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700513 // disable the slow paths in FindClass and CreatePrimitiveClass now
514 // that Object, Class, and Object[] are setup
515 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700516
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800517 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700518}
519
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700520void ClassLinker::RunRootClinits() {
521 Thread* self = Thread::Current();
522 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
523 Class* c = GetClassRoot(ClassRoot(i));
524 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700525 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700526 self->AssertNoPendingException();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700527 }
528 }
529}
530
Brian Carlstromd601af82012-01-06 10:15:19 -0800531bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
532 int oat_fd,
533 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800534 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700535 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800536 const char* dex2oat = dex2oat_string.c_str();
537
Brian Carlstroma004aa92012-02-08 18:05:09 -0800538 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800539
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800540 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800541 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700542 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800543 const char* boot_image_option = boot_image_option_string.c_str();
544
545 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800546 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800547 const char* dex_file_option = dex_file_option_string.c_str();
548
Brian Carlstromd601af82012-01-06 10:15:19 -0800549 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800550 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800551 const char* oat_fd_option = oat_fd_option_string.c_str();
552
Brian Carlstroma004aa92012-02-08 18:05:09 -0800553 std::string oat_location_option_string("--oat-location=");
554 oat_location_option_string += oat_cache_filename;
555 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800556
jeffhao262bf462011-10-20 18:36:32 -0700557 // fork and exec dex2oat
558 pid_t pid = fork();
559 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800560 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800561
562 // change process groups, so we don't get reaped by ProcessManager
563 setpgid(0, 0);
564
jeffhao10037c82012-01-23 15:06:23 -0800565 VLOG(class_linker) << dex2oat
566 << " --runtime-arg -Xms64m"
567 << " --runtime-arg -Xmx64m"
568 << " --runtime-arg -classpath"
569 << " --runtime-arg " << class_path
570 << " " << boot_image_option
571 << " " << dex_file_option
572 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800573 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800574
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800575 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700576 "--runtime-arg", "-Xms64m",
577 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500578 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800579 "--runtime-arg", class_path,
580 boot_image_option,
581 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800582 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800583 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700584 NULL);
585
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800586 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800587 return false;
jeffhao262bf462011-10-20 18:36:32 -0700588 } else {
589 // wait for dex2oat to finish
590 int status;
591 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
592 if (got_pid != pid) {
593 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800594 return false;
jeffhao262bf462011-10-20 18:36:32 -0700595 }
596 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800597 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
598 return false;
jeffhao262bf462011-10-20 18:36:32 -0700599 }
600 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800601 return true;
jeffhao262bf462011-10-20 18:36:32 -0700602}
603
Brian Carlstrom866c8622012-01-06 16:35:13 -0800604void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
605 MutexLock mu(dex_lock_);
606 RegisterOatFileLocked(oat_file);
607}
608
609void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
610 dex_lock_.AssertHeld();
611 oat_files_.push_back(&oat_file);
612}
613
Ian Rogers30fab402012-01-23 15:43:46 -0800614OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700615 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700616 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700617 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800618 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
619 // check the down cast
620 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700621 std::string oat_filename;
622 oat_filename += runtime->GetHostPrefix();
623 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800624 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
625 image_header.GetOatBegin(),
626 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800627 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700628 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700629 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700630 return NULL;
631 }
632 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
633 uint32_t image_oat_checksum = image_header.GetOatChecksum();
634 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800635 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700636 << " to expected oat checksum " << std::hex << oat_checksum
637 << " in image";
638 return NULL;
639 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800640 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800641 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700642 return oat_file;
643}
644
Brian Carlstromae826982011-11-09 01:33:42 -0800645const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700646 MutexLock mu(dex_lock_);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800647 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800648}
649
Brian Carlstroma004aa92012-02-08 18:05:09 -0800650const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800651 for (size_t i = 0; i < oat_files_.size(); i++) {
652 const OatFile* oat_file = oat_files_[i];
653 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800654 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800655 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800656 return oat_file;
657 }
658 }
659 return NULL;
660}
661
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800662static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
663 uint32_t dex_location_checksum,
664 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800665 UniquePtr<OatFile> oat_file(
666 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800667 if (oat_file.get() == NULL) {
668 return NULL;
669 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700670 Runtime* runtime = Runtime::Current();
671 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
672 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
673 return NULL;
674 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800675 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
676 if (oat_dex_file == NULL) {
677 return NULL;
678 }
679 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
680 return NULL;
681 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700682 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800683 return oat_dex_file->OpenDexFile();
684}
685
686const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
687 const std::string& oat_location) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700688 MutexLock mu(dex_lock_);
689 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_location);
690}
691
692const DexFile* ClassLinker::FindOrCreateOatFileForDexLocationLocked(const std::string& dex_location,
693 const std::string& oat_location) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800694 uint32_t dex_location_checksum;
695 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
696 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
697 return NULL;
698 }
699
700 // Check if we already have an up-to-date output file
701 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
702 dex_location_checksum,
703 oat_location);
704 if (dex_file != NULL) {
705 return dex_file;
706 }
707
708 // Generate the output oat file for the dex file
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800709 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
710 if (file.get() == NULL) {
711 LOG(ERROR) << "Failed to create oat file: " << oat_location;
712 return NULL;
713 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700714 if (!GenerateOatFile(dex_location, file->Fd(), oat_location)) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800715 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
716 return NULL;
717 }
718 // Open the oat from file descriptor we passed to GenerateOatFile
719 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
720 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
721 return NULL;
722 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800723 const OatFile* oat_file =
724 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800725 if (oat_file == NULL) {
726 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
727 return NULL;
728 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700729 RegisterOatFileLocked(*oat_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800730 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
731 if (oat_dex_file == NULL) {
732 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
733 return NULL;
734 }
735 return oat_dex_file->OpenDexFile();
736}
737
Brian Carlstromafe25512012-06-27 17:02:58 -0700738bool ClassLinker::VerifyOatFileChecksums(const OatFile* oat_file,
739 const std::string& dex_location,
740 uint32_t dex_location_checksum) {
741 Runtime* runtime = Runtime::Current();
742 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
743 uint32_t image_checksum = image_header.GetOatChecksum();
744 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700745
Brian Carlstromafe25512012-06-27 17:02:58 -0700746 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
747 if (oat_dex_file == NULL) {
748 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
749 << " does not contain contents for " << dex_location;
750 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
751 for (size_t i = 0; i < oat_dex_files.size(); i++) {
752 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
753 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
754 << " contains contents for " << oat_dex_file->GetDexFileLocation();
755 }
756 return false;
757 }
758 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700759
Brian Carlstromafe25512012-06-27 17:02:58 -0700760 if (image_check && dex_check) {
761 return true;
762 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700763
Brian Carlstromafe25512012-06-27 17:02:58 -0700764 if (!image_check) {
765 std::string image_file(image_header.GetImageRoot(
766 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
767 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
768 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
769 << ") mismatch with " << image_file
770 << " (" << std::hex << image_checksum << ")";
771 }
772 if (!dex_check) {
773 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
774 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
775 << ") mismatch with " << dex_location
776 << " (" << std::hex << dex_location_checksum << ")";
777 }
778 return false;
779}
780
781const DexFile* ClassLinker::VerifyAndOpenDexFileFromOatFile(const OatFile* oat_file,
782 const std::string& dex_location,
783 uint32_t dex_location_checksum) {
784 bool verified = VerifyOatFileChecksums(oat_file, dex_location, dex_location_checksum);
785 if (!verified) {
786 return NULL;
787 }
788 RegisterOatFileLocked(*oat_file);
789 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700790}
791
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800792const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700793 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800794
Brian Carlstroma004aa92012-02-08 18:05:09 -0800795 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800796 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800797 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800798 }
799
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700800 // Look for an existing file next to dex. for example, for
801 // /foo/bar/baz.jar, look for /foo/bar/baz.jar.oat.
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800802 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700803 const OatFile* oat_file = FindOatFileFromOatLocationLocked(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800804 if (oat_file != NULL) {
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700805 uint32_t dex_location_checksum;
806 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
807 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
808 // This is the common case in user builds for jar's and apk's in the /system directory.
809 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
810 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
811 RegisterOatFileLocked(*oat_file);
812 return oat_dex_file->OpenDexFile();
813 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700814 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
815 dex_location,
816 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700817 if (dex_file != NULL) {
818 return dex_file;
819 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800820 }
821 // Look for an existing file in the art-cache, validating the result if found
822 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
823 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700824 oat_file = FindOatFileFromOatLocationLocked(cache_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800825 if (oat_file != NULL) {
826 uint32_t dex_location_checksum;
827 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
828 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
829 return NULL;
830 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700831 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
832 dex_location,
833 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700834 if (dex_file != NULL) {
835 return dex_file;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700836 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800837 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700838 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800839 }
jeffhao262bf462011-10-20 18:36:32 -0700840 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800841 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
842
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800843 // Try to generate oat file if it wasn't found or was obsolete.
844 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700845 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700846}
847
Brian Carlstromae826982011-11-09 01:33:42 -0800848const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700849 for (size_t i = 0; i < oat_files_.size(); i++) {
850 const OatFile* oat_file = oat_files_[i];
851 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800852 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700853 return oat_file;
854 }
855 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700856 return NULL;
857}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700858
Brian Carlstromae826982011-11-09 01:33:42 -0800859const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800860 MutexLock mu(dex_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700861 return FindOatFileFromOatLocationLocked(oat_location);
862}
863
864const OatFile* ClassLinker::FindOatFileFromOatLocationLocked(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800865 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
866 if (oat_file != NULL) {
867 return oat_file;
868 }
869
Logan Chien0c717dd2012-03-28 18:31:07 +0800870 oat_file = OatFile::Open(oat_location, oat_location, NULL,
871 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700872 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800873 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700874 }
Brian Carlstromae826982011-11-09 01:33:42 -0800875 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700876 return oat_file;
877}
878
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700879void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800880 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700881 CHECK(!init_done_);
882
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800883 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700884 ImageSpace* space = heap->GetImageSpace();
885 OatFile* oat_file = OpenOat(space);
886 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700887 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
Elliott Hughes74847412012-06-20 18:10:21 -0700888 CHECK(oat_file->GetOatHeader().GetImageFileLocation().empty());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700889 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
890 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700891
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700892 // Special case of setting up the String class early so that we can test arbitrary objects
893 // as being Strings or not
894 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
895 ->AsObjectArray<Class>()->Get(kJavaLangString);
896 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800897
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700898 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
899 static_cast<uint32_t>(dex_caches->GetLength()));
900 for (int i = 0; i < dex_caches->GetLength(); i++) {
901 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
902 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
903 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
904 const DexFile* dex_file = oat_dex_file->OpenDexFile();
905 if (dex_file == NULL) {
906 LOG(FATAL) << "Failed to open dex file " << dex_file_location
907 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700908 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700909
910 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
911
912 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700913 }
914
Brian Carlstroma663ea52011-08-19 23:33:41 -0700915 // reinit clases_ table
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700916 {
917 ReaderMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
918 heap->FlushAllocStack();
919 const Spaces& vec = heap->GetSpaces();
920 // TODO: C++0x auto
921 for (Spaces::const_iterator it = vec.begin(); it != vec.end(); ++it) {
922 (*it)->GetLiveBitmap()->Walk(InitFromImageCallback, this);
923 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700924 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700925
926 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800927 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700928 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700929 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700930
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800931 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700932 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
933 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800934 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700935 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700936 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700937 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
938 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
939 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
940 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
941 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
942 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
943 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
944 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Ian Rogers5167c972012-02-03 10:41:20 -0800945 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700946 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700947
948 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700949
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800950 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700951}
952
Brian Carlstrom78128a62011-09-15 17:21:19 -0700953void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700954 DCHECK(obj != NULL);
955 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700956 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700957
Elliott Hughesdbb40792011-11-18 17:05:22 -0800958 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700959 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700960 return;
961 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700962 if (obj->IsClass()) {
963 // restore class to ClassLinker::classes_ table
964 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800965 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800966 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
967 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700968 return;
969 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700970}
971
972// Keep in sync with InitCallback. Anything we visit, we need to
973// reinit references to when reinitializing a ClassLinker from a
974// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700975void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
976 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700977
Elliott Hughesf8349362012-06-18 15:00:06 -0700978 {
979 MutexLock mu(dex_lock_);
980 for (size_t i = 0; i < dex_caches_.size(); i++) {
981 visitor(dex_caches_[i], arg);
982 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700983 }
984
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700985 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700986 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700987 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700988 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700989 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700990 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700991
992 // We deliberately ignore the class roots in the image since we
993 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700994 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700995
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700996 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700997}
998
Elliott Hughesa2155262011-11-16 16:26:58 -0800999void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001000 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -08001001 typedef Table::const_iterator It; // TODO: C++0x auto
1002 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
1003 if (!visitor(it->second, arg)) {
1004 return;
1005 }
1006 }
1007 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
1008 if (!visitor(it->second, arg)) {
1009 return;
1010 }
1011 }
1012}
1013
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001014static bool GetClassesVisitor(Class* c, void* arg) {
1015 std::set<Class*>* classes = reinterpret_cast<std::set<Class*>*>(arg);
1016 classes->insert(c);
1017 return true;
1018}
1019
1020void ClassLinker::VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg) const {
1021 std::set<Class*> classes;
1022 VisitClasses(GetClassesVisitor, &classes);
1023 typedef std::set<Class*>::const_iterator It; // TODO: C++0x auto
1024 for (It it = classes.begin(), end = classes.end(); it != end; ++it) {
1025 if (!visitor(*it, arg)) {
1026 return;
1027 }
1028 }
1029}
1030
1031
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001032ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001033 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001034 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001035 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001036 BooleanArray::ResetArrayClass();
1037 ByteArray::ResetArrayClass();
1038 CharArray::ResetArrayClass();
1039 DoubleArray::ResetArrayClass();
1040 FloatArray::ResetArrayClass();
1041 IntArray::ResetArrayClass();
1042 LongArray::ResetArrayClass();
1043 ShortArray::ResetArrayClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001044 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001045 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001046 STLDeleteElements(&boot_class_path_);
1047 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001048}
1049
1050DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001051 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1052 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001053 return NULL;
1054 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001055 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1056 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001057 return NULL;
1058 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001059 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1060 if (strings.get() == NULL) {
1061 return NULL;
1062 }
1063 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1064 if (types.get() == NULL) {
1065 return NULL;
1066 }
1067 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1068 if (methods.get() == NULL) {
1069 return NULL;
1070 }
1071 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1072 if (fields.get() == NULL) {
1073 return NULL;
1074 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001075 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1076 if (initialized_static_storage.get() == NULL) {
1077 return NULL;
1078 }
1079
1080 dex_cache->Init(location.get(),
1081 strings.get(),
1082 types.get(),
1083 methods.get(),
1084 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001085 initialized_static_storage.get());
1086 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001087}
1088
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001089InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1090 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001091 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1092 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001093 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001094 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001095}
1096
Brian Carlstrom4873d462011-08-21 15:23:39 -07001097Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1098 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001099 Heap* heap = Runtime::Current()->GetHeap();
1100 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001101 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001102 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001103 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001104}
1105
Brian Carlstrom4873d462011-08-21 15:23:39 -07001106Class* ClassLinker::AllocClass(size_t class_size) {
1107 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001108}
1109
Jesse Wilson35baaab2011-08-10 16:18:03 -04001110Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001111 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001112}
1113
1114Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001115 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001116}
1117
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001118ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1119 return ObjectArray<StackTraceElement>::Alloc(
1120 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1121 length);
1122}
1123
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001124static Class* EnsureResolved(Class* klass)
1125 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001126 DCHECK(klass != NULL);
1127 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001128 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001129 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001130 ObjectLock lock(klass);
1131 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001132 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001133 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001134 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001135 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001136 return NULL;
1137 }
1138 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001139 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001140 lock.Wait();
1141 }
1142 }
1143 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001144 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001145 return NULL;
1146 }
1147 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001148 CHECK(klass->IsResolved()) << PrettyClass(klass);
1149 CHECK(!self->IsExceptionPending())
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001150 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException()) << "\n"
1151 << self->GetException()->Dump();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001152 return klass;
1153}
1154
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001155Class* ClassLinker::FindSystemClass(const char* descriptor) {
1156 return FindClass(descriptor, NULL);
1157}
1158
Ian Rogers365c1022012-06-22 15:05:28 -07001159Class* ClassLinker::FindClass(const char* descriptor, ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001160 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001161 Thread* self = Thread::Current();
1162 DCHECK(self != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001163 self->AssertNoPendingException();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001164 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001165 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1166 // for primitive classes that aren't backed by dex files.
1167 return FindPrimitiveClass(descriptor[0]);
1168 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001169 // Find the class in the loaded classes table.
1170 Class* klass = LookupClass(descriptor, class_loader);
1171 if (klass != NULL) {
1172 return EnsureResolved(klass);
1173 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001174 // Class is not yet loaded.
1175 if (descriptor[0] == '[') {
1176 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001177
Jesse Wilson47daf872011-11-23 11:42:45 -05001178 } else if (class_loader == NULL) {
1179 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1180 if (pair.second != NULL) {
1181 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1182 }
1183
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001184 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001185 // first try the boot class path
1186 Class* system_class = FindSystemClass(descriptor);
1187 if (system_class != NULL) {
1188 return system_class;
1189 }
1190 CHECK(self->IsExceptionPending());
1191 self->ClearException();
1192
1193 // next try the compile time class path
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001194 const std::vector<const DexFile*>* class_path;
1195 {
1196 ScopedObjectAccessUnchecked soa(Thread::Current());
1197 ScopedLocalRef<jobject> jclass_loader(soa.Env(), soa.AddLocalReference<jobject>(class_loader));
1198 class_path = &Runtime::Current()->GetCompileTimeClassPath(jclass_loader.get());
1199 }
1200
1201 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, *class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001202 if (pair.second != NULL) {
1203 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001204 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001205
1206 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001207 ScopedObjectAccessUnchecked soa(self->GetJniEnv());
1208 ScopedLocalRef<jobject> class_loader_object(soa.Env(),
1209 soa.AddLocalReference<jobject>(class_loader));
Elliott Hughes95572412011-12-13 18:14:20 -08001210 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001211 ScopedLocalRef<jobject> result(soa.Env(), NULL);
Ian Rogers365c1022012-06-22 15:05:28 -07001212 {
1213 ScopedThreadStateChange tsc(self, kNative);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001214 ScopedLocalRef<jobject> class_name_object(soa.Env(),
1215 soa.Env()->NewStringUTF(class_name_string.c_str()));
Ian Rogers365c1022012-06-22 15:05:28 -07001216 if (class_name_object.get() == NULL) {
1217 return NULL;
1218 }
1219 CHECK(class_loader_object.get() != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001220 result.reset(soa.Env()->CallObjectMethod(class_loader_object.get(),
1221 WellKnownClasses::java_lang_ClassLoader_loadClass,
1222 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05001223 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001224 if (soa.Env()->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001225 // If the ClassLoader threw, pass that exception up.
1226 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001227 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001228 // broken loader - throw NPE to be compatible with Dalvik
1229 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1230 class_name_string.c_str());
1231 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001232 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001233 // success, return Class*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001234 return soa.Decode<Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001235 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001236 }
1237
Elliott Hughes82914b62012-04-09 15:56:29 -07001238 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001239 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001240}
1241
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001242Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Ian Rogers365c1022012-06-22 15:05:28 -07001243 ClassLoader* class_loader,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001244 const DexFile& dex_file,
1245 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001246 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001247 // Load the class from the dex file.
1248 if (!init_done_) {
1249 // finish up init of hand crafted class_roots_
1250 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001251 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001252 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001253 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001254 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001255 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001256 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001257 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001258 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001259 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001260 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001261 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001262 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001263 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001264 }
1265 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001266 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001267 }
1268 klass->SetDexCache(FindDexCache(dex_file));
1269 LoadClass(dex_file, dex_class_def, klass, class_loader);
1270 // Check for a pending exception during load
1271 Thread* self = Thread::Current();
1272 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001273 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001274 return NULL;
1275 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001276 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001277 klass->SetClinitThreadId(self->GetTid());
1278 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001279 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1280 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001281 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001282 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001283 }
1284 // Finish loading (if necessary) by finding parents
1285 CHECK(!klass->IsLoaded());
1286 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1287 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001288 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001289 lock.NotifyAll();
1290 return NULL;
1291 }
1292 CHECK(klass->IsLoaded());
1293 // Link the class (if necessary)
1294 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001295 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001296 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001297 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001298 lock.NotifyAll();
1299 return NULL;
1300 }
1301 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001302
1303 /*
1304 * We send CLASS_PREPARE events to the debugger from here. The
1305 * definition of "preparation" is creating the static fields for a
1306 * class and initializing them to the standard default values, but not
1307 * executing any code (that comes later, during "initialization").
1308 *
1309 * We did the static preparation in LinkClass.
1310 *
1311 * The class has been prepared and resolved but possibly not yet verified
1312 * at this point.
1313 */
1314 Dbg::PostClassPrepare(klass.get());
1315
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001316 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001317}
1318
Brian Carlstrom4873d462011-08-21 15:23:39 -07001319// Precomputes size that will be needed for Class, matching LinkStaticFields
1320size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1321 const DexFile::ClassDef& dex_class_def) {
1322 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001323 size_t num_ref = 0;
1324 size_t num_32 = 0;
1325 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001326 if (class_data != NULL) {
1327 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1328 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001329 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001330 char c = descriptor[0];
1331 if (c == 'L' || c == '[') {
1332 num_ref++;
1333 } else if (c == 'J' || c == 'D') {
1334 num_64++;
1335 } else {
1336 num_32++;
1337 }
1338 }
1339 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001340 // start with generic class data
1341 size_t size = sizeof(Class);
1342 // follow with reference fields which must be contiguous at start
1343 size += (num_ref * sizeof(uint32_t));
1344 // if there are 64-bit fields to add, make sure they are aligned
1345 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1346 if (num_32 != 0) {
1347 // use an available 32-bit field for padding
1348 num_32--;
1349 }
1350 size += sizeof(uint32_t); // either way, we are adding a word
1351 DCHECK_EQ(size, RoundUp(size, 8));
1352 }
1353 // tack on any 64-bit fields now that alignment is assured
1354 size += (num_64 * sizeof(uint64_t));
1355 // tack on any remaining 32-bit fields
1356 size += (num_32 * sizeof(uint32_t));
1357 return size;
1358}
1359
Ian Rogers19846512012-02-24 11:42:47 -08001360const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1361 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001362 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1363 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1364 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1365 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1366 uint32_t class_def_index;
1367 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1368 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1369 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1370 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1371 return oat_class;
1372}
1373
TDYa12785321912012-04-01 15:24:56 -07001374const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001375 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001376 // method for direct methods (or virtual methods made direct).
1377 Class* declaring_class = method->GetDeclaringClass();
1378 size_t oat_method_index;
1379 if (method->IsStatic() || method->IsDirect()) {
1380 // Simple case where the oat method index was stashed at load time.
1381 oat_method_index = method->GetMethodIndex();
1382 } else {
1383 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1384 // by search for its position in the declared virtual methods.
1385 oat_method_index = declaring_class->NumDirectMethods();
1386 size_t end = declaring_class->NumVirtualMethods();
1387 bool found = false;
1388 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001389 if (declaring_class->GetVirtualMethod(i) == method) {
1390 found = true;
1391 break;
1392 }
Ian Rogersf320b632012-03-13 18:47:47 -07001393 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001394 }
1395 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1396 }
1397 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001398 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001399 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001400 return oat_class->GetOatMethod(oat_method_index);
1401}
1402
1403// Special case to get oat code without overwriting a trampoline.
1404const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001405 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001406 return GetOatMethodFor(method).GetCode();
1407}
1408
Ian Rogers19846512012-02-24 11:42:47 -08001409void ClassLinker::FixupStaticTrampolines(Class* klass) {
1410 ClassHelper kh(klass);
1411 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1412 CHECK(dex_class_def != NULL);
1413 const DexFile& dex_file = kh.GetDexFile();
1414 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1415 if (class_data == NULL) {
1416 return; // no fields or methods - for example a marker interface
1417 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001418 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001419 // OAT file unavailable
1420 return;
1421 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001422 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1423 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001424 ClassDataItemIterator it(dex_file, class_data);
1425 // Skip fields
1426 while (it.HasNextStaticField()) {
1427 it.Next();
1428 }
1429 while (it.HasNextInstanceField()) {
1430 it.Next();
1431 }
1432 size_t method_index = 0;
1433 // Link the code of methods skipped by LinkCode
1434 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1435 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1436 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001437 if (Runtime::Current()->IsMethodTracingActive()) {
1438 Trace* tracer = Runtime::Current()->GetTracer();
1439 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1440 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1441 tracer->ResetSavedCode(method);
1442 method->SetCode(code);
1443 tracer->SaveAndUpdateCode(method);
1444 }
1445 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001446 const void* code = oat_class->GetOatMethod(method_index).GetCode();
Ian Rogers08f753d2012-08-24 14:35:25 -07001447 CHECK(code != NULL)
1448 << "Resolving a static trampoline but found no code for: " << PrettyMethod(method);
Ian Rogers19846512012-02-24 11:42:47 -08001449 method->SetCode(code);
1450 }
1451 method_index++;
1452 }
1453}
1454
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001455static void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class,
1456 uint32_t method_index)
1457 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001458 // Every kind of method should at least get an invoke stub from the oat_method.
1459 // non-abstract methods also get their code pointers.
1460 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001461 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001462
Ian Rogers19846512012-02-24 11:42:47 -08001463 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001464 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001465 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001466 return;
1467 }
Ian Rogers19846512012-02-24 11:42:47 -08001468
1469 if (method->IsStatic() && !method->IsConstructor()) {
1470 // For static methods excluding the class initializer, install the trampoline
1471 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001472 }
1473 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001474 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001475 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001476 }
1477
1478 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001479 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001480 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001481 }
1482}
1483
Brian Carlstromf615a612011-07-23 12:50:34 -07001484void ClassLinker::LoadClass(const DexFile& dex_file,
1485 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001486 SirtRef<Class>& klass,
Ian Rogers365c1022012-06-22 15:05:28 -07001487 ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001488 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001489 CHECK(klass->GetDexCache() != NULL);
1490 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001491 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001492 CHECK(descriptor != NULL);
1493
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001494 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001495 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001496 // Make sure that none of our runtime-only flags are set.
1497 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001498 klass->SetAccessFlags(access_flags);
1499 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001500 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001501 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001502
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001503 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001504
Ian Rogers0571d352011-11-03 19:51:38 -07001505 // Load fields fields.
1506 const byte* class_data = dex_file.GetClassData(dex_class_def);
1507 if (class_data == NULL) {
1508 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001509 }
Ian Rogers0571d352011-11-03 19:51:38 -07001510 ClassDataItemIterator it(dex_file, class_data);
1511 if (it.NumStaticFields() != 0) {
1512 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1513 }
1514 if (it.NumInstanceFields() != 0) {
1515 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1516 }
1517 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1518 SirtRef<Field> sfield(AllocField());
1519 klass->SetStaticField(i, sfield.get());
1520 LoadField(dex_file, it, klass, sfield);
1521 }
1522 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1523 SirtRef<Field> ifield(AllocField());
1524 klass->SetInstanceField(i, ifield.get());
1525 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001526 }
1527
Brian Carlstromf5822582012-03-19 22:34:31 -07001528 UniquePtr<const OatFile::OatClass> oat_class;
1529 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1530 oat_class.reset(GetOatClass(dex_file, descriptor));
1531 }
Ian Rogers19846512012-02-24 11:42:47 -08001532
Ian Rogers0571d352011-11-03 19:51:38 -07001533 // Load methods.
1534 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001535 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001536 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001537 }
Ian Rogers0571d352011-11-03 19:51:38 -07001538 if (it.NumVirtualMethods() != 0) {
1539 // TODO: append direct methods to class object
1540 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001541 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001542 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001543 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1544 SirtRef<Method> method(AllocMethod());
1545 klass->SetDirectMethod(i, method.get());
1546 LoadMethod(dex_file, it, klass, method);
1547 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001548 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001549 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001550 method->SetMethodIndex(class_def_method_index);
1551 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001552 }
1553 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1554 SirtRef<Method> method(AllocMethod());
1555 klass->SetVirtualMethod(i, method.get());
1556 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001557 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001558 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001559 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001560 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001561 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001562 }
1563 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001564}
1565
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001566void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001567 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001568 uint32_t field_idx = it.GetMemberIndex();
1569 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001570 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001571 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001572}
1573
Ian Rogers0571d352011-11-03 19:51:38 -07001574void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1575 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001576 uint32_t dex_method_idx = it.GetMemberIndex();
1577 dst->SetDexMethodIndex(dex_method_idx);
1578 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001579 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001580
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001581
1582 StringPiece method_name(dex_file.GetMethodName(method_id));
1583 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001584 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1585 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001586
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001587 if (method_name == "finalize") {
1588 // Create the prototype for a signature of "()V"
1589 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1590 if (void_string_id != NULL) {
1591 const DexFile::TypeId* void_type_id =
1592 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1593 if (void_type_id != NULL) {
1594 std::vector<uint16_t> no_args;
1595 const DexFile::ProtoId* finalizer_proto =
1596 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1597 if (finalizer_proto != NULL) {
1598 // We have the prototype in the dex file
1599 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1600 klass->SetFinalizable();
1601 } else {
1602 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1603 // The Enum class declares a "final" finalize() method to prevent subclasses from
1604 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1605 // subclasses, so we exclude it here.
1606 // We also want to avoid setting the flag on Object, where we know that finalize() is
1607 // empty.
1608 if (klass_descriptor != "Ljava/lang/Object;" &&
1609 klass_descriptor != "Ljava/lang/Enum;") {
1610 klass->SetFinalizable();
1611 }
1612 }
1613 }
1614 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001615 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001616 }
Ian Rogers0571d352011-11-03 19:51:38 -07001617 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001618 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001619
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001620 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001621 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001622 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001623 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001624}
1625
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001626void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001627 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1628 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001629}
1630
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001631void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1632 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001633 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001634 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001635}
1636
Brian Carlstromaded5f72011-10-07 17:15:04 -07001637bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001638 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001639 for (size_t i = 0; i != dex_files_.size(); ++i) {
1640 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001641 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001642 }
1643 }
1644 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001645}
1646
Brian Carlstromaded5f72011-10-07 17:15:04 -07001647bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001648 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001649 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001650}
1651
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001652void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001653 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001654 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001655 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001656 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001657 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001658}
1659
Brian Carlstromaded5f72011-10-07 17:15:04 -07001660void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001661 {
1662 MutexLock mu(dex_lock_);
1663 if (IsDexFileRegisteredLocked(dex_file)) {
1664 return;
1665 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001666 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001667 // Don't alloc while holding the lock, since allocation may need to
1668 // suspend all threads and another thread may need the dex_lock_ to
1669 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001670 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001671 {
1672 MutexLock mu(dex_lock_);
1673 if (IsDexFileRegisteredLocked(dex_file)) {
1674 return;
1675 }
1676 RegisterDexFileLocked(dex_file, dex_cache);
1677 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001678}
1679
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001680void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001681 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001682 RegisterDexFileLocked(dex_file, dex_cache);
1683}
1684
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001685const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001686 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001687 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001688 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1689 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001690 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001691 }
1692 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001693 LOG(FATAL) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001694 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001695}
1696
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001697DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001698 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001699 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001700 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001701 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001702 }
1703 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001704 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001705 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001706}
1707
Ian Rogers19846512012-02-24 11:42:47 -08001708void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1709 MutexLock mu(dex_lock_);
1710 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1711 dex_caches_[i]->Fixup(resolution_method);
1712 }
1713}
1714
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001715Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1716 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001717 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001718 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001719 CHECK(primitive_class != NULL);
1720 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001721 primitive_class->SetPrimitiveType(type);
1722 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001723 Class* existing = InsertClass(descriptor, primitive_class, false);
1724 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") 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 Rogers0cfe1fb2011-08-26 03:29:44 -07001804 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001805 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001806 new_class->SetSuperClass(java_lang_Object);
1807 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001808 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001809 new_class->SetClassLoader(component_type->GetClassLoader());
1810 new_class->SetStatus(Class::kStatusInitialized);
1811 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001812 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001813
1814
1815 // All arrays have java/lang/Cloneable and java/io/Serializable as
1816 // interfaces. We need to set that up here, so that stuff like
1817 // "instanceof" works right.
1818 //
1819 // Note: The GC could run during the call to FindSystemClass,
1820 // so we need to make sure the class object is GC-valid while we're in
1821 // there. Do this by clearing the interface list so the GC will just
1822 // think that the entries are null.
1823
1824
1825 // Use the single, global copies of "interfaces" and "iftable"
1826 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001827 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001828 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001829
1830 // Inherit access flags from the component type. Arrays can't be
1831 // used as a superclass or interface, so we want to add "final"
1832 // and remove "interface".
1833 //
1834 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001835 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001836 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001837 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1838 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001839
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001840 Class* existing = InsertClass(descriptor, new_class.get(), false);
1841 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001842 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001843 }
1844 // Another thread must have loaded the class after we
1845 // started but before we finished. Abandon what we've
1846 // done.
1847 //
1848 // (Yes, this happens.)
1849
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001850 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001851}
1852
1853Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001854 switch (Primitive::GetType(type)) {
1855 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001856 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001857 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001858 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001859 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001860 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001861 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001862 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001863 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001864 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001865 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001866 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001867 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001868 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001869 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001870 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001871 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001872 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001873 case Primitive::kPrimNot:
1874 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001875 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001876 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001877 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001878 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001879}
1880
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001881Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001882 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001883 DexCache* dex_cache = klass->GetDexCache();
1884 std::string source;
1885 if (dex_cache != NULL) {
1886 source += " from ";
1887 source += dex_cache->GetLocation()->ToModifiedUtf8();
1888 }
1889 LOG(INFO) << "Loaded class " << descriptor << source;
1890 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001891 size_t hash = StringPieceHash()(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001892 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001893 Table& classes = image_class ? image_classes_ : classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001894 Class* existing = LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, classes);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001895#ifndef NDEBUG
1896 // Check we don't have the class in the other table in error
1897 Table& other_classes = image_class ? classes_ : image_classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001898 CHECK(LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001899#endif
1900 if (existing != NULL) {
1901 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001902 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001903 classes.insert(std::make_pair(hash, klass));
1904 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001905}
1906
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001907bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1908 size_t hash = Hash(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001909 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001910 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001911 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001912 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001913 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001914 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001915 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001916 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001917 classes_.erase(it);
1918 return true;
1919 }
1920 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001921 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001922 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001923 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001924 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001925 image_classes_.erase(it);
1926 return true;
1927 }
1928 }
1929 return false;
1930}
1931
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001932Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1933 size_t hash = Hash(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001934 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001935 // TODO: determine if its better to search classes_ or image_classes_ first
Elliott Hughesf8349362012-06-18 15:00:06 -07001936 Class* klass = LookupClassLocked(descriptor, class_loader, hash, classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001937 if (klass != NULL) {
1938 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001939 }
Elliott Hughesf8349362012-06-18 15:00:06 -07001940 return LookupClassLocked(descriptor, class_loader, hash, image_classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001941}
1942
Elliott Hughesf8349362012-06-18 15:00:06 -07001943Class* ClassLinker::LookupClassLocked(const char* descriptor, const ClassLoader* class_loader,
1944 size_t hash, const Table& classes) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001945 ClassHelper kh(NULL, this);
1946 typedef Table::const_iterator It; // TODO: C++0x auto
1947 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001948 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001949 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001950 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001951#ifndef NDEBUG
1952 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001953 Class* klass2 = it->second;
1954 kh.ChangeClass(klass2);
1955 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001956 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001957 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001958 }
1959#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001960 return klass;
1961 }
1962 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001963 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001964}
1965
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001966void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001967 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001968 size_t hash = Hash(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001969 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001970 typedef Table::const_iterator It; // TODO: C++0x auto
1971 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001972 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001973 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001974 Class* klass = it->second;
1975 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001976 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001977 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001978 }
1979 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001980 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001981 Class* klass = it->second;
1982 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001983 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001984 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001985 }
1986 }
1987}
1988
TDYa1273db52852012-04-01 15:11:43 -07001989#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001990static void CheckMethodsHaveGcMaps(Class* klass)
1991 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08001992 if (!Runtime::Current()->IsStarted()) {
1993 return;
1994 }
1995 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1996 Method* method = klass->GetDirectMethod(i);
1997 if (!method->IsNative() && !method->IsAbstract()) {
1998 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1999 }
2000 }
2001 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2002 Method* method = klass->GetVirtualMethod(i);
2003 if (!method->IsNative() && !method->IsAbstract()) {
2004 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
2005 }
2006 }
2007}
2008#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002009static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08002010}
2011#endif
2012
jeffhao98eacac2011-09-14 16:11:53 -07002013void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002014 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08002015 ObjectLock lock(klass);
2016
jeffhao98eacac2011-09-14 16:11:53 -07002017 if (klass->IsVerified()) {
2018 return;
2019 }
2020
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002021 // The class might already be erroneous if we attempted to verify a subclass
2022 if (klass->IsErroneous()) {
2023 ThrowEarlierClassFailure(klass);
2024 return;
2025 }
2026
jeffhaoa9b3bf42012-06-06 17:18:39 -07002027 CHECK(klass->GetStatus() == Class::kStatusResolved ||
2028 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07002029 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07002030
Ian Rogers1c5eb702012-02-01 09:18:34 -08002031 // Verify super class
2032 Class* super = klass->GetSuperClass();
2033 std::string error_msg;
2034 if (super != NULL) {
2035 // Acquire lock to prevent races on verifying the super class
2036 ObjectLock lock(super);
2037
2038 if (!super->IsVerified() && !super->IsErroneous()) {
2039 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2040 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002041 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08002042 error_msg = "Rejecting class ";
2043 error_msg += PrettyDescriptor(klass);
2044 error_msg += " that attempts to sub-class erroneous class ";
2045 error_msg += PrettyDescriptor(super);
2046 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2047 Thread* self = Thread::Current();
2048 SirtRef<Throwable> cause(self->GetException());
2049 if (cause.get() != NULL) {
2050 self->ClearException();
2051 }
2052 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2053 if (cause.get() != NULL) {
2054 self->GetException()->SetCause(cause.get());
2055 }
2056 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2057 klass->SetStatus(Class::kStatusError);
2058 return;
2059 }
2060 }
2061
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002062 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002063 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002064 Class::Status oat_file_class_status(Class::kStatusNotReady);
2065 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002066 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
2067 if (!preverified) {
2068 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2069 }
2070 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002071 if (!preverified && oat_file_class_status == Class::kStatusError) {
2072 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2073 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2074 }
Ian Rogers529781d2012-07-23 17:24:29 -07002075 if (!preverified && verifier_failure != verifier::MethodVerifier::kNoFailure) {
2076 LOG(WARNING) << "Soft verification failure in class " << PrettyDescriptor(klass)
2077 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2078 << " because: " << error_msg;
2079 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002080 Thread::Current()->AssertNoPendingException();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002081 // Make sure all classes referenced by catch blocks are resolved.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002082 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002083 if (verifier_failure == verifier::MethodVerifier::kNoFailure) {
2084 klass->SetStatus(Class::kStatusVerified);
2085 } else {
2086 CHECK_EQ(verifier_failure, verifier::MethodVerifier::kSoftFailure);
2087 // Soft failures at compile time should be retried at runtime. Soft
2088 // failures at runtime will be handled by slow paths in the generated
2089 // code. Set status accordingly.
2090 if (Runtime::Current()->IsCompiler()) {
2091 klass->SetStatus(Class::kStatusRetryVerificationAtRuntime);
2092 } else {
2093 klass->SetStatus(Class::kStatusVerified);
2094 }
2095 }
Ian Rogersc20a83e2012-01-18 18:15:32 -08002096 // Sanity check that a verified class has GC maps on all methods
2097 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002098 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002099 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002100 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2101 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002102 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002103 self->AssertNoPendingException();
Ian Rogers1c5eb702012-02-01 09:18:34 -08002104 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2105 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002106 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002107 }
jeffhao98eacac2011-09-14 16:11:53 -07002108}
2109
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002110bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2111 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002112 if (!Runtime::Current()->IsStarted()) {
2113 return false;
2114 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002115 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002116 return false;
2117 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002118 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2119 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002120 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002121 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002122 const char* descriptor = ClassHelper(klass).GetDescriptor();
2123 uint32_t class_def_index;
2124 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002125 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002126 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002127 CHECK(oat_class.get() != NULL)
2128 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002129 oat_file_class_status = oat_class->GetStatus();
2130 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002131 return true;
2132 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002133 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002134 // Compile time verification failed with a soft error. Compile time verification can fail
2135 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002136 // class ... {
2137 // Foo x;
2138 // .... () {
2139 // if (...) {
2140 // v1 gets assigned a type of resolved class Foo
2141 // } else {
2142 // v1 gets assigned a type of unresolved class Bar
2143 // }
2144 // iput x = v1
2145 // } }
2146 // when we merge v1 following the if-the-else it results in Conflict
2147 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2148 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2149 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2150 // at compile time).
2151 return false;
2152 }
jeffhao1ac29442012-03-26 11:37:32 -07002153 if (oat_file_class_status == Class::kStatusError) {
2154 // Compile time verification failed with a hard error. This is caused by invalid instructions
2155 // in the class. These errors are unrecoverable.
2156 return false;
2157 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002158 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002159 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2160 // not loading the class.
2161 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2162 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002163 return false;
2164 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002165 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002166 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2167
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002168 return false;
2169}
2170
2171void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2172 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2173 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2174 }
2175 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2176 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2177 }
2178}
2179
2180void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2181 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2182 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2183 if (code_item == NULL) {
2184 return; // native or abstract method
2185 }
2186 if (code_item->tries_size_ == 0) {
2187 return; // nothing to process
2188 }
2189 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2190 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2191 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2192 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2193 CatchHandlerIterator iterator(handlers_ptr);
2194 for (; iterator.HasNext(); iterator.Next()) {
2195 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2196 // unresolved exception types will be ignored by exception delivery
2197 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2198 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2199 if (exception_type == NULL) {
2200 DCHECK(Thread::Current()->IsExceptionPending());
2201 Thread::Current()->ClearException();
2202 }
2203 }
2204 }
2205 handlers_ptr = iterator.EndDataPointer();
2206 }
2207}
2208
Ian Rogersc2b44472011-12-14 21:17:17 -08002209static void CheckProxyConstructor(Method* constructor);
2210static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2211
Jesse Wilson95caa792011-10-12 18:14:17 -04002212Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002213 ClassLoader* loader, ObjectArray<Method>* methods,
2214 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002215 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002216 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002217 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002218 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002219 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002220 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002221 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002222 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002223 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002224 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002225
2226 klass->SetStatus(Class::kStatusIdx);
2227
2228 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2229
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002230 // Instance fields are inherited, but we add a couple of static fields...
2231 klass->SetSFields(AllocObjectArray<Field>(2));
2232 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2233 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2234 SirtRef<Field> interfaces_sfield(AllocField());
2235 klass->SetStaticField(0, interfaces_sfield.get());
2236 interfaces_sfield->SetDexFieldIndex(0);
2237 interfaces_sfield->SetDeclaringClass(klass.get());
2238 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2239 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2240 SirtRef<Field> throws_sfield(AllocField());
2241 klass->SetStaticField(1, throws_sfield.get());
2242 throws_sfield->SetDexFieldIndex(1);
2243 throws_sfield->SetDeclaringClass(klass.get());
2244 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002245
Ian Rogers466bb252011-10-14 03:29:56 -07002246 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002247 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002248 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002249
Ian Rogers466bb252011-10-14 03:29:56 -07002250 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002251 size_t num_virtual_methods = methods->GetLength();
2252 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2253 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002254 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002255 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002256 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002257
2258 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2259 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2260 DCHECK(!Thread::Current()->IsExceptionPending());
2261
2262 // Link the fields and virtual methods, creating vtable and iftables
2263 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002264 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002265 return NULL;
2266 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002267 interfaces_sfield->SetObject(NULL, interfaces);
2268 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002269 klass->SetStatus(Class::kStatusInitialized);
2270
2271 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002272 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002273 CHECK(klass->GetIFields() == NULL);
2274 CheckProxyConstructor(klass->GetDirectMethod(0));
2275 for (size_t i = 0; i < num_virtual_methods; ++i) {
2276 SirtRef<Method> prototype(methods->Get(i));
2277 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2278 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002279
2280 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2281 name->ToModifiedUtf8().c_str()));
2282 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2283
2284 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2285 name->ToModifiedUtf8().c_str()));
2286 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002287
2288 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002289 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002290 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2291 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002292 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002293}
2294
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002295std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2296 DCHECK(proxy_class->IsProxyClass());
2297 String* name = proxy_class->GetName();
2298 DCHECK(name != NULL);
2299 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2300}
2301
Ian Rogers16f93672012-02-14 12:29:06 -08002302Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2303 DCHECK(proxy_class->IsProxyClass());
2304 DCHECK(proxy_method->IsProxyMethod());
2305 // Locate the dex cache of the original interface/Object
2306 DexCache* dex_cache = NULL;
2307 {
2308 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2309 MutexLock mu(dex_lock_);
2310 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2311 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2312 dex_cache = dex_caches_[i];
2313 break;
2314 }
2315 }
2316 }
2317 CHECK(dex_cache != NULL);
2318 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2319 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2320 CHECK(resolved_method != NULL);
2321 return resolved_method;
2322}
2323
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002324
2325Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002326 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002327 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002328 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002329 Method* proxy_constructor = proxy_direct_methods->Get(2);
2330 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2331 // code_ too)
2332 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2333 // Make this constructor public and fix the class to be our Proxy version
2334 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002335 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002336 return constructor;
2337}
2338
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002339static void CheckProxyConstructor(Method* constructor)
2340 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002341 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002342 MethodHelper mh(constructor);
2343 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002344 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002345 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002346}
2347
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002348Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2349 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2350 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002351 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2352 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002353 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002354 // as necessary
2355 Method* method = down_cast<Method*>(prototype->Clone());
2356
2357 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2358 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002359 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002360 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002361
Ian Rogers466bb252011-10-14 03:29:56 -07002362 // At runtime the method looks like a reference and argument saving method, clone the code
2363 // related parameters from this method.
2364 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2365 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2366 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2367 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002368#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002369 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002370#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002371 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2372 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002373#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002374
Ian Rogersc2b44472011-12-14 21:17:17 -08002375 return method;
2376}
Jesse Wilson95caa792011-10-12 18:14:17 -04002377
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002378static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype)
2379 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002380 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002381 CHECK(!prototype->IsFinal());
2382 CHECK(method->IsFinal());
2383 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002384
2385 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2386 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2387 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2388 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2389 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2390 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2391 method->GetDexCacheInitializedStaticStorage());
2392 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2393
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002394 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002395 MethodHelper mh2(prototype.get());
2396 CHECK_STREQ(mh.GetName(), mh2.GetName());
2397 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002398 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002399 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002400}
2401
Ian Rogers0045a292012-03-31 21:08:41 -07002402bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002403 CHECK(klass->IsResolved() || klass->IsErroneous())
2404 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002405
Carl Shapirob5573532011-07-12 18:22:59 -07002406 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002407
Brian Carlstrom25c33252011-09-18 15:58:35 -07002408 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002409 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002410 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002411 ObjectLock lock(klass);
2412
Brian Carlstromd1422f82011-09-28 11:37:09 -07002413 if (klass->GetStatus() == Class::kStatusInitialized) {
2414 return true;
2415 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002416
Brian Carlstromd1422f82011-09-28 11:37:09 -07002417 if (klass->IsErroneous()) {
2418 ThrowEarlierClassFailure(klass);
2419 return false;
2420 }
2421
jeffhaoebe2e0f2012-06-06 15:19:40 -07002422 if (klass->GetStatus() == Class::kStatusResolved ||
2423 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002424 VerifyClass(klass);
2425 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002426 if (klass->GetStatus() == Class::kStatusError) {
2427 CHECK(self->IsExceptionPending());
2428 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002429 return false;
2430 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002431 }
2432
Brian Carlstrom25c33252011-09-18 15:58:35 -07002433 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2434 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002435 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002436 // don't bother going to kStatusInitializing. We return false so that
2437 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002438 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2439 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002440 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002441 }
2442
Brian Carlstromd1422f82011-09-28 11:37:09 -07002443 // If the class is kStatusInitializing, either this thread is
2444 // initializing higher up the stack or another thread has beat us
2445 // to initializing and we need to wait. Either way, this
2446 // invocation of InitializeClass will not be responsible for
2447 // running <clinit> and will return.
2448 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002449 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002450 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002451 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002452 return true;
2453 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002454 // No. That's fine. Wait for another thread to finish initializing.
2455 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002456 }
2457
2458 if (!ValidateSuperClassDescriptors(klass)) {
2459 klass->SetStatus(Class::kStatusError);
2460 return false;
2461 }
2462
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002463 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002464
Elliott Hughesdcc24742011-09-07 14:02:44 -07002465 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002466 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002467 }
2468
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002469 uint64_t t0 = NanoTime();
2470
Ian Rogers0045a292012-03-31 21:08:41 -07002471 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002472 // Super class initialization failed, this can be because we can't run
2473 // super-class class initializers in which case we'll be verified.
2474 // Otherwise this class is erroneous.
2475 if (!can_run_clinit) {
2476 CHECK(klass->IsVerified());
2477 } else {
2478 CHECK(klass->IsErroneous());
2479 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002480 return false;
2481 }
2482
Ian Rogers0045a292012-03-31 21:08:41 -07002483 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002484
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002485 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002486 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002487 }
2488
Ian Rogers19846512012-02-24 11:42:47 -08002489 FixupStaticTrampolines(klass);
2490
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002491 uint64_t t1 = NanoTime();
2492
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002493 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002494 {
2495 ObjectLock lock(klass);
2496
2497 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002498 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002499 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002500 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002501 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002502 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2503 RuntimeStats* thread_stats = self->GetStats();
2504 ++global_stats->class_init_count;
2505 ++thread_stats->class_init_count;
2506 global_stats->class_init_time_ns += (t1 - t0);
2507 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002508 // Set the class as initialized except if we can't initialize static fields and static field
2509 // initialization is necessary.
2510 if (!can_init_statics && has_static_field_initializers) {
2511 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2512 success = false;
2513 } else {
2514 klass->SetStatus(Class::kStatusInitialized);
2515 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002516 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002517 ClassHelper kh(klass);
2518 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002519 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002520 }
2521 lock.NotifyAll();
2522 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002523 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002524}
2525
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002526bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock)
2527 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002528 while (true) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002529 self->AssertNoPendingException();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002530 lock.Wait();
2531
2532 // When we wake up, repeat the test for init-in-progress. If
2533 // there's an exception pending (only possible if
2534 // "interruptShouldThrow" was set), bail out.
2535 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002536 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002537 klass->SetStatus(Class::kStatusError);
2538 return false;
2539 }
2540 // Spurious wakeup? Go back to waiting.
2541 if (klass->GetStatus() == Class::kStatusInitializing) {
2542 continue;
2543 }
2544 if (klass->IsErroneous()) {
2545 // The caller wants an exception, but it was thrown in a
2546 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002547 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002548 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002549 return false;
2550 }
2551 if (klass->IsInitialized()) {
2552 return true;
2553 }
2554 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2555 }
2556 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2557}
2558
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002559bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2560 if (klass->IsInterface()) {
2561 return true;
2562 }
2563 // begin with the methods local to the superclass
2564 if (klass->HasSuperClass() &&
2565 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2566 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002567 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2568 const Method* method = klass->GetVTable()->Get(i);
2569 if (method != super->GetVTable()->Get(i) &&
2570 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002571 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2572 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2573 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002574 return false;
2575 }
2576 }
2577 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002578 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2579 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2580 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002581 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2582 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002583 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002584 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2585 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002586 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2587 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2588 PrettyMethod(method).c_str(),
2589 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002590 return false;
2591 }
2592 }
2593 }
2594 }
2595 return true;
2596}
2597
Ian Rogers595799e2012-01-11 17:32:51 -08002598// Returns true if classes referenced by the signature of the method are the
2599// same classes in klass1 as they are in klass2.
2600bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2601 const Class* klass1,
2602 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002603 if (klass1 == klass2) {
2604 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002605 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002606 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002607 const DexFile::ProtoId& proto_id =
2608 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002609 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2610 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002611 if (descriptor == NULL) {
2612 break;
2613 }
2614 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2615 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002616 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002617 return false;
2618 }
2619 }
2620 }
2621 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002622 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002623 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002624 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002625 return false;
2626 }
2627 }
2628 return true;
2629}
2630
Ian Rogers595799e2012-01-11 17:32:51 -08002631// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2632bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2633 const Class* klass1,
2634 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002635 CHECK(descriptor != NULL);
2636 CHECK(klass1 != NULL);
2637 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002638 if (klass1 == klass2) {
2639 return true;
2640 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002641 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002642 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002643 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002644 }
Ian Rogers595799e2012-01-11 17:32:51 -08002645 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2646 if (found2 == NULL) {
2647 Thread::Current()->ClearException();
2648 }
2649 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002650}
2651
Ian Rogers0045a292012-03-31 21:08:41 -07002652bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002653 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002654 if (!klass->IsInterface() && klass->HasSuperClass()) {
2655 Class* super_class = klass->GetSuperClass();
2656 if (super_class->GetStatus() != Class::kStatusInitialized) {
2657 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002658 Thread* self = Thread::Current();
2659 klass->MonitorEnter(self);
Ian Rogers0045a292012-03-31 21:08:41 -07002660 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Elliott Hughes5f791332011-09-15 17:45:30 -07002661 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002662 // TODO: check for a pending exception
2663 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002664 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002665 // Don't set status to error when we can't run <clinit>.
2666 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2667 klass->SetStatus(Class::kStatusVerified);
2668 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002669 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002670 klass->SetStatus(Class::kStatusError);
2671 klass->NotifyAll();
2672 return false;
2673 }
2674 }
2675 }
2676 return true;
2677}
2678
Ian Rogers0045a292012-03-31 21:08:41 -07002679bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002680 CHECK(c != NULL);
2681 if (c->IsInitialized()) {
2682 return true;
2683 }
2684
Elliott Hughes5f791332011-09-15 17:45:30 -07002685 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002686 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002687 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002688 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002689 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002690 }
2691 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002692}
2693
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002694void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002695 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Ian Rogers365c1022012-06-22 15:05:28 -07002696 ClassLoader* cl = c->GetClassLoader();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002697 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002698 ClassDataItemIterator it(dex_file, class_data);
2699 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002700 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002701 }
2702}
2703
Ian Rogers0045a292012-03-31 21:08:41 -07002704bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002705 size_t num_static_fields = klass->NumStaticFields();
2706 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002707 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002708 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002709 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002710 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002711 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002712 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002713 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002714 ClassHelper kh(klass);
2715 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002716 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002717 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002718 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002719
Ian Rogers0571d352011-11-03 19:51:38 -07002720 if (it.HasNext()) {
2721 // 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 -07002722 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002723 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2724 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002725 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002726 }
Ian Rogers0045a292012-03-31 21:08:41 -07002727 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002728 }
Ian Rogers0045a292012-03-31 21:08:41 -07002729 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002730}
2731
Ian Rogersc2b44472011-12-14 21:17:17 -08002732bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002733 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002734 if (!LinkSuperClass(klass)) {
2735 return false;
2736 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002737 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002738 return false;
2739 }
2740 if (!LinkInstanceFields(klass)) {
2741 return false;
2742 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002743 if (!LinkStaticFields(klass)) {
2744 return false;
2745 }
2746 CreateReferenceInstanceOffsets(klass);
2747 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002748 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2749 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002750 return true;
2751}
2752
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002753bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002754 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002755 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2756 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002757 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002758 uint16_t super_class_idx = class_def->superclass_idx_;
2759 if (super_class_idx != DexFile::kDexNoIndex16) {
2760 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002761 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002762 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002763 return false;
2764 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002765 // Verify
2766 if (!klass->CanAccess(super_class)) {
2767 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2768 "Class %s extended by class %s is inaccessible",
2769 PrettyDescriptor(super_class).c_str(),
2770 PrettyDescriptor(klass.get()).c_str());
2771 return false;
2772 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002773 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002774 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002775 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2776 if (interfaces != NULL) {
2777 for (size_t i = 0; i < interfaces->Size(); i++) {
2778 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2779 Class* interface = ResolveType(dex_file, idx, klass.get());
2780 if (interface == NULL) {
2781 DCHECK(Thread::Current()->IsExceptionPending());
2782 return false;
2783 }
2784 // Verify
2785 if (!klass->CanAccess(interface)) {
2786 // TODO: the RI seemed to ignore this in my testing.
2787 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2788 "Interface %s implemented by class %s is inaccessible",
2789 PrettyDescriptor(interface).c_str(),
2790 PrettyDescriptor(klass.get()).c_str());
2791 return false;
2792 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002793 }
2794 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002795 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002796 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002797 return true;
2798}
2799
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002800bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002801 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002802 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002803 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002804 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002805 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002806 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002807 return false;
2808 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002809 return true;
2810 }
2811 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002812 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002813 return false;
2814 }
2815 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002816 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002817 Thread* self = Thread::Current();
2818 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002819 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002820 PrettyDescriptor(super).c_str(),
2821 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002822 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002823 return false;
2824 }
2825 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002826 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002827 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002828 PrettyDescriptor(super).c_str(),
2829 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002830 return false;
2831 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002832
2833 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2834 if (super->IsFinalizable()) {
2835 klass->SetFinalizable();
2836 }
2837
Elliott Hughes2da50362011-10-10 16:57:08 -07002838 // Inherit reference flags (if any) from the superclass.
2839 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2840 if (reference_flags != 0) {
2841 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2842 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002843 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002844 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002845 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002846 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002847 return false;
2848 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002849
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002850#ifndef NDEBUG
2851 // Ensure super classes are fully resolved prior to resolving fields..
2852 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002853 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002854 super = super->GetSuperClass();
2855 }
2856#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002857 return true;
2858}
2859
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002860// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002861bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002862 if (klass->IsInterface()) {
2863 // No vtable.
2864 size_t count = klass->NumVirtualMethods();
2865 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002866 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002867 return false;
2868 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002869 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002870 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002871 }
jeffhaobdb76512011-09-07 11:43:16 -07002872 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002873 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002874 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002875 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002876 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002877 }
2878 return true;
2879}
2880
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002881bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002882 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002883 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2884 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002885 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002886 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002887 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002888 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002889 MethodHelper local_mh(NULL, this);
2890 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002891 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002892 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002893 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002894 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002895 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002896 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002897 super_mh.ChangeMethod(super_method);
Elliott Hughes39717372012-07-13 16:21:23 -07002898 if (local_mh.HasSameNameAndSignature(&super_mh)) {
2899 if (klass->CanAccessMember(super_method->GetDeclaringClass(), super_method->GetAccessFlags())) {
2900 if (super_method->IsFinal()) {
2901 ThrowLinkageError("Method %s overrides final method in class %s",
2902 PrettyMethod(local_method).c_str(),
2903 super_mh.GetDeclaringClassDescriptor());
2904 return false;
2905 }
2906 vtable->Set(j, local_method);
2907 local_method->SetMethodIndex(j);
2908 break;
2909 } else {
2910 LOG(WARNING) << "Before Android 4.1, method " << PrettyMethod(local_method)
2911 << " would have incorrectly overridden the package-private method in "
2912 << PrettyDescriptor(super_mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002913 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002914 }
2915 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002916 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002917 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002918 vtable->Set(actual_count, local_method);
2919 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002920 actual_count += 1;
2921 }
2922 }
2923 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002924 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002925 return false;
2926 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002927 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002928 CHECK_LE(actual_count, max_count);
2929 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002930 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002931 }
Ian Rogers30fab402012-01-23 15:43:46 -08002932 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002933 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002934 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002935 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002936 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002937 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002938 return false;
2939 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002940 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002941 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002942 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2943 vtable->Set(i, virtual_method);
2944 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002945 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002946 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002947 }
2948 return true;
2949}
2950
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002951bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002952 size_t super_ifcount;
2953 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002954 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002955 } else {
2956 super_ifcount = 0;
2957 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002958 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002959 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07002960 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002961 ifcount += num_interfaces;
2962 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002963 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002964 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002965 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002966 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002967 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002968 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002969 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002970 return true;
2971 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002972 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002973 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002974 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2975 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002976 Class* super_interface = super_iftable->Get(i)->GetInterface();
2977 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002978 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002979 }
2980 // Flatten the interface inheritance hierarchy.
2981 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002982 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002983 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002984 DCHECK(interface != NULL);
2985 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002986 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002987 Thread* self = Thread::Current();
2988 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002989 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002990 PrettyDescriptor(klass.get()).c_str(),
2991 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002992 return false;
2993 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002994 // Check if interface is already in iftable
2995 bool duplicate = false;
2996 for (size_t j = 0; j < idx; j++) {
2997 Class* existing_interface = iftable->Get(j)->GetInterface();
2998 if (existing_interface == interface) {
2999 duplicate = true;
3000 break;
3001 }
3002 }
3003 if (!duplicate) {
3004 // Add this non-duplicate interface.
3005 iftable->Set(idx++, AllocInterfaceEntry(interface));
3006 // Add this interface's non-duplicate super-interfaces.
3007 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
3008 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
3009 bool super_duplicate = false;
3010 for (size_t k = 0; k < idx; k++) {
3011 Class* existing_interface = iftable->Get(k)->GetInterface();
3012 if (existing_interface == super_interface) {
3013 super_duplicate = true;
3014 break;
3015 }
3016 }
3017 if (!super_duplicate) {
3018 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
3019 }
3020 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003021 }
3022 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08003023 // Shrink iftable in case duplicates were found
3024 if (idx < ifcount) {
3025 iftable.reset(iftable->CopyOf(idx));
3026 ifcount = idx;
3027 } else {
3028 CHECK_EQ(idx, ifcount);
3029 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003030 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07003031
3032 // If we're an interface, we don't need the vtable pointers, so we're done.
3033 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003034 return true;
3035 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003036 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003037 MethodHelper vtable_mh(NULL, this);
3038 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003039 for (size_t i = 0; i < ifcount; ++i) {
3040 InterfaceEntry* interface_entry = iftable->Get(i);
3041 Class* interface = interface_entry->GetInterface();
3042 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
3043 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003044 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003045 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
3046 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003047 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003048 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07003049 // For each method listed in the interface's method list, find the
3050 // matching method in our class's method list. We want to favor the
3051 // subclass over the superclass, which just requires walking
3052 // back from the end of the vtable. (This only matters if the
3053 // superclass defines a private method and this class redefines
3054 // it -- otherwise it would use the same vtable slot. In .dex files
3055 // those don't end up in the virtual method table, so it shouldn't
3056 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003057 for (k = vtable->GetLength() - 1; k >= 0; --k) {
3058 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003059 vtable_mh.ChangeMethod(vtable_method);
3060 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07003061 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07003062 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003063 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003064 return false;
3065 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003066 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003067 break;
3068 }
3069 }
3070 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003071 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003072 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003073 Method* mir_method = miranda_list[mir];
3074 vtable_mh.ChangeMethod(mir_method);
3075 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003076 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003077 break;
3078 }
3079 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003080 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003081 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003082 miranda_method.reset(AllocMethod());
3083 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3084 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003085 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003086 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003087 }
3088 }
3089 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003090 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003091 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003092 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003093 klass->SetVirtualMethods((old_method_count == 0)
3094 ? AllocObjectArray<Method>(new_method_count)
3095 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003096
Ian Rogers30fab402012-01-23 15:43:46 -08003097 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3098 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003099 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003100 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003101 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003102 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003103 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003104 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003105 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3106 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3107 klass->SetVirtualMethod(old_method_count + i, method);
3108 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003109 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003110 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003111 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003112 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003113
3114 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3115 for (int i = 0; i < vtable->GetLength(); ++i) {
3116 CHECK(vtable->Get(i) != NULL);
3117 }
3118
3119// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3120
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003121 return true;
3122}
3123
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003124bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3125 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003126 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003127}
3128
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003129bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3130 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003131 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003132 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003133 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003134 return success;
3135}
3136
Brian Carlstromdbc05252011-09-09 01:59:59 -07003137struct LinkFieldsComparator {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003138 explicit LinkFieldsComparator(FieldHelper* fh)
3139 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_)
3140 : fh_(fh) {}
3141 // No thread safety analysis as will be called from STL. Checked lock held in constructor.
3142 bool operator()(const Field* field1, const Field* field2) NO_THREAD_SAFETY_ANALYSIS {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003143 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003144 fh_->ChangeField(field1);
3145 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3146 fh_->ChangeField(field2);
3147 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003148 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3149 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3150 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3151 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003152 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3153 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3154 if (order1 != order2) {
3155 return order1 < order2;
3156 }
3157
3158 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003159 fh_->ChangeField(field1);
3160 StringPiece name1(fh_->GetName());
3161 fh_->ChangeField(field2);
3162 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003163 return name1 < name2;
3164 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003165
3166 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003167};
3168
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003169bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003170 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003171 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003172
3173 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003174 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003175
3176 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003177 size_t size;
3178 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003179 if (is_static) {
3180 size = klass->GetClassSize();
3181 field_offset = Class::FieldsOffset();
3182 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003183 Class* super_class = klass->GetSuperClass();
3184 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003185 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003186 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003187 }
3188 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003189 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003190
Brian Carlstromdbc05252011-09-09 01:59:59 -07003191 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003192
Brian Carlstromdbc05252011-09-09 01:59:59 -07003193 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003194 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003195 std::deque<Field*> grouped_and_sorted_fields;
3196 for (size_t i = 0; i < num_fields; i++) {
3197 grouped_and_sorted_fields.push_back(fields->Get(i));
3198 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003199 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003200 std::sort(grouped_and_sorted_fields.begin(),
3201 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003202 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003203
3204 // References should be at the front.
3205 size_t current_field = 0;
3206 size_t num_reference_fields = 0;
3207 for (; current_field < num_fields; current_field++) {
3208 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003209 fh.ChangeField(field);
3210 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003211 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003212 if (isPrimitive) {
3213 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003214 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003215 grouped_and_sorted_fields.pop_front();
3216 num_reference_fields++;
3217 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003218 field->SetOffset(field_offset);
3219 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003220 }
3221
3222 // Now we want to pack all of the double-wide fields together. If
3223 // we're not aligned, though, we want to shuffle one 32-bit field
3224 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003225 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003226 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3227 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003228 fh.ChangeField(field);
3229 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003230 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3231 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003232 continue;
3233 }
3234 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003235 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003236 // drop the consumed field
3237 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3238 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003239 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003240 // whether we found a 32-bit field for padding or not, we advance
3241 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003242 }
3243
3244 // Alignment is good, shuffle any double-wide fields forward, and
3245 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003246 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003247 while (!grouped_and_sorted_fields.empty()) {
3248 Field* field = grouped_and_sorted_fields.front();
3249 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003250 fh.ChangeField(field);
3251 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003252 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003253 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003254 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003255 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003256 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003257 ? sizeof(uint64_t)
3258 : sizeof(uint32_t)));
3259 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003260 }
3261
Elliott Hughesadb460d2011-10-05 17:02:34 -07003262 // 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 -08003263 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3264 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003265 // We know there are no non-reference fields in the Reference classes, and we know
3266 // that 'referent' is alphabetically last, so this is easy...
3267 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003268 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003269 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003270 --num_reference_fields;
3271 }
3272
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003273#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003274 // Make sure that all reference fields appear before
3275 // non-reference fields, and all double-wide fields are aligned.
3276 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003277 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003278 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003279 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003280 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003281 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003282 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003283 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3284 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003285 fh.ChangeField(field);
3286 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003287 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003288 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003289 is_primitive = true; // We lied above, so we have to expect a lie here.
3290 }
3291 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003292 if (!seen_non_ref) {
3293 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003294 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003295 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003296 } else {
3297 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003298 }
3299 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003300 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003301 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003302 }
3303#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003304 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003305 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003306 if (is_static) {
3307 klass->SetNumReferenceStaticFields(num_reference_fields);
3308 klass->SetClassSize(size);
3309 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003310 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003311 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003312 klass->SetObjectSize(size);
3313 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003314 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003315 return true;
3316}
3317
3318// Set the bitmap of reference offsets, refOffsets, from the ifields
3319// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003320void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003321 uint32_t reference_offsets = 0;
3322 Class* super_class = klass->GetSuperClass();
3323 if (super_class != NULL) {
3324 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003325 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003326 if (reference_offsets == CLASS_WALK_SUPER) {
3327 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003328 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003329 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003330 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003331 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003332}
3333
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003334void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003335 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003336}
3337
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003338void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003339 uint32_t reference_offsets) {
3340 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003341 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3342 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003343 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003344 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003345 // All of the fields that contain object references are guaranteed
3346 // to be at the beginning of the fields list.
3347 for (size_t i = 0; i < num_reference_fields; ++i) {
3348 // Note that byte_offset is the offset from the beginning of
3349 // object, not the offset into instance data
3350 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003351 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003352 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3353 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3354 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003355 CHECK_NE(new_bit, 0U);
3356 reference_offsets |= new_bit;
3357 } else {
3358 reference_offsets = CLASS_WALK_SUPER;
3359 break;
3360 }
3361 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003362 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003363 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003364 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003365 } else {
3366 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003367 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003368}
3369
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003370String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003371 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003372 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003373 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003374 if (resolved != NULL) {
3375 return resolved;
3376 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003377 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3378 int32_t utf16_length = dex_file.GetStringLength(string_id);
3379 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003380 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003381 dex_cache->SetResolvedString(string_idx, string);
3382 return string;
3383}
3384
3385Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003386 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003387 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003388 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003389 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003390 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003391 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003392 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003393 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003394 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003395 // TODO: we used to throw here if resolved's class loader was not the
3396 // boot class loader. This was to permit different classes with the
3397 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003398 dex_cache->SetResolvedType(type_idx, resolved);
3399 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003400 CHECK(Thread::Current()->IsExceptionPending())
3401 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003402 // Convert a ClassNotFoundException to a NoClassDefFoundError
3403 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3404 Thread::Current()->ClearException();
3405 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3406 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003407 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003408 }
3409 return resolved;
3410}
3411
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003412Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3413 uint32_t method_idx,
3414 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003415 ClassLoader* class_loader,
jeffhaoc0228b82012-08-29 18:15:05 -07003416 const Method* referrer,
Ian Rogers08f753d2012-08-24 14:35:25 -07003417 InvokeType type) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003418 DCHECK(dex_cache != NULL);
Ian Rogers08f753d2012-08-24 14:35:25 -07003419 // Check for hit in the dex cache.
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003420 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3421 if (resolved != NULL) {
3422 return resolved;
3423 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003424 // Fail, get the declaring class.
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003425 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3426 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3427 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003428 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003429 return NULL;
3430 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003431 // Scan using method_idx, this saves string compares but will only hit for matching dex
3432 // caches/files.
3433 switch (type) {
3434 case kDirect: // Fall-through.
3435 case kStatic:
3436 resolved = klass->FindDirectMethod(dex_cache, method_idx);
3437 break;
3438 case kInterface:
3439 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
3440 break;
3441 case kSuper: // Fall-through.
3442 case kVirtual:
3443 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
3444 break;
3445 default:
3446 LOG(FATAL) << "Unreachable - invocation type: " << type;
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003447 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003448 if (resolved == NULL) {
Ian Rogers08f753d2012-08-24 14:35:25 -07003449 // Search by name, which works across dex files.
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003450 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3451 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Ian Rogers08f753d2012-08-24 14:35:25 -07003452 switch (type) {
3453 case kDirect: // Fall-through.
3454 case kStatic:
jeffhao8cd6dda2012-02-22 10:15:34 -08003455 resolved = klass->FindDirectMethod(name, signature);
Ian Rogers08f753d2012-08-24 14:35:25 -07003456 break;
3457 case kInterface:
3458 resolved = klass->FindInterfaceMethod(name, signature);
3459 break;
3460 case kSuper: // Fall-through.
3461 case kVirtual:
3462 resolved = klass->FindVirtualMethod(name, signature);
3463 break;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003464 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003465 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003466 if (resolved != NULL) {
3467 // We found a method, check for incompatible class changes.
3468 switch (type) {
3469 case kDirect:
3470 if (resolved->IsStatic()) {
3471 resolved = NULL; // Incompatible class change.
3472 }
3473 break;
3474 case kStatic:
3475 if (!resolved->IsStatic()) {
3476 resolved = NULL; // Incompatible class change.
3477 }
3478 break;
3479 case kInterface:
3480 if (resolved->IsConstructor() || !resolved->GetDeclaringClass()->IsInterface()) {
3481 resolved = NULL; // Incompatible class change.
3482 }
3483 break;
3484 case kSuper:
3485 // TODO: appropriate checks for call to super class.
3486 break;
3487 case kVirtual:
3488 if (resolved->IsConstructor() || resolved->GetDeclaringClass()->IsInterface()) {
3489 resolved = NULL; // Incompatible class change.
3490 }
3491 break;
3492 }
3493 }
3494 if (resolved != NULL) {
3495 // Be a good citizen and update the dex cache to speed subsequent calls.
3496 dex_cache->SetResolvedMethod(method_idx, resolved);
3497 return resolved;
3498 } else {
jeffhaoc0228b82012-08-29 18:15:05 -07003499 // We failed to find the method which means either an access error, an incompatible class
3500 // change, or no such method. First try to find the method among direct and virtual methods.
Ian Rogers08f753d2012-08-24 14:35:25 -07003501 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3502 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3503 switch (type) {
3504 case kDirect:
3505 case kStatic:
3506 resolved = klass->FindVirtualMethod(name, signature);
jeffhaoc0228b82012-08-29 18:15:05 -07003507 break;
3508 case kInterface:
3509 case kVirtual:
3510 case kSuper:
3511 resolved = klass->FindDirectMethod(name, signature);
3512 break;
3513 }
3514
3515 // If we found something, check that it can be accessed by the referrer.
3516 if (resolved != NULL && referrer != NULL) {
3517 Class* methods_class = resolved->GetDeclaringClass();
3518 Class* referring_class = referrer->GetDeclaringClass();
3519 if (!referring_class->CanAccess(methods_class)) {
3520 ThrowNewIllegalAccessErrorClassForMethodDispatch(Thread::Current(), referring_class, methods_class,
3521 referrer, resolved, type);
3522 return NULL;
3523 } else if (!referring_class->CanAccessMember(methods_class,
3524 resolved->GetAccessFlags())) {
3525 ThrowNewIllegalAccessErrorMethod(Thread::Current(), referring_class, resolved);
3526 return NULL;
3527 }
3528 }
3529
3530 // Otherwise, throw an IncompatibleClassChangeError if we found something, and check interface
3531 // methods and throw if we find the method there. If we find nothing, throw a NoSuchMethodError.
3532 switch (type) {
3533 case kDirect:
3534 case kStatic:
Ian Rogers08f753d2012-08-24 14:35:25 -07003535 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003536 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003537 } else {
3538 resolved = klass->FindInterfaceMethod(name, signature);
3539 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003540 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003541 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003542 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003543 }
3544 }
3545 break;
3546 case kInterface:
Ian Rogers08f753d2012-08-24 14:35:25 -07003547 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003548 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003549 } else {
3550 resolved = klass->FindVirtualMethod(name, signature);
3551 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003552 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003553 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003554 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003555 }
3556 }
3557 break;
3558 case kSuper:
Ian Rogers2fc14272012-08-30 10:56:57 -07003559 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003560 break;
3561 case kVirtual:
Ian Rogers08f753d2012-08-24 14:35:25 -07003562 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003563 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003564 } else {
3565 resolved = klass->FindInterfaceMethod(name, signature);
3566 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003567 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003568 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003569 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003570 }
3571 }
3572 break;
3573 }
3574 DCHECK(Thread::Current()->IsExceptionPending());
3575 return NULL;
3576 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003577}
3578
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003579Field* ClassLinker::ResolveField(const DexFile& dex_file,
3580 uint32_t field_idx,
3581 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003582 ClassLoader* class_loader,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003583 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003584 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003585 Field* resolved = dex_cache->GetResolvedField(field_idx);
3586 if (resolved != NULL) {
3587 return resolved;
3588 }
3589 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3590 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3591 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003592 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003593 return NULL;
3594 }
3595
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003596 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003597 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003598 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003599 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003600 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003601
3602 if (resolved == NULL) {
3603 const char* name = dex_file.GetFieldName(field_id);
3604 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3605 if (is_static) {
3606 resolved = klass->FindStaticField(name, type);
3607 } else {
3608 resolved = klass->FindInstanceField(name, type);
3609 }
3610 if (resolved == NULL) {
3611 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3612 return NULL;
3613 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003614 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003615 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003616 return resolved;
3617}
3618
3619Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3620 uint32_t field_idx,
3621 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003622 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003623 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003624 Field* resolved = dex_cache->GetResolvedField(field_idx);
3625 if (resolved != NULL) {
3626 return resolved;
3627 }
3628 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3629 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3630 if (klass == NULL) {
3631 DCHECK(Thread::Current()->IsExceptionPending());
3632 return NULL;
3633 }
3634
3635 const char* name = dex_file.GetFieldName(field_id);
3636 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3637 resolved = klass->FindField(name, type);
3638 if (resolved != NULL) {
3639 dex_cache->SetResolvedField(field_idx, resolved);
3640 } else {
3641 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003642 }
3643 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003644}
3645
Ian Rogers19846512012-02-24 11:42:47 -08003646const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003647 Class* declaring_class = referrer->GetDeclaringClass();
3648 DexCache* dex_cache = declaring_class->GetDexCache();
3649 const DexFile& dex_file = FindDexFile(dex_cache);
3650 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003651 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003652}
3653
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003654void ClassLinker::DumpAllClasses(int flags) const {
3655 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3656 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3657 std::vector<Class*> all_classes;
3658 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003659 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003660 typedef Table::const_iterator It; // TODO: C++0x auto
3661 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3662 all_classes.push_back(it->second);
3663 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003664 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3665 all_classes.push_back(it->second);
3666 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003667 }
3668
3669 for (size_t i = 0; i < all_classes.size(); ++i) {
3670 all_classes[i]->DumpClass(std::cerr, flags);
3671 }
3672}
3673
Elliott Hughescac6cc72011-11-03 20:31:21 -07003674void ClassLinker::DumpForSigQuit(std::ostream& os) const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003675 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -07003676 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3677 << classes_.size() << " allocated classes\n";
3678}
3679
Elliott Hughese27955c2011-08-26 15:21:24 -07003680size_t ClassLinker::NumLoadedClasses() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003681 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003682 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003683}
3684
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003685pid_t ClassLinker::GetClassesLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003686 return GlobalSynchronization::classlinker_classes_lock_->GetExclusiveOwnerTid();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003687}
3688
3689pid_t ClassLinker::GetDexLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003690 return dex_lock_.GetExclusiveOwnerTid();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003691}
3692
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003693void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3694 DCHECK(!init_done_);
3695
3696 DCHECK(klass != NULL);
3697 DCHECK(klass->GetClassLoader() == NULL);
3698
3699 DCHECK(class_roots_ != NULL);
3700 DCHECK(class_roots_->Get(class_root) == NULL);
3701 class_roots_->Set(class_root, klass);
3702}
3703
Logan Chien0c717dd2012-03-28 18:31:07 +08003704void ClassLinker::RelocateExecutable() {
Elliott Hughesf8349362012-06-18 15:00:06 -07003705 MutexLock mu(dex_lock_);
Logan Chien0c717dd2012-03-28 18:31:07 +08003706 for (size_t i = 0; i < oat_files_.size(); ++i) {
3707 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3708 }
3709}
3710
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003711} // namespace art