blob: 448ad6a05a7dd05637adb6d493010b510e04fc41 [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"
Ian Rogers1f539342012-10-03 21:09:42 -070050#include "sirt_ref.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070051#include "space.h"
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070052#include "space_bitmap.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070053#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070054#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070055#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070056#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070057#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070058#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070059
60namespace art {
61
Ian Rogers00f7d0e2012-07-19 15:28:27 -070062static void ThrowNoClassDefFoundError(const char* fmt, ...)
63 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070064 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070065static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070066 va_list args;
67 va_start(args, fmt);
68 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
69 va_end(args);
70}
71
Ian Rogers00f7d0e2012-07-19 15:28:27 -070072static void ThrowClassFormatError(const char* fmt, ...)
73 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070074 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070075static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070076 va_list args;
77 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070078 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070079 va_end(args);
80}
81
Ian Rogers00f7d0e2012-07-19 15:28:27 -070082static void ThrowLinkageError(const char* fmt, ...)
83 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070084 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070085static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070086 va_list args;
87 va_start(args, fmt);
88 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
89 va_end(args);
90}
91
Elliott Hughes0512f022012-03-15 22:10:52 -070092static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070093 const StringPiece& name)
Ian Rogersb726dcb2012-09-05 08:57:23 -070094 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080095 ClassHelper kh(c);
96 std::ostringstream msg;
Ian Rogers08f753d2012-08-24 14:35:25 -070097 msg << "No " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -080098 << " in class " << kh.GetDescriptor() << " or its superclasses";
99 std::string location(kh.GetLocation());
100 if (!location.empty()) {
101 msg << " (defined in " << location << ")";
102 }
103 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
104}
105
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700106static void ThrowNullPointerException(const char* fmt, ...)
107 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -0700108 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -0700109static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800110 va_list args;
111 va_start(args, fmt);
112 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
113 va_end(args);
114}
115
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700116static void ThrowEarlierClassFailure(Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700117 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes5c599942012-06-13 16:45:05 -0700118 // The class failed to initialize on a previous attempt, so we want to throw
119 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
120 // failed in verification, in which case v2 5.4.1 says we need to re-throw
121 // the previous error.
Ian Rogers87e552d2012-08-31 15:54:48 -0700122 if (!Runtime::Current()->IsCompiler()) { // Give info if this occurs at runtime.
123 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
124 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700125
Elliott Hughes5c599942012-06-13 16:45:05 -0700126 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700127 if (c->GetVerifyErrorClass() != NULL) {
128 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800129 ClassHelper ve_ch(c->GetVerifyErrorClass());
130 std::string error_descriptor(ve_ch.GetDescriptor());
131 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700132 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800133 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700134 }
135}
136
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700137static void WrapExceptionInInitializer()
Ian Rogersb726dcb2012-09-05 08:57:23 -0700138 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700139 Thread* self = Thread::Current();
140 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700141
142 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
143 CHECK(cause.get() != NULL);
144
145 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700146 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
147 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700148
Elliott Hughesa4f94742012-05-29 16:28:38 -0700149 // We only wrap non-Error exceptions; an Error can just be used as-is.
150 if (!is_error) {
151 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", NULL);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700152 }
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700153}
154
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800155static size_t Hash(const char* s) {
156 // This is the java.lang.String hashcode for convenience, not interoperability.
157 size_t hash = 0;
158 for (; *s != '\0'; ++s) {
159 hash = hash * 31 + *s;
160 }
161 return hash;
162}
163
Elliott Hughes418d20f2011-09-22 14:00:39 -0700164const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700165 "Ljava/lang/Class;",
166 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700167 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700168 "[Ljava/lang/Object;",
Ian Rogers23435d02012-09-24 11:23:12 -0700169 "[[Ljava/lang/Object;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700170 "Ljava/lang/String;",
Mathieu Chartier66f19252012-09-18 08:57:04 -0700171 "Ljava/lang/DexCache;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700172 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700173 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700174 "Ljava/lang/reflect/Field;",
Mathieu Chartier66f19252012-09-18 08:57:04 -0700175 "Ljava/lang/reflect/AbstractMethod;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700176 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700177 "Ljava/lang/reflect/Proxy;",
Mathieu Chartier66f19252012-09-18 08:57:04 -0700178 "[Ljava/lang/String;",
179 "[Ljava/lang/reflect/Field;",
180 "[Ljava/lang/reflect/AbstractMethod;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700181 "Ljava/lang/ClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800182 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800183 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700184 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700185 "Z",
186 "B",
187 "C",
188 "D",
189 "F",
190 "I",
191 "J",
192 "S",
193 "V",
194 "[Z",
195 "[B",
196 "[C",
197 "[D",
198 "[F",
199 "[I",
200 "[J",
201 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700202 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700203};
204
Brian Carlstroma004aa92012-02-08 18:05:09 -0800205ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
206 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700207 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800208 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800209 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700210 return class_linker.release();
211}
212
Brian Carlstroma004aa92012-02-08 18:05:09 -0800213ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800214 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700215 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700216 return class_linker.release();
217}
218
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800219ClassLinker::ClassLinker(InternTable* intern_table)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700220 // dex_lock_ is recursive as it may be used in stack dumping.
221 : dex_lock_("ClassLinker dex lock", kDefaultMutexLevel, true),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700222 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700223 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700224 init_done_(false),
225 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700226 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700227}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700228
Brian Carlstroma004aa92012-02-08 18:05:09 -0800229void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
230 VLOG(startup) << "ClassLinker::Init";
231 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700232
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700233 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700234
Elliott Hughes30646832011-10-13 16:59:46 -0700235 // java_lang_Class comes first, it's needed for AllocClass
Ian Rogers1f539342012-10-03 21:09:42 -0700236 Thread* self = Thread::Current();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800237 Heap* heap = Runtime::Current()->GetHeap();
Ian Rogers1f539342012-10-03 21:09:42 -0700238 SirtRef<Class> java_lang_Class(self, down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700239 CHECK(java_lang_Class.get() != NULL);
240 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700241 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700242 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700243
Elliott Hughes418d20f2011-09-22 14:00:39 -0700244 // Class[] is used for reflection support.
Ian Rogers1f539342012-10-03 21:09:42 -0700245 SirtRef<Class> class_array_class(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700246 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700247
Ian Rogers23435d02012-09-24 11:23:12 -0700248 // java_lang_Object comes next so that object_array_class can be created.
Ian Rogers1f539342012-10-03 21:09:42 -0700249 SirtRef<Class> java_lang_Object(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700250 CHECK(java_lang_Object.get() != NULL);
Ian Rogers23435d02012-09-24 11:23:12 -0700251 // backfill Object as the super class of Class.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700253 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700254
Ian Rogers23435d02012-09-24 11:23:12 -0700255 // Object[] next to hold class roots.
Ian Rogers1f539342012-10-03 21:09:42 -0700256 SirtRef<Class> object_array_class(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700257 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700258
Ian Rogers23435d02012-09-24 11:23:12 -0700259 // Object[][] needed for iftables.
Ian Rogers1f539342012-10-03 21:09:42 -0700260 SirtRef<Class> object_array_array_class(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers23435d02012-09-24 11:23:12 -0700261 object_array_array_class->SetComponentType(object_array_class.get());
262
263 // Setup the char class to be used for char[].
Ian Rogers1f539342012-10-03 21:09:42 -0700264 SirtRef<Class> char_class(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700265
Ian Rogers23435d02012-09-24 11:23:12 -0700266 // Setup the char[] class to be used for String.
Ian Rogers1f539342012-10-03 21:09:42 -0700267 SirtRef<Class> char_array_class(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700268 char_array_class->SetComponentType(char_class.get());
269 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700270
Ian Rogers23435d02012-09-24 11:23:12 -0700271 // Setup String.
Ian Rogers1f539342012-10-03 21:09:42 -0700272 SirtRef<Class> java_lang_String(self, AllocClass(java_lang_Class.get(), sizeof(StringClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700273 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700274 java_lang_String->SetObjectSize(sizeof(String));
275 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400276
Ian Rogers23435d02012-09-24 11:23:12 -0700277 // Create storage for root classes, save away our work so far (requires descriptors).
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700278 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700279 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700280 SetClassRoot(kJavaLangClass, java_lang_Class.get());
281 SetClassRoot(kJavaLangObject, java_lang_Object.get());
282 SetClassRoot(kClassArrayClass, class_array_class.get());
283 SetClassRoot(kObjectArrayClass, object_array_class.get());
Ian Rogers23435d02012-09-24 11:23:12 -0700284 SetClassRoot(kObjectArrayArrayClass, object_array_array_class.get());
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700285 SetClassRoot(kCharArrayClass, char_array_class.get());
286 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700287
288 // Setup the primitive type classes.
Ian Rogersc8982582012-09-07 16:53:25 -0700289 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass(Primitive::kPrimBoolean));
290 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass(Primitive::kPrimByte));
291 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass(Primitive::kPrimShort));
292 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass(Primitive::kPrimInt));
293 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass(Primitive::kPrimLong));
294 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass(Primitive::kPrimFloat));
295 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass(Primitive::kPrimDouble));
296 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass(Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700297
Ian Rogers23435d02012-09-24 11:23:12 -0700298 // Create array interface entries to populate once we can load system classes.
299 array_iftable_ = AllocIfTable(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700300
Ian Rogers23435d02012-09-24 11:23:12 -0700301 // Create int array type for AllocDexCache (done in AppendToBootClassPath).
Ian Rogers1f539342012-10-03 21:09:42 -0700302 SirtRef<Class> int_array_class(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700303 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700304 IntArray::SetArrayClass(int_array_class.get());
305 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700306
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700307 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700308
Mathieu Chartier66f19252012-09-18 08:57:04 -0700309 // Setup DexCache. This can not be done later since AppendToBootClassPath calls AllocDexCache.
Ian Rogers1f539342012-10-03 21:09:42 -0700310 SirtRef<Class> java_lang_DexCache(self, AllocClass(java_lang_Class.get(), sizeof(DexCacheClass)));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700311 SetClassRoot(kJavaLangDexCache, java_lang_DexCache.get());
312 java_lang_DexCache->SetObjectSize(sizeof(DexCacheClass));
313 java_lang_DexCache->SetStatus(Class::kStatusResolved);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700314
Mathieu Chartier66f19252012-09-18 08:57:04 -0700315 // Constructor, Field, Method, and AbstractMethod are necessary so that FindClass can link members.
Ian Rogers1f539342012-10-03 21:09:42 -0700316 SirtRef<Class> java_lang_reflect_Constructor(self, AllocClass(java_lang_Class.get(),
Mathieu Chartier66f19252012-09-18 08:57:04 -0700317 sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 CHECK(java_lang_reflect_Constructor.get() != NULL);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700319 java_lang_reflect_Constructor->SetObjectSize(sizeof(Constructor));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700321 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
322
Ian Rogers1f539342012-10-03 21:09:42 -0700323 SirtRef<Class> java_lang_reflect_Field(self, AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700325 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700326 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700327 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700328 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700329
Ian Rogers1f539342012-10-03 21:09:42 -0700330 SirtRef<Class> java_lang_reflect_Method(self, AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700335
Ian Rogers1f539342012-10-03 21:09:42 -0700336 SirtRef<Class> java_lang_reflect_AbstractMethod(self, AllocClass(java_lang_Class.get(),
Mathieu Chartier66f19252012-09-18 08:57:04 -0700337 sizeof(MethodClass)));
338 CHECK(java_lang_reflect_AbstractMethod.get() != NULL);
339 java_lang_reflect_AbstractMethod->SetObjectSize(sizeof(AbstractMethod));
340 SetClassRoot(kJavaLangReflectAbstractMethod, java_lang_reflect_AbstractMethod.get());
341 java_lang_reflect_AbstractMethod->SetStatus(Class::kStatusResolved);
342 AbstractMethod::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
343
344 // Set up array classes for string, field, method
Ian Rogers1f539342012-10-03 21:09:42 -0700345 SirtRef<Class> object_array_string(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700346 object_array_string->SetComponentType(java_lang_String.get());
347 SetClassRoot(kJavaLangStringArrayClass, object_array_string.get());
348
Ian Rogers1f539342012-10-03 21:09:42 -0700349 SirtRef<Class> object_array_field(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700350 object_array_field->SetComponentType(java_lang_reflect_Field.get());
351 SetClassRoot(kJavaLangReflectFieldArrayClass, object_array_field.get());
352
Ian Rogers1f539342012-10-03 21:09:42 -0700353 SirtRef<Class> object_array_abstract_method(self, AllocClass(java_lang_Class.get(), sizeof(Class)));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700354 object_array_abstract_method->SetComponentType(java_lang_reflect_AbstractMethod.get());
355 SetClassRoot(kJavaLangReflectAbstractMethodArrayClass, object_array_abstract_method.get());
356
Ian Rogers23435d02012-09-24 11:23:12 -0700357 // Setup boot_class_path_ and register class_path now that we can use AllocObjectArray to create
358 // DexCache instances. Needs to be after String, Field, Method arrays since AllocDexCache uses
359 // these roots.
Mathieu Chartier66f19252012-09-18 08:57:04 -0700360 CHECK_NE(0U, boot_class_path.size());
361 for (size_t i = 0; i != boot_class_path.size(); ++i) {
362 const DexFile* dex_file = boot_class_path[i];
363 CHECK(dex_file != NULL);
364 AppendToBootClassPath(*dex_file);
365 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700366
367 // now we can use FindSystemClass
368
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700369 // run char class through InitializePrimitiveClass to finish init
Ian Rogersc8982582012-09-07 16:53:25 -0700370 InitializePrimitiveClass(char_class.get(), Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700371 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700372
Mathieu Chartier66f19252012-09-18 08:57:04 -0700373 // Object, String and DexCache need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700374 java_lang_Object->SetStatus(Class::kStatusNotReady);
375 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700376 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700377 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
378 java_lang_String->SetStatus(Class::kStatusNotReady);
379 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700380 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700381 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700382 java_lang_DexCache->SetStatus(Class::kStatusNotReady);
383 Class* DexCache_class = FindSystemClass("Ljava/lang/DexCache;");
384 CHECK_EQ(java_lang_String.get(), String_class);
385 CHECK_EQ(java_lang_DexCache.get(), DexCache_class);
386 CHECK_EQ(java_lang_DexCache->GetObjectSize(), sizeof(DexCache));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700387
Ian Rogers23435d02012-09-24 11:23:12 -0700388 // Setup the primitive array type classes - can't be done until Object has a vtable.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700389 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
390 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
391
392 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
393 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
394
395 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700396 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700397
398 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
399 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
400
401 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700402 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700403
404 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
405 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
406
407 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
408 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
409
410 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
411 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
412
Elliott Hughes418d20f2011-09-22 14:00:39 -0700413 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700414 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700415
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700416 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700417 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700418
Ian Rogers23435d02012-09-24 11:23:12 -0700419 Class* found_object_array_array_class = FindSystemClass("[[Ljava/lang/Object;");
420 CHECK_EQ(object_array_array_class.get(), found_object_array_array_class);
421
422 // Setup the single, global copy of "iftable".
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700423 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
424 CHECK(java_lang_Cloneable != NULL);
425 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
426 CHECK(java_io_Serializable != NULL);
Ian Rogers23435d02012-09-24 11:23:12 -0700427 // We assume that Cloneable/Serializable don't have superinterfaces -- normally we'd have to
428 // crawl up and explicitly list all of the supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800429 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
430 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700431
Ian Rogers23435d02012-09-24 11:23:12 -0700432 // Sanity check Class[] and Object[]'s interfaces.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800433 ClassHelper kh(class_array_class.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -0700434 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
435 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800436 kh.ChangeClass(object_array_class.get());
Ian Rogersd24e2642012-06-06 21:21:43 -0700437 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
438 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers23435d02012-09-24 11:23:12 -0700439 // Run Class, Constructor, Field, and Method through FindSystemClass. This initializes their
440 // dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700441 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700442 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700443
Mathieu Chartier66f19252012-09-18 08:57:04 -0700444 java_lang_reflect_AbstractMethod->SetStatus(Class::kStatusNotReady);
445 Class* Abstract_method_class = FindSystemClass("Ljava/lang/reflect/AbstractMethod;");
446 CHECK_EQ(java_lang_reflect_AbstractMethod.get(), Abstract_method_class);
447
448 // Method extends AbstractMethod so must reset after.
449 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
450 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
451 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
452
453 // Constructor extends AbstractMethod so must reset after.
Elliott Hughes80609252011-09-23 17:24:51 -0700454 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
455 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700456 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700457
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700458 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700459 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700460 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700461
Mathieu Chartier66f19252012-09-18 08:57:04 -0700462 Class* String_array_class = FindSystemClass(class_roots_descriptors_[kJavaLangStringArrayClass]);
463 CHECK_EQ(object_array_string.get(), String_array_class);
464
465 Class* Field_array_class = FindSystemClass(class_roots_descriptors_[kJavaLangReflectFieldArrayClass]);
466 CHECK_EQ(object_array_field.get(), Field_array_class);
467
468 Class* Abstract_method_array_class =
469 FindSystemClass(class_roots_descriptors_[kJavaLangReflectAbstractMethodArrayClass]);
470 CHECK_EQ(object_array_abstract_method.get(), Abstract_method_array_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700471
Ian Rogers23435d02012-09-24 11:23:12 -0700472 // End of special init trickery, subsequent classes may be loaded via FindSystemClass.
Ian Rogers466bb252011-10-14 03:29:56 -0700473
Ian Rogers23435d02012-09-24 11:23:12 -0700474 // Create java.lang.reflect.Proxy root.
Ian Rogers466bb252011-10-14 03:29:56 -0700475 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
476 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
477
Brian Carlstrom1f870082011-08-23 16:02:11 -0700478 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700479 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
480 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700481 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700482 java_lang_ref_FinalizerReference->SetAccessFlags(
483 java_lang_ref_FinalizerReference->GetAccessFlags() |
484 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700485 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700486 java_lang_ref_PhantomReference->SetAccessFlags(
487 java_lang_ref_PhantomReference->GetAccessFlags() |
488 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700489 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700490 java_lang_ref_SoftReference->SetAccessFlags(
491 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700492 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700493 java_lang_ref_WeakReference->SetAccessFlags(
494 java_lang_ref_WeakReference->GetAccessFlags() |
495 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700496
Ian Rogers23435d02012-09-24 11:23:12 -0700497 // Setup the ClassLoader, verifying the object_size_.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700498 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700499 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700500 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
501
jeffhao8cd6dda2012-02-22 10:15:34 -0800502 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
Ian Rogers23435d02012-09-24 11:23:12 -0700503 // java.lang.StackTraceElement as a convenience.
Ian Rogers5167c972012-02-03 10:41:20 -0800504 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
505 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800506 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700507 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
508 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700509 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700510
Brian Carlstroma663ea52011-08-19 23:33:41 -0700511 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700512
Brian Carlstroma004aa92012-02-08 18:05:09 -0800513 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700514}
515
516void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800517 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700518
519 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700520 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700521 // as the types of the field can't be resolved prior to the runtime being
522 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700523 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700524 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700525 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
526
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800527 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
528
Brian Carlstrom16192862011-09-12 17:50:06 -0700529 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800530 FieldHelper fh(pendingNext, this);
531 CHECK_STREQ(fh.GetName(), "pendingNext");
532 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
533 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700534
535 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800536 fh.ChangeField(queue);
537 CHECK_STREQ(fh.GetName(), "queue");
538 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
539 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700540
541 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800542 fh.ChangeField(queueNext);
543 CHECK_STREQ(fh.GetName(), "queueNext");
544 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
545 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700546
547 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800548 fh.ChangeField(referent);
549 CHECK_STREQ(fh.GetName(), "referent");
550 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
551 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700552
553 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800554 fh.ChangeField(zombie);
555 CHECK_STREQ(fh.GetName(), "zombie");
556 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
557 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700558
Elliott Hughesa4f94742012-05-29 16:28:38 -0700559 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800560 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700561 queue->GetOffset(),
562 queueNext->GetOffset(),
563 pendingNext->GetOffset(),
564 zombie->GetOffset());
565
Brian Carlstroma663ea52011-08-19 23:33:41 -0700566 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700567 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700568 ClassRoot class_root = static_cast<ClassRoot>(i);
569 Class* klass = GetClassRoot(class_root);
570 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700571 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700572 // note SetClassRoot does additional validation.
573 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700574 }
575
Elliott Hughes92f14b22011-10-06 12:29:54 -0700576 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700577
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700578 // disable the slow paths in FindClass and CreatePrimitiveClass now
579 // that Object, Class, and Object[] are setup
580 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700581
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800582 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700583}
584
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700585void ClassLinker::RunRootClinits() {
586 Thread* self = Thread::Current();
587 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
588 Class* c = GetClassRoot(ClassRoot(i));
589 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700590 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700591 self->AssertNoPendingException();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700592 }
593 }
594}
595
Brian Carlstromd601af82012-01-06 10:15:19 -0800596bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
597 int oat_fd,
598 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800599 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700600 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800601 const char* dex2oat = dex2oat_string.c_str();
602
Brian Carlstroma004aa92012-02-08 18:05:09 -0800603 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800604
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800605 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800606 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700607 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800608 const char* boot_image_option = boot_image_option_string.c_str();
609
610 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800611 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800612 const char* dex_file_option = dex_file_option_string.c_str();
613
Brian Carlstromd601af82012-01-06 10:15:19 -0800614 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800615 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800616 const char* oat_fd_option = oat_fd_option_string.c_str();
617
Brian Carlstroma004aa92012-02-08 18:05:09 -0800618 std::string oat_location_option_string("--oat-location=");
619 oat_location_option_string += oat_cache_filename;
620 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800621
jeffhao262bf462011-10-20 18:36:32 -0700622 // fork and exec dex2oat
623 pid_t pid = fork();
624 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800625 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800626
627 // change process groups, so we don't get reaped by ProcessManager
628 setpgid(0, 0);
629
jeffhao10037c82012-01-23 15:06:23 -0800630 VLOG(class_linker) << dex2oat
631 << " --runtime-arg -Xms64m"
632 << " --runtime-arg -Xmx64m"
633 << " --runtime-arg -classpath"
634 << " --runtime-arg " << class_path
635 << " " << boot_image_option
636 << " " << dex_file_option
637 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800638 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800639
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800640 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700641 "--runtime-arg", "-Xms64m",
642 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500643 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800644 "--runtime-arg", class_path,
645 boot_image_option,
646 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800647 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800648 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700649 NULL);
650
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800651 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800652 return false;
jeffhao262bf462011-10-20 18:36:32 -0700653 } else {
654 // wait for dex2oat to finish
655 int status;
656 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
657 if (got_pid != pid) {
658 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800659 return false;
jeffhao262bf462011-10-20 18:36:32 -0700660 }
661 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800662 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
663 return false;
jeffhao262bf462011-10-20 18:36:32 -0700664 }
665 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800666 return true;
jeffhao262bf462011-10-20 18:36:32 -0700667}
668
Brian Carlstrom866c8622012-01-06 16:35:13 -0800669void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
670 MutexLock mu(dex_lock_);
671 RegisterOatFileLocked(oat_file);
672}
673
674void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
675 dex_lock_.AssertHeld();
676 oat_files_.push_back(&oat_file);
677}
678
Ian Rogers30fab402012-01-23 15:43:46 -0800679OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700680 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700681 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700682 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800683 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
684 // check the down cast
685 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700686 std::string oat_filename;
687 oat_filename += runtime->GetHostPrefix();
688 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800689 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
690 image_header.GetOatBegin(),
691 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800692 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700693 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700694 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700695 return NULL;
696 }
697 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
698 uint32_t image_oat_checksum = image_header.GetOatChecksum();
699 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800700 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700701 << " to expected oat checksum " << std::hex << oat_checksum
702 << " in image";
703 return NULL;
704 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800705 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800706 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700707 return oat_file;
708}
709
Brian Carlstromae826982011-11-09 01:33:42 -0800710const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700711 MutexLock mu(dex_lock_);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800712 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800713}
714
Brian Carlstroma004aa92012-02-08 18:05:09 -0800715const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800716 for (size_t i = 0; i < oat_files_.size(); i++) {
717 const OatFile* oat_file = oat_files_[i];
718 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800719 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800720 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800721 return oat_file;
722 }
723 }
724 return NULL;
725}
726
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800727static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
728 uint32_t dex_location_checksum,
729 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800730 UniquePtr<OatFile> oat_file(
731 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800732 if (oat_file.get() == NULL) {
733 return NULL;
734 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700735 Runtime* runtime = Runtime::Current();
736 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
737 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
738 return NULL;
739 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800740 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
741 if (oat_dex_file == NULL) {
742 return NULL;
743 }
744 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
745 return NULL;
746 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700747 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800748 return oat_dex_file->OpenDexFile();
749}
750
751const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
752 const std::string& oat_location) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700753 MutexLock mu(dex_lock_);
754 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_location);
755}
756
757const DexFile* ClassLinker::FindOrCreateOatFileForDexLocationLocked(const std::string& dex_location,
758 const std::string& oat_location) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800759 uint32_t dex_location_checksum;
760 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
761 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
762 return NULL;
763 }
764
765 // Check if we already have an up-to-date output file
766 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
767 dex_location_checksum,
768 oat_location);
769 if (dex_file != NULL) {
770 return dex_file;
771 }
772
773 // Generate the output oat file for the dex file
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800774 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
775 if (file.get() == NULL) {
776 LOG(ERROR) << "Failed to create oat file: " << oat_location;
777 return NULL;
778 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700779 if (!GenerateOatFile(dex_location, file->Fd(), oat_location)) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800780 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
781 return NULL;
782 }
783 // Open the oat from file descriptor we passed to GenerateOatFile
784 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
785 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
786 return NULL;
787 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800788 const OatFile* oat_file =
789 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800790 if (oat_file == NULL) {
791 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
792 return NULL;
793 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700794 RegisterOatFileLocked(*oat_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800795 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
796 if (oat_dex_file == NULL) {
797 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
798 return NULL;
799 }
800 return oat_dex_file->OpenDexFile();
801}
802
Brian Carlstromafe25512012-06-27 17:02:58 -0700803bool ClassLinker::VerifyOatFileChecksums(const OatFile* oat_file,
804 const std::string& dex_location,
805 uint32_t dex_location_checksum) {
806 Runtime* runtime = Runtime::Current();
807 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
808 uint32_t image_checksum = image_header.GetOatChecksum();
809 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700810
Brian Carlstromafe25512012-06-27 17:02:58 -0700811 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
812 if (oat_dex_file == NULL) {
813 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
814 << " does not contain contents for " << dex_location;
815 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
816 for (size_t i = 0; i < oat_dex_files.size(); i++) {
817 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
818 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
819 << " contains contents for " << oat_dex_file->GetDexFileLocation();
820 }
821 return false;
822 }
823 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700824
Brian Carlstromafe25512012-06-27 17:02:58 -0700825 if (image_check && dex_check) {
826 return true;
827 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700828
Brian Carlstromafe25512012-06-27 17:02:58 -0700829 if (!image_check) {
830 std::string image_file(image_header.GetImageRoot(
831 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
832 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
833 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
834 << ") mismatch with " << image_file
835 << " (" << std::hex << image_checksum << ")";
836 }
837 if (!dex_check) {
838 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
839 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
840 << ") mismatch with " << dex_location
841 << " (" << std::hex << dex_location_checksum << ")";
842 }
843 return false;
844}
845
846const DexFile* ClassLinker::VerifyAndOpenDexFileFromOatFile(const OatFile* oat_file,
847 const std::string& dex_location,
848 uint32_t dex_location_checksum) {
849 bool verified = VerifyOatFileChecksums(oat_file, dex_location, dex_location_checksum);
850 if (!verified) {
851 return NULL;
852 }
853 RegisterOatFileLocked(*oat_file);
854 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700855}
856
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800857const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700858 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800859
Brian Carlstroma004aa92012-02-08 18:05:09 -0800860 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800861 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800862 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800863 }
864
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700865 // Look for an existing file next to dex. for example, for
866 // /foo/bar/baz.jar, look for /foo/bar/baz.jar.oat.
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800867 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700868 const OatFile* oat_file = FindOatFileFromOatLocationLocked(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800869 if (oat_file != NULL) {
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700870 uint32_t dex_location_checksum;
871 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
872 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
873 // This is the common case in user builds for jar's and apk's in the /system directory.
874 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
875 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
876 RegisterOatFileLocked(*oat_file);
877 return oat_dex_file->OpenDexFile();
878 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700879 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
880 dex_location,
881 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700882 if (dex_file != NULL) {
883 return dex_file;
884 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800885 }
886 // Look for an existing file in the art-cache, validating the result if found
887 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
888 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700889 oat_file = FindOatFileFromOatLocationLocked(cache_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800890 if (oat_file != NULL) {
891 uint32_t dex_location_checksum;
892 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
893 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
894 return NULL;
895 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700896 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
897 dex_location,
898 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700899 if (dex_file != NULL) {
900 return dex_file;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700901 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800902 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700903 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800904 }
jeffhao262bf462011-10-20 18:36:32 -0700905 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800906 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
907
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800908 // Try to generate oat file if it wasn't found or was obsolete.
909 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700910 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700911}
912
Brian Carlstromae826982011-11-09 01:33:42 -0800913const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700914 for (size_t i = 0; i < oat_files_.size(); i++) {
915 const OatFile* oat_file = oat_files_[i];
916 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800917 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700918 return oat_file;
919 }
920 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700921 return NULL;
922}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700923
Brian Carlstromae826982011-11-09 01:33:42 -0800924const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800925 MutexLock mu(dex_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700926 return FindOatFileFromOatLocationLocked(oat_location);
927}
928
929const OatFile* ClassLinker::FindOatFileFromOatLocationLocked(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800930 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
931 if (oat_file != NULL) {
932 return oat_file;
933 }
934
Logan Chien0c717dd2012-03-28 18:31:07 +0800935 oat_file = OatFile::Open(oat_location, oat_location, NULL,
936 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700937 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800938 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700939 }
Brian Carlstromae826982011-11-09 01:33:42 -0800940 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700941 return oat_file;
942}
943
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700944void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800945 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700946 CHECK(!init_done_);
947
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800948 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700949 ImageSpace* space = heap->GetImageSpace();
950 OatFile* oat_file = OpenOat(space);
951 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700952 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
Elliott Hughes74847412012-06-20 18:10:21 -0700953 CHECK(oat_file->GetOatHeader().GetImageFileLocation().empty());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700954 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
955 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700956
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700957 // Special case of setting up the String class early so that we can test arbitrary objects
958 // as being Strings or not
959 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
960 ->AsObjectArray<Class>()->Get(kJavaLangString);
961 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800962
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700963 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
964 static_cast<uint32_t>(dex_caches->GetLength()));
Ian Rogers1f539342012-10-03 21:09:42 -0700965 Thread* self = Thread::Current();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700966 for (int i = 0; i < dex_caches->GetLength(); i++) {
Ian Rogers1f539342012-10-03 21:09:42 -0700967 SirtRef<DexCache> dex_cache(self, dex_caches->Get(i));
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700968 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
969 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
970 const DexFile* dex_file = oat_dex_file->OpenDexFile();
971 if (dex_file == NULL) {
972 LOG(FATAL) << "Failed to open dex file " << dex_file_location
973 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700974 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700975
976 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
977
978 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700979 }
980
Brian Carlstroma663ea52011-08-19 23:33:41 -0700981 // reinit clases_ table
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700982 {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700983 ReaderMutexLock mu(*Locks::heap_bitmap_lock_);
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700984 heap->FlushAllocStack();
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -0700985 heap->GetLiveBitmap()->Walk(InitFromImageCallback, this);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700986 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700987
988 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800989 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700990 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700991 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700992
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800993 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700994 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
995 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800996 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700997 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700998 AbstractMethod::SetClasses(GetClassRoot(kJavaLangReflectConstructor),
999 GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -07001000 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
1001 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
1002 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
1003 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
1004 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
1005 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
1006 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
1007 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Ian Rogers5167c972012-02-03 10:41:20 -08001008 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001009 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -07001010
1011 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -07001012
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001013 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -07001014}
1015
Brian Carlstrom78128a62011-09-15 17:21:19 -07001016void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -07001017 DCHECK(obj != NULL);
1018 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -07001019 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001020
Elliott Hughesdbb40792011-11-18 17:05:22 -08001021 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -07001022 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -07001023 return;
1024 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001025 if (obj->IsClass()) {
1026 // restore class to ClassLinker::classes_ table
1027 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001028 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001029 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
1030 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -07001031 return;
1032 }
Brian Carlstroma663ea52011-08-19 23:33:41 -07001033}
1034
1035// Keep in sync with InitCallback. Anything we visit, we need to
1036// reinit references to when reinitializing a ClassLinker from a
1037// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -07001038void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
1039 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001040
Elliott Hughesf8349362012-06-18 15:00:06 -07001041 {
1042 MutexLock mu(dex_lock_);
1043 for (size_t i = 0; i < dex_caches_.size(); i++) {
1044 visitor(dex_caches_[i], arg);
1045 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001046 }
1047
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001048 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001049 MutexLock mu(*Locks::classlinker_classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001050 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001051 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -07001052 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001053 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001054
1055 // We deliberately ignore the class roots in the image since we
1056 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001057 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001058
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001059 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001060}
1061
Elliott Hughesa2155262011-11-16 16:26:58 -08001062void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001063 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -08001064 typedef Table::const_iterator It; // TODO: C++0x auto
1065 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
1066 if (!visitor(it->second, arg)) {
1067 return;
1068 }
1069 }
1070 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
1071 if (!visitor(it->second, arg)) {
1072 return;
1073 }
1074 }
1075}
1076
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001077static bool GetClassesVisitor(Class* c, void* arg) {
1078 std::set<Class*>* classes = reinterpret_cast<std::set<Class*>*>(arg);
1079 classes->insert(c);
1080 return true;
1081}
1082
1083void ClassLinker::VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg) const {
1084 std::set<Class*> classes;
1085 VisitClasses(GetClassesVisitor, &classes);
1086 typedef std::set<Class*>::const_iterator It; // TODO: C++0x auto
1087 for (It it = classes.begin(), end = classes.end(); it != end; ++it) {
1088 if (!visitor(*it, arg)) {
1089 return;
1090 }
1091 }
1092}
1093
1094
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001095ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001096 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001097 Field::ResetClass();
Mathieu Chartier66f19252012-09-18 08:57:04 -07001098 AbstractMethod::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001099 BooleanArray::ResetArrayClass();
1100 ByteArray::ResetArrayClass();
1101 CharArray::ResetArrayClass();
1102 DoubleArray::ResetArrayClass();
1103 FloatArray::ResetArrayClass();
1104 IntArray::ResetArrayClass();
1105 LongArray::ResetArrayClass();
1106 ShortArray::ResetArrayClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001107 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001108 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001109 STLDeleteElements(&boot_class_path_);
1110 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001111}
1112
1113DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07001114 Heap* heap = Runtime::Current()->GetHeap();
1115 Class* dex_cache_class = GetClassRoot(kJavaLangDexCache);
Ian Rogers1f539342012-10-03 21:09:42 -07001116 Thread* self = Thread::Current();
Mathieu Chartier66f19252012-09-18 08:57:04 -07001117 SirtRef<DexCache> dex_cache(
Ian Rogers1f539342012-10-03 21:09:42 -07001118 self,
Mathieu Chartier66f19252012-09-18 08:57:04 -07001119 down_cast<DexCache*>(heap->AllocObject(dex_cache_class, dex_cache_class->GetObjectSize())));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001120 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001121 return NULL;
1122 }
Ian Rogers1f539342012-10-03 21:09:42 -07001123 SirtRef<String> location(self, intern_table_->InternStrong(dex_file.GetLocation().c_str()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001124 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001125 return NULL;
1126 }
Ian Rogers1f539342012-10-03 21:09:42 -07001127 SirtRef<ObjectArray<String> > strings(self, AllocStringArray(dex_file.NumStringIds()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001128 if (strings.get() == NULL) {
1129 return NULL;
1130 }
Ian Rogers1f539342012-10-03 21:09:42 -07001131 SirtRef<ObjectArray<Class> > types(self, AllocClassArray(dex_file.NumTypeIds()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001132 if (types.get() == NULL) {
1133 return NULL;
1134 }
Ian Rogers1f539342012-10-03 21:09:42 -07001135 SirtRef<ObjectArray<AbstractMethod> > methods(self, AllocMethodArray(dex_file.NumMethodIds()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001136 if (methods.get() == NULL) {
1137 return NULL;
1138 }
Ian Rogers1f539342012-10-03 21:09:42 -07001139 SirtRef<ObjectArray<Field> > fields(self, AllocFieldArray(dex_file.NumFieldIds()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001140 if (fields.get() == NULL) {
1141 return NULL;
1142 }
Ian Rogers1f539342012-10-03 21:09:42 -07001143 SirtRef<ObjectArray<StaticStorageBase> >
1144 initialized_static_storage(self, AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001145 if (initialized_static_storage.get() == NULL) {
1146 return NULL;
1147 }
1148
Mathieu Chartier66f19252012-09-18 08:57:04 -07001149 dex_cache->Init(&dex_file,
1150 location.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001151 strings.get(),
1152 types.get(),
1153 methods.get(),
1154 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001155 initialized_static_storage.get());
1156 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001157}
1158
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001159InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1160 DCHECK(interface->IsInterface());
Ian Rogers1f539342012-10-03 21:09:42 -07001161 Thread* self = Thread::Current();
1162 SirtRef<ObjectArray<Object> > array(self, AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1163 SirtRef<InterfaceEntry> interface_entry(self, down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001164 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001165 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001166}
1167
Brian Carlstrom4873d462011-08-21 15:23:39 -07001168Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1169 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001170 Heap* heap = Runtime::Current()->GetHeap();
Ian Rogers1f539342012-10-03 21:09:42 -07001171 SirtRef<Class> klass(Thread::Current(),
1172 heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001173 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001174 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001175 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001176}
1177
Brian Carlstrom4873d462011-08-21 15:23:39 -07001178Class* ClassLinker::AllocClass(size_t class_size) {
1179 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001180}
1181
Jesse Wilson35baaab2011-08-10 16:18:03 -04001182Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001183 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001184}
1185
1186Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001187 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001188}
1189
Mathieu Chartier66f19252012-09-18 08:57:04 -07001190Constructor* ClassLinker::AllocConstructor() {
1191 return down_cast<Constructor*>(GetClassRoot(kJavaLangReflectConstructor)->AllocObject());
1192}
1193
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001194ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1195 return ObjectArray<StackTraceElement>::Alloc(
1196 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1197 length);
1198}
1199
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001200static Class* EnsureResolved(Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001201 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001202 DCHECK(klass != NULL);
1203 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001204 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001205 if (!klass->IsResolved() && !klass->IsErroneous()) {
Ian Rogers1f539342012-10-03 21:09:42 -07001206 ObjectLock lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001207 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001208 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001209 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001210 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001211 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001212 return NULL;
1213 }
1214 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001215 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001216 lock.Wait();
1217 }
1218 }
1219 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001220 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001221 return NULL;
1222 }
1223 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001224 CHECK(klass->IsResolved()) << PrettyClass(klass);
1225 CHECK(!self->IsExceptionPending())
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001226 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException()) << "\n"
1227 << self->GetException()->Dump();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001228 return klass;
1229}
1230
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001231Class* ClassLinker::FindSystemClass(const char* descriptor) {
1232 return FindClass(descriptor, NULL);
1233}
1234
Ian Rogers365c1022012-06-22 15:05:28 -07001235Class* ClassLinker::FindClass(const char* descriptor, ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001236 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001237 Thread* self = Thread::Current();
1238 DCHECK(self != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001239 self->AssertNoPendingException();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001240 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001241 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1242 // for primitive classes that aren't backed by dex files.
1243 return FindPrimitiveClass(descriptor[0]);
1244 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001245 // Find the class in the loaded classes table.
1246 Class* klass = LookupClass(descriptor, class_loader);
1247 if (klass != NULL) {
1248 return EnsureResolved(klass);
1249 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001250 // Class is not yet loaded.
1251 if (descriptor[0] == '[') {
1252 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001253
Jesse Wilson47daf872011-11-23 11:42:45 -05001254 } else if (class_loader == NULL) {
1255 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1256 if (pair.second != NULL) {
1257 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1258 }
1259
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001260 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001261 // first try the boot class path
1262 Class* system_class = FindSystemClass(descriptor);
1263 if (system_class != NULL) {
1264 return system_class;
1265 }
1266 CHECK(self->IsExceptionPending());
1267 self->ClearException();
1268
1269 // next try the compile time class path
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001270 const std::vector<const DexFile*>* class_path;
1271 {
1272 ScopedObjectAccessUnchecked soa(Thread::Current());
1273 ScopedLocalRef<jobject> jclass_loader(soa.Env(), soa.AddLocalReference<jobject>(class_loader));
1274 class_path = &Runtime::Current()->GetCompileTimeClassPath(jclass_loader.get());
1275 }
1276
1277 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, *class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001278 if (pair.second != NULL) {
1279 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001280 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001281
1282 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001283 ScopedObjectAccessUnchecked soa(self->GetJniEnv());
1284 ScopedLocalRef<jobject> class_loader_object(soa.Env(),
1285 soa.AddLocalReference<jobject>(class_loader));
Elliott Hughes95572412011-12-13 18:14:20 -08001286 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001287 ScopedLocalRef<jobject> result(soa.Env(), NULL);
Ian Rogers365c1022012-06-22 15:05:28 -07001288 {
1289 ScopedThreadStateChange tsc(self, kNative);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001290 ScopedLocalRef<jobject> class_name_object(soa.Env(),
1291 soa.Env()->NewStringUTF(class_name_string.c_str()));
Ian Rogers365c1022012-06-22 15:05:28 -07001292 if (class_name_object.get() == NULL) {
1293 return NULL;
1294 }
1295 CHECK(class_loader_object.get() != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001296 result.reset(soa.Env()->CallObjectMethod(class_loader_object.get(),
1297 WellKnownClasses::java_lang_ClassLoader_loadClass,
1298 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05001299 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001300 if (soa.Env()->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001301 // If the ClassLoader threw, pass that exception up.
1302 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001303 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001304 // broken loader - throw NPE to be compatible with Dalvik
1305 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1306 class_name_string.c_str());
1307 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001308 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001309 // success, return Class*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001310 return soa.Decode<Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001311 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001312 }
1313
Elliott Hughes82914b62012-04-09 15:56:29 -07001314 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001315 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001316}
1317
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001318Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Ian Rogers365c1022012-06-22 15:05:28 -07001319 ClassLoader* class_loader,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001320 const DexFile& dex_file,
1321 const DexFile::ClassDef& dex_class_def) {
Ian Rogers1f539342012-10-03 21:09:42 -07001322 Thread* self = Thread::Current();
1323 SirtRef<Class> klass(self, NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001324 // Load the class from the dex file.
1325 if (!init_done_) {
1326 // finish up init of hand crafted class_roots_
1327 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001328 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001329 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001330 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001331 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001332 klass.reset(GetClassRoot(kJavaLangString));
Mathieu Chartier66f19252012-09-18 08:57:04 -07001333 } else if (descriptor == "Ljava/lang/DexCache;") {
1334 klass.reset(GetClassRoot(kJavaLangDexCache));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001335 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001336 klass.reset(GetClassRoot(kJavaLangReflectField));
Mathieu Chartier66f19252012-09-18 08:57:04 -07001337 } else if (descriptor == "Ljava/lang/reflect/AbstractMethod;") {
1338 klass.reset(GetClassRoot(kJavaLangReflectAbstractMethod));
1339 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
1340 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001341 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001342 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001343 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001344 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001345 }
1346 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001347 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001348 }
1349 klass->SetDexCache(FindDexCache(dex_file));
1350 LoadClass(dex_file, dex_class_def, klass, class_loader);
1351 // Check for a pending exception during load
Brian Carlstromaded5f72011-10-07 17:15:04 -07001352 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001353 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001354 return NULL;
1355 }
Ian Rogers1f539342012-10-03 21:09:42 -07001356 ObjectLock lock(self, klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001357 klass->SetClinitThreadId(self->GetTid());
1358 // Add the newly loaded class to the loaded classes table.
Ian Rogers1f539342012-10-03 21:09:42 -07001359 SirtRef<Class> existing(self, InsertClass(descriptor, klass.get(), false));
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001360 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001361 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001362 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001363 }
1364 // Finish loading (if necessary) by finding parents
1365 CHECK(!klass->IsLoaded());
1366 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1367 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001368 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001369 lock.NotifyAll();
1370 return NULL;
1371 }
1372 CHECK(klass->IsLoaded());
1373 // Link the class (if necessary)
1374 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001375 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001376 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001377 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001378 lock.NotifyAll();
1379 return NULL;
1380 }
1381 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001382
1383 /*
1384 * We send CLASS_PREPARE events to the debugger from here. The
1385 * definition of "preparation" is creating the static fields for a
1386 * class and initializing them to the standard default values, but not
1387 * executing any code (that comes later, during "initialization").
1388 *
1389 * We did the static preparation in LinkClass.
1390 *
1391 * The class has been prepared and resolved but possibly not yet verified
1392 * at this point.
1393 */
1394 Dbg::PostClassPrepare(klass.get());
1395
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001396 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001397}
1398
Brian Carlstrom4873d462011-08-21 15:23:39 -07001399// Precomputes size that will be needed for Class, matching LinkStaticFields
1400size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1401 const DexFile::ClassDef& dex_class_def) {
1402 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001403 size_t num_ref = 0;
1404 size_t num_32 = 0;
1405 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001406 if (class_data != NULL) {
1407 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1408 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001409 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001410 char c = descriptor[0];
1411 if (c == 'L' || c == '[') {
1412 num_ref++;
1413 } else if (c == 'J' || c == 'D') {
1414 num_64++;
1415 } else {
1416 num_32++;
1417 }
1418 }
1419 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001420 // start with generic class data
1421 size_t size = sizeof(Class);
1422 // follow with reference fields which must be contiguous at start
1423 size += (num_ref * sizeof(uint32_t));
1424 // if there are 64-bit fields to add, make sure they are aligned
1425 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1426 if (num_32 != 0) {
1427 // use an available 32-bit field for padding
1428 num_32--;
1429 }
1430 size += sizeof(uint32_t); // either way, we are adding a word
1431 DCHECK_EQ(size, RoundUp(size, 8));
1432 }
1433 // tack on any 64-bit fields now that alignment is assured
1434 size += (num_64 * sizeof(uint64_t));
1435 // tack on any remaining 32-bit fields
1436 size += (num_32 * sizeof(uint32_t));
1437 return size;
1438}
1439
Ian Rogers19846512012-02-24 11:42:47 -08001440const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1441 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001442 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1443 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1444 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1445 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1446 uint32_t class_def_index;
1447 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1448 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1449 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1450 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1451 return oat_class;
1452}
1453
Mathieu Chartier66f19252012-09-18 08:57:04 -07001454const OatFile::OatMethod ClassLinker::GetOatMethodFor(const AbstractMethod* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001455 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001456 // method for direct methods (or virtual methods made direct).
1457 Class* declaring_class = method->GetDeclaringClass();
1458 size_t oat_method_index;
1459 if (method->IsStatic() || method->IsDirect()) {
1460 // Simple case where the oat method index was stashed at load time.
1461 oat_method_index = method->GetMethodIndex();
1462 } else {
1463 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1464 // by search for its position in the declared virtual methods.
1465 oat_method_index = declaring_class->NumDirectMethods();
1466 size_t end = declaring_class->NumVirtualMethods();
1467 bool found = false;
1468 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001469 if (declaring_class->GetVirtualMethod(i) == method) {
1470 found = true;
1471 break;
1472 }
Ian Rogersf320b632012-03-13 18:47:47 -07001473 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001474 }
1475 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1476 }
1477 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001478 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001479 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001480 return oat_class->GetOatMethod(oat_method_index);
1481}
1482
1483// Special case to get oat code without overwriting a trampoline.
Mathieu Chartier66f19252012-09-18 08:57:04 -07001484const void* ClassLinker::GetOatCodeFor(const AbstractMethod* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001485 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001486 return GetOatMethodFor(method).GetCode();
1487}
1488
Ian Rogers19846512012-02-24 11:42:47 -08001489void ClassLinker::FixupStaticTrampolines(Class* klass) {
1490 ClassHelper kh(klass);
1491 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1492 CHECK(dex_class_def != NULL);
1493 const DexFile& dex_file = kh.GetDexFile();
1494 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1495 if (class_data == NULL) {
1496 return; // no fields or methods - for example a marker interface
1497 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001498 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001499 // OAT file unavailable
1500 return;
1501 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001502 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1503 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001504 ClassDataItemIterator it(dex_file, class_data);
1505 // Skip fields
1506 while (it.HasNextStaticField()) {
1507 it.Next();
1508 }
1509 while (it.HasNextInstanceField()) {
1510 it.Next();
1511 }
1512 size_t method_index = 0;
1513 // Link the code of methods skipped by LinkCode
1514 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1515 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07001516 AbstractMethod* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001517 if (Runtime::Current()->IsMethodTracingActive()) {
1518 Trace* tracer = Runtime::Current()->GetTracer();
1519 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1520 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1521 tracer->ResetSavedCode(method);
1522 method->SetCode(code);
1523 tracer->SaveAndUpdateCode(method);
1524 }
1525 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001526 const void* code = oat_class->GetOatMethod(method_index).GetCode();
Ian Rogers08f753d2012-08-24 14:35:25 -07001527 CHECK(code != NULL)
1528 << "Resolving a static trampoline but found no code for: " << PrettyMethod(method);
Ian Rogers19846512012-02-24 11:42:47 -08001529 method->SetCode(code);
1530 }
1531 method_index++;
1532 }
1533}
1534
Mathieu Chartier66f19252012-09-18 08:57:04 -07001535static void LinkCode(SirtRef<AbstractMethod>& method, const OatFile::OatClass* oat_class,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001536 uint32_t method_index)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001537 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001538 // Every kind of method should at least get an invoke stub from the oat_method.
1539 // non-abstract methods also get their code pointers.
1540 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001541 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001542
Ian Rogers19846512012-02-24 11:42:47 -08001543 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001544 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001545 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001546 return;
1547 }
Ian Rogers19846512012-02-24 11:42:47 -08001548
1549 if (method->IsStatic() && !method->IsConstructor()) {
1550 // For static methods excluding the class initializer, install the trampoline
1551 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001552 }
1553 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001554 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001555 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001556 }
1557
1558 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001559 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001560 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001561 }
1562}
1563
Brian Carlstromf615a612011-07-23 12:50:34 -07001564void ClassLinker::LoadClass(const DexFile& dex_file,
1565 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001566 SirtRef<Class>& klass,
Ian Rogers365c1022012-06-22 15:05:28 -07001567 ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001568 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001569 CHECK(klass->GetDexCache() != NULL);
1570 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001571 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001572 CHECK(descriptor != NULL);
1573
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001574 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001575 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001576 // Make sure that none of our runtime-only flags are set.
1577 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001578 klass->SetAccessFlags(access_flags);
1579 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001580 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001581 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001582
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001583 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001584
Ian Rogers0571d352011-11-03 19:51:38 -07001585 // Load fields fields.
1586 const byte* class_data = dex_file.GetClassData(dex_class_def);
1587 if (class_data == NULL) {
1588 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001589 }
Ian Rogers0571d352011-11-03 19:51:38 -07001590 ClassDataItemIterator it(dex_file, class_data);
1591 if (it.NumStaticFields() != 0) {
1592 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1593 }
1594 if (it.NumInstanceFields() != 0) {
1595 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1596 }
Ian Rogers1f539342012-10-03 21:09:42 -07001597 Thread* self = Thread::Current();
Ian Rogers0571d352011-11-03 19:51:38 -07001598 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Ian Rogers1f539342012-10-03 21:09:42 -07001599 SirtRef<Field> sfield(self, AllocField());
Ian Rogers0571d352011-11-03 19:51:38 -07001600 klass->SetStaticField(i, sfield.get());
1601 LoadField(dex_file, it, klass, sfield);
1602 }
1603 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
Ian Rogers1f539342012-10-03 21:09:42 -07001604 SirtRef<Field> ifield(self, AllocField());
Ian Rogers0571d352011-11-03 19:51:38 -07001605 klass->SetInstanceField(i, ifield.get());
1606 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001607 }
1608
Brian Carlstromf5822582012-03-19 22:34:31 -07001609 UniquePtr<const OatFile::OatClass> oat_class;
1610 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1611 oat_class.reset(GetOatClass(dex_file, descriptor));
1612 }
Ian Rogers19846512012-02-24 11:42:47 -08001613
Ian Rogers0571d352011-11-03 19:51:38 -07001614 // Load methods.
1615 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001616 // TODO: append direct methods to class object
Mathieu Chartier66f19252012-09-18 08:57:04 -07001617 klass->SetDirectMethods(AllocObjectArray<AbstractMethod>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001618 }
Ian Rogers0571d352011-11-03 19:51:38 -07001619 if (it.NumVirtualMethods() != 0) {
1620 // TODO: append direct methods to class object
Mathieu Chartier66f19252012-09-18 08:57:04 -07001621 klass->SetVirtualMethods(AllocObjectArray<AbstractMethod>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001622 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001623 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001624 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
Ian Rogers1f539342012-10-03 21:09:42 -07001625 SirtRef<AbstractMethod> method(self, LoadMethod(dex_file, it, klass));
Ian Rogers0571d352011-11-03 19:51:38 -07001626 klass->SetDirectMethod(i, method.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001627 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001628 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001629 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001630 method->SetMethodIndex(class_def_method_index);
1631 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001632 }
1633 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
Ian Rogers1f539342012-10-03 21:09:42 -07001634 SirtRef<AbstractMethod> method(self, LoadMethod(dex_file, it, klass));
Ian Rogers0571d352011-11-03 19:51:38 -07001635 klass->SetVirtualMethod(i, method.get());
Ian Rogersfb6adba2012-03-04 21:51:51 -08001636 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001637 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001638 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001639 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001640 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001641 }
1642 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001643}
1644
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001645void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001646 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001647 uint32_t field_idx = it.GetMemberIndex();
1648 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001649 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001650 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001651}
1652
Mathieu Chartier66f19252012-09-18 08:57:04 -07001653AbstractMethod* ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1654 SirtRef<Class>& klass) {
Ian Rogers19846512012-02-24 11:42:47 -08001655 uint32_t dex_method_idx = it.GetMemberIndex();
Ian Rogers19846512012-02-24 11:42:47 -08001656 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001657 StringPiece method_name(dex_file.GetMethodName(method_id));
Mathieu Chartier66f19252012-09-18 08:57:04 -07001658
1659 AbstractMethod* dst = NULL;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001660 if (method_name == "<init>") {
Mathieu Chartier66f19252012-09-18 08:57:04 -07001661 dst = AllocConstructor();
1662 } else {
1663 dst = AllocMethod();
Elliott Hughes80609252011-09-23 17:24:51 -07001664 }
Mathieu Chartier66f19252012-09-18 08:57:04 -07001665 DCHECK(dst->IsMethod()) << PrettyDescriptor(dst->GetClass());
1666
1667 const char* old_cause = Thread::Current()->StartAssertNoThreadSuspension("LoadMethod");
1668 dst->SetDexMethodIndex(dex_method_idx);
1669 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001670
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001671 if (method_name == "finalize") {
1672 // Create the prototype for a signature of "()V"
1673 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1674 if (void_string_id != NULL) {
1675 const DexFile::TypeId* void_type_id =
1676 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1677 if (void_type_id != NULL) {
1678 std::vector<uint16_t> no_args;
1679 const DexFile::ProtoId* finalizer_proto =
1680 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1681 if (finalizer_proto != NULL) {
1682 // We have the prototype in the dex file
1683 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1684 klass->SetFinalizable();
1685 } else {
1686 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1687 // The Enum class declares a "final" finalize() method to prevent subclasses from
1688 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1689 // subclasses, so we exclude it here.
1690 // We also want to avoid setting the flag on Object, where we know that finalize() is
1691 // empty.
1692 if (klass_descriptor != "Ljava/lang/Object;" &&
1693 klass_descriptor != "Ljava/lang/Enum;") {
1694 klass->SetFinalizable();
1695 }
1696 }
1697 }
1698 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001699 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001700 }
Ian Rogers0571d352011-11-03 19:51:38 -07001701 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001702 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001703
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001704 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001705 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001706 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001707 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Mathieu Chartier66f19252012-09-18 08:57:04 -07001708
1709 CHECK(dst->IsMethod());
1710
1711 Thread::Current()->EndAssertNoThreadSuspension(old_cause);
1712 return dst;
Brian Carlstrom934486c2011-07-12 23:42:50 -07001713}
1714
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001715void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Ian Rogers1f539342012-10-03 21:09:42 -07001716 SirtRef<DexCache> dex_cache(Thread::Current(), AllocDexCache(dex_file));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001717 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001718}
1719
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001720void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1721 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001722 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001723 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001724}
1725
Brian Carlstromaded5f72011-10-07 17:15:04 -07001726bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001727 dex_lock_.AssertHeld();
Mathieu Chartier66f19252012-09-18 08:57:04 -07001728 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1729 if (dex_caches_[i]->GetDexFile() == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001730 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001731 }
1732 }
1733 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001734}
1735
Brian Carlstromaded5f72011-10-07 17:15:04 -07001736bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001737 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001738 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001739}
1740
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001741void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001742 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001743 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001744 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001745 dex_caches_.push_back(dex_cache.get());
Mathieu Chartier66f19252012-09-18 08:57:04 -07001746 dex_cache->SetDexFile(&dex_file);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001747}
1748
Brian Carlstromaded5f72011-10-07 17:15:04 -07001749void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Ian Rogers1f539342012-10-03 21:09:42 -07001750 Thread* self = Thread::Current();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001751 {
Ian Rogers1f539342012-10-03 21:09:42 -07001752 MutexLock mu(self, dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001753 if (IsDexFileRegisteredLocked(dex_file)) {
1754 return;
1755 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001756 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001757 // Don't alloc while holding the lock, since allocation may need to
1758 // suspend all threads and another thread may need the dex_lock_ to
1759 // get to a suspend point.
Ian Rogers1f539342012-10-03 21:09:42 -07001760 SirtRef<DexCache> dex_cache(self, AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001761 {
Ian Rogers1f539342012-10-03 21:09:42 -07001762 MutexLock mu(self, dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001763 if (IsDexFileRegisteredLocked(dex_file)) {
1764 return;
1765 }
1766 RegisterDexFileLocked(dex_file, dex_cache);
1767 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001768}
1769
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001770void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001771 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001772 RegisterDexFileLocked(dex_file, dex_cache);
1773}
1774
Mathieu Chartier66f19252012-09-18 08:57:04 -07001775// TODO: Remove.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001776const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001777 CHECK(dex_cache != NULL);
Mathieu Chartier66f19252012-09-18 08:57:04 -07001778 const DexFile* dex_file = dex_cache->GetDexFile();
1779 if (dex_file == NULL) {
1780 LOG(FATAL) << "DexCache has no DexFile " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001781 }
Mathieu Chartier66f19252012-09-18 08:57:04 -07001782 return *dex_file;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001783}
1784
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001785DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001786 MutexLock mu(dex_lock_);
Mathieu Chartier66f19252012-09-18 08:57:04 -07001787 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1788 DexCache* dex_cache = dex_caches_[i];
1789 if (dex_cache->GetDexFile() == &dex_file) {
1790 return dex_cache;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001791 }
1792 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001793 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001794 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001795}
1796
Mathieu Chartier66f19252012-09-18 08:57:04 -07001797void ClassLinker::FixupDexCaches(AbstractMethod* resolution_method) const {
Ian Rogers19846512012-02-24 11:42:47 -08001798 MutexLock mu(dex_lock_);
1799 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1800 dex_caches_[i]->Fixup(resolution_method);
1801 }
1802}
1803
Ian Rogersc8982582012-09-07 16:53:25 -07001804Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class, Primitive::Type type) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001805 CHECK(primitive_class != NULL);
Ian Rogers1f539342012-10-03 21:09:42 -07001806 // Must hold lock on object when initializing.
1807 ObjectLock lock(Thread::Current(), primitive_class);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001808 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001809 primitive_class->SetPrimitiveType(type);
1810 primitive_class->SetStatus(Class::kStatusInitialized);
Ian Rogersc8982582012-09-07 16:53:25 -07001811 Class* existing = InsertClass(Primitive::Descriptor(type), primitive_class, false);
1812 CHECK(existing == NULL) << "InitPrimitiveClass(" << type << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001813 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001814}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001815
Brian Carlstrombe977852011-07-19 14:54:54 -07001816// Create an array class (i.e. the class object for the array, not the
1817// array itself). "descriptor" looks like "[C" or "[[[[B" or
1818// "[Ljava/lang/String;".
1819//
1820// If "descriptor" refers to an array of primitives, look up the
1821// primitive type's internally-generated class object.
1822//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001823// "class_loader" is the class loader of the class that's referring to
1824// us. It's used to ensure that we're looking for the element type in
1825// the right context. It does NOT become the class loader for the
1826// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001827//
1828// Returns NULL with an exception raised on failure.
Ian Rogers365c1022012-06-22 15:05:28 -07001829Class* ClassLinker::CreateArrayClass(const std::string& descriptor, ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001830 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001831
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001832 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001833 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001834 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001835 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001836 return NULL;
1837 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001838
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001839 // See if the component type is already loaded. Array classes are
1840 // always associated with the class loader of their underlying
1841 // element type -- an array of Strings goes with the loader for
1842 // java/lang/String -- so we need to look for it there. (The
1843 // caller should have checked for the existence of the class
1844 // before calling here, but they did so with *their* class loader,
1845 // not the component type's loader.)
1846 //
1847 // If we find it, the caller adds "loader" to the class' initiating
1848 // loader list, which should prevent us from going through this again.
1849 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001850 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001851 // are the same, because our caller (FindClass) just did the
1852 // lookup. (Even if we get this wrong we still have correct behavior,
1853 // because we effectively do this lookup again when we add the new
1854 // class to the hash table --- necessary because of possible races with
1855 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001856 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001857 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001858 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001859 return new_class;
1860 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001861 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001862
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001863 // Fill out the fields in the Class.
1864 //
1865 // It is possible to execute some methods against arrays, because
1866 // all arrays are subclasses of java_lang_Object_, so we need to set
1867 // up a vtable. We can just point at the one in java_lang_Object_.
1868 //
1869 // Array classes are simple enough that we don't need to do a full
1870 // link step.
Ian Rogers1f539342012-10-03 21:09:42 -07001871 Thread* self = Thread::Current();
1872 SirtRef<Class> new_class(self, NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001873 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001874 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001875 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001876 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001877 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001878 new_class.reset(GetClassRoot(kObjectArrayClass));
Ian Rogers23435d02012-09-24 11:23:12 -07001879 } else if (descriptor == "[[Ljava/lang/Object;") {
1880 new_class.reset(GetClassRoot(kObjectArrayArrayClass));
Mathieu Chartier66f19252012-09-18 08:57:04 -07001881 } else if (descriptor == class_roots_descriptors_[kJavaLangStringArrayClass]) {
1882 new_class.reset(GetClassRoot(kJavaLangStringArrayClass));
1883 } else if (descriptor == class_roots_descriptors_[kJavaLangReflectFieldArrayClass]) {
1884 new_class.reset(GetClassRoot(kJavaLangReflectFieldArrayClass));
1885 } else if (descriptor == class_roots_descriptors_[kJavaLangReflectAbstractMethodArrayClass]) {
1886 new_class.reset(GetClassRoot(kJavaLangReflectAbstractMethodArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001887 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001888 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001889 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001890 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001891 }
1892 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001893 if (new_class.get() == NULL) {
1894 new_class.reset(AllocClass(sizeof(Class)));
1895 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001896 return NULL;
1897 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001898 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001899 }
Ian Rogers1f539342012-10-03 21:09:42 -07001900 ObjectLock lock(self, new_class.get()); // Must hold lock on object when initializing.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001901 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001902 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001903 new_class->SetSuperClass(java_lang_Object);
1904 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001905 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001906 new_class->SetClassLoader(component_type->GetClassLoader());
1907 new_class->SetStatus(Class::kStatusInitialized);
1908 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001909 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001910
1911
1912 // All arrays have java/lang/Cloneable and java/io/Serializable as
1913 // interfaces. We need to set that up here, so that stuff like
1914 // "instanceof" works right.
1915 //
1916 // Note: The GC could run during the call to FindSystemClass,
1917 // so we need to make sure the class object is GC-valid while we're in
1918 // there. Do this by clearing the interface list so the GC will just
1919 // think that the entries are null.
1920
1921
1922 // Use the single, global copies of "interfaces" and "iftable"
1923 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001924 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001925 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001926
1927 // Inherit access flags from the component type. Arrays can't be
1928 // used as a superclass or interface, so we want to add "final"
1929 // and remove "interface".
1930 //
1931 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001932 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001933 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001934 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1935 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001936
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001937 Class* existing = InsertClass(descriptor, new_class.get(), false);
1938 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001939 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001940 }
1941 // Another thread must have loaded the class after we
1942 // started but before we finished. Abandon what we've
1943 // done.
1944 //
1945 // (Yes, this happens.)
1946
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001947 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001948}
1949
1950Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001951 switch (Primitive::GetType(type)) {
1952 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001953 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001954 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001955 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001956 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001957 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001958 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001959 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001960 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001961 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001962 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001963 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001964 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001965 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001966 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001967 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001968 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001969 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001970 case Primitive::kPrimNot:
1971 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001972 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001973 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001974 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001975 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001976}
1977
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001978Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001979 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001980 DexCache* dex_cache = klass->GetDexCache();
1981 std::string source;
1982 if (dex_cache != NULL) {
1983 source += " from ";
1984 source += dex_cache->GetLocation()->ToModifiedUtf8();
1985 }
1986 LOG(INFO) << "Loaded class " << descriptor << source;
1987 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001988 size_t hash = StringPieceHash()(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07001989 MutexLock mu(*Locks::classlinker_classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001990 Table& classes = image_class ? image_classes_ : classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001991 Class* existing = LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, classes);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001992#ifndef NDEBUG
1993 // Check we don't have the class in the other table in error
1994 Table& other_classes = image_class ? classes_ : image_classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001995 CHECK(LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001996#endif
1997 if (existing != NULL) {
1998 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001999 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002000 classes.insert(std::make_pair(hash, klass));
2001 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002002}
2003
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002004bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
2005 size_t hash = Hash(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07002006 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08002007 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08002008 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002009 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002010 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08002011 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002012 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002013 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08002014 classes_.erase(it);
2015 return true;
2016 }
2017 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002018 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08002019 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002020 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002021 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08002022 image_classes_.erase(it);
2023 return true;
2024 }
2025 }
2026 return false;
2027}
2028
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002029Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
2030 size_t hash = Hash(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07002031 MutexLock mu(*Locks::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07002032 // TODO: determine if its better to search classes_ or image_classes_ first
Elliott Hughesf8349362012-06-18 15:00:06 -07002033 Class* klass = LookupClassLocked(descriptor, class_loader, hash, classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002034 if (klass != NULL) {
2035 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002036 }
Elliott Hughesf8349362012-06-18 15:00:06 -07002037 return LookupClassLocked(descriptor, class_loader, hash, image_classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002038}
2039
Elliott Hughesf8349362012-06-18 15:00:06 -07002040Class* ClassLinker::LookupClassLocked(const char* descriptor, const ClassLoader* class_loader,
2041 size_t hash, const Table& classes) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002042 ClassHelper kh(NULL, this);
2043 typedef Table::const_iterator It; // TODO: C++0x auto
2044 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07002045 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002046 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002047 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002048#ifndef NDEBUG
2049 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08002050 Class* klass2 = it->second;
2051 kh.ChangeClass(klass2);
2052 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002053 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08002054 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002055 }
2056#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07002057 return klass;
2058 }
2059 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002060 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002061}
2062
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002063void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08002064 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002065 size_t hash = Hash(descriptor);
Ian Rogersb726dcb2012-09-05 08:57:23 -07002066 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08002067 typedef Table::const_iterator It; // TODO: C++0x auto
2068 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002069 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002070 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002071 Class* klass = it->second;
2072 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002073 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002074 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08002075 }
2076 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002077 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002078 Class* klass = it->second;
2079 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002080 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002081 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08002082 }
2083 }
2084}
2085
jeffhao98eacac2011-09-14 16:11:53 -07002086void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002087 // TODO: assert that the monitor on the Class is held
Ian Rogers1f539342012-10-03 21:09:42 -07002088 Thread* self = Thread::Current();
2089 ObjectLock lock(self, klass);
Elliott Hughesd9c67be2012-02-02 19:54:06 -08002090
Ian Rogers9ffb0392012-09-10 11:56:50 -07002091 // Don't attempt to re-verify if already sufficiently verified.
2092 if (klass->IsVerified() ||
2093 (klass->IsCompileTimeVerified() && Runtime::Current()->IsCompiler())) {
jeffhao98eacac2011-09-14 16:11:53 -07002094 return;
2095 }
2096
Ian Rogers9ffb0392012-09-10 11:56:50 -07002097 // The class might already be erroneous, for example at compile time if we attempted to verify
2098 // this class as a parent to another.
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002099 if (klass->IsErroneous()) {
2100 ThrowEarlierClassFailure(klass);
2101 return;
2102 }
2103
Ian Rogers9ffb0392012-09-10 11:56:50 -07002104 if (klass->GetStatus() == Class::kStatusResolved) {
2105 klass->SetStatus(Class::kStatusVerifying);
2106 } else {
2107 CHECK_EQ(klass->GetStatus(), Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
2108 CHECK(!Runtime::Current()->IsCompiler());
2109 klass->SetStatus(Class::kStatusVerifyingAtRuntime);
2110 }
jeffhao98eacac2011-09-14 16:11:53 -07002111
Ian Rogers9ffb0392012-09-10 11:56:50 -07002112 // Verify super class.
Ian Rogers1c5eb702012-02-01 09:18:34 -08002113 Class* super = klass->GetSuperClass();
2114 std::string error_msg;
2115 if (super != NULL) {
Ian Rogers9ffb0392012-09-10 11:56:50 -07002116 // Acquire lock to prevent races on verifying the super class.
Ian Rogers1f539342012-10-03 21:09:42 -07002117 ObjectLock lock(self, super);
Ian Rogers1c5eb702012-02-01 09:18:34 -08002118
2119 if (!super->IsVerified() && !super->IsErroneous()) {
2120 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2121 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002122 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08002123 error_msg = "Rejecting class ";
2124 error_msg += PrettyDescriptor(klass);
2125 error_msg += " that attempts to sub-class erroneous class ";
2126 error_msg += PrettyDescriptor(super);
2127 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
Ian Rogers1f539342012-10-03 21:09:42 -07002128 SirtRef<Throwable> cause(self, self->GetException());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002129 if (cause.get() != NULL) {
2130 self->ClearException();
2131 }
2132 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2133 if (cause.get() != NULL) {
2134 self->GetException()->SetCause(cause.get());
2135 }
Ian Rogers1c5eb702012-02-01 09:18:34 -08002136 klass->SetStatus(Class::kStatusError);
2137 return;
2138 }
2139 }
2140
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002141 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002142 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002143 Class::Status oat_file_class_status(Class::kStatusNotReady);
2144 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002145 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
jeffhaoec014232012-09-05 10:42:25 -07002146 if (oat_file_class_status == Class::kStatusError) {
2147 LOG(WARNING) << "Skipping runtime verification of erroneous class " << PrettyDescriptor(klass)
2148 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2149 error_msg = "Rejecting class ";
2150 error_msg += PrettyDescriptor(klass);
2151 error_msg += " because it failed compile-time verification";
2152 Thread::Current()->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2153 klass->SetStatus(Class::kStatusError);
2154 return;
2155 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002156 if (!preverified) {
2157 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2158 }
2159 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Ian Rogers529781d2012-07-23 17:24:29 -07002160 if (!preverified && verifier_failure != verifier::MethodVerifier::kNoFailure) {
2161 LOG(WARNING) << "Soft verification failure in class " << PrettyDescriptor(klass)
2162 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2163 << " because: " << error_msg;
2164 }
Ian Rogers1f539342012-10-03 21:09:42 -07002165 self->AssertNoPendingException();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002166 // Make sure all classes referenced by catch blocks are resolved.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002167 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002168 if (verifier_failure == verifier::MethodVerifier::kNoFailure) {
2169 klass->SetStatus(Class::kStatusVerified);
2170 } else {
2171 CHECK_EQ(verifier_failure, verifier::MethodVerifier::kSoftFailure);
2172 // Soft failures at compile time should be retried at runtime. Soft
2173 // failures at runtime will be handled by slow paths in the generated
2174 // code. Set status accordingly.
2175 if (Runtime::Current()->IsCompiler()) {
2176 klass->SetStatus(Class::kStatusRetryVerificationAtRuntime);
2177 } else {
2178 klass->SetStatus(Class::kStatusVerified);
2179 }
2180 }
jeffhao5cfd6fb2011-09-27 13:54:29 -07002181 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002182 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002183 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2184 << " because: " << error_msg;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002185 self->AssertNoPendingException();
Ian Rogers1c5eb702012-02-01 09:18:34 -08002186 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002187 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002188 }
jeffhao98eacac2011-09-14 16:11:53 -07002189}
2190
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002191bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2192 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002193 if (!Runtime::Current()->IsStarted()) {
2194 return false;
2195 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002196 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002197 return false;
2198 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002199 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2200 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002201 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002202 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002203 const char* descriptor = ClassHelper(klass).GetDescriptor();
2204 uint32_t class_def_index;
2205 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002206 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002207 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002208 CHECK(oat_class.get() != NULL)
2209 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002210 oat_file_class_status = oat_class->GetStatus();
Ian Rogers9ffb0392012-09-10 11:56:50 -07002211 if (oat_file_class_status == Class::kStatusVerified ||
2212 oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002213 return true;
2214 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002215 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002216 // Compile time verification failed with a soft error. Compile time verification can fail
2217 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002218 // class ... {
2219 // Foo x;
2220 // .... () {
2221 // if (...) {
2222 // v1 gets assigned a type of resolved class Foo
2223 // } else {
2224 // v1 gets assigned a type of unresolved class Bar
2225 // }
2226 // iput x = v1
2227 // } }
2228 // when we merge v1 following the if-the-else it results in Conflict
2229 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2230 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2231 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2232 // at compile time).
2233 return false;
2234 }
jeffhao1ac29442012-03-26 11:37:32 -07002235 if (oat_file_class_status == Class::kStatusError) {
2236 // Compile time verification failed with a hard error. This is caused by invalid instructions
2237 // in the class. These errors are unrecoverable.
2238 return false;
2239 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002240 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002241 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2242 // not loading the class.
2243 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2244 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002245 return false;
2246 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002247 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002248 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2249
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002250 return false;
2251}
2252
2253void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2254 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2255 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2256 }
2257 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2258 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2259 }
2260}
2261
Mathieu Chartier66f19252012-09-18 08:57:04 -07002262void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, AbstractMethod* method) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002263 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2264 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2265 if (code_item == NULL) {
2266 return; // native or abstract method
2267 }
2268 if (code_item->tries_size_ == 0) {
2269 return; // nothing to process
2270 }
2271 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2272 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2273 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2274 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2275 CatchHandlerIterator iterator(handlers_ptr);
2276 for (; iterator.HasNext(); iterator.Next()) {
2277 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2278 // unresolved exception types will be ignored by exception delivery
2279 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2280 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2281 if (exception_type == NULL) {
2282 DCHECK(Thread::Current()->IsExceptionPending());
2283 Thread::Current()->ClearException();
2284 }
2285 }
2286 }
2287 handlers_ptr = iterator.EndDataPointer();
2288 }
2289}
2290
Mathieu Chartier66f19252012-09-18 08:57:04 -07002291static void CheckProxyConstructor(AbstractMethod* constructor);
2292static void CheckProxyMethod(AbstractMethod* method, SirtRef<AbstractMethod>& prototype);
Ian Rogersc2b44472011-12-14 21:17:17 -08002293
Jesse Wilson95caa792011-10-12 18:14:17 -04002294Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Mathieu Chartier66f19252012-09-18 08:57:04 -07002295 ClassLoader* loader, ObjectArray<AbstractMethod>* methods,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002296 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogers1f539342012-10-03 21:09:42 -07002297 Thread* self = Thread::Current();
2298 SirtRef<Class> klass(self, AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002299 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002300 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002301 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002302 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002303 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002304 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002305 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002306 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002307 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002308
2309 klass->SetStatus(Class::kStatusIdx);
2310
2311 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2312
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002313 // Instance fields are inherited, but we add a couple of static fields...
2314 klass->SetSFields(AllocObjectArray<Field>(2));
2315 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2316 // our proxy, so Class.getInterfaces doesn't return the flattened set.
Ian Rogers1f539342012-10-03 21:09:42 -07002317 SirtRef<Field> interfaces_sfield(self, AllocField());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002318 klass->SetStaticField(0, interfaces_sfield.get());
2319 interfaces_sfield->SetDexFieldIndex(0);
2320 interfaces_sfield->SetDeclaringClass(klass.get());
2321 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2322 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
Ian Rogers1f539342012-10-03 21:09:42 -07002323 SirtRef<Field> throws_sfield(self, AllocField());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002324 klass->SetStaticField(1, throws_sfield.get());
2325 throws_sfield->SetDexFieldIndex(1);
2326 throws_sfield->SetDeclaringClass(klass.get());
2327 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002328
Ian Rogers466bb252011-10-14 03:29:56 -07002329 // Proxies have 1 direct method, the constructor
Mathieu Chartier66f19252012-09-18 08:57:04 -07002330 klass->SetDirectMethods(AllocObjectArray<AbstractMethod>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002331 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002332
Ian Rogers466bb252011-10-14 03:29:56 -07002333 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002334 size_t num_virtual_methods = methods->GetLength();
Mathieu Chartier66f19252012-09-18 08:57:04 -07002335 klass->SetVirtualMethods(AllocObjectArray<AbstractMethod>(num_virtual_methods));
Jesse Wilson95caa792011-10-12 18:14:17 -04002336 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers1f539342012-10-03 21:09:42 -07002337 SirtRef<AbstractMethod> prototype(self, methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002338 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002339 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002340
2341 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2342 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2343 DCHECK(!Thread::Current()->IsExceptionPending());
2344
2345 // Link the fields and virtual methods, creating vtable and iftables
2346 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002347 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002348 return NULL;
2349 }
Ian Rogersc8982582012-09-07 16:53:25 -07002350 {
Ian Rogers1f539342012-10-03 21:09:42 -07002351 ObjectLock lock(self, klass.get()); // Must hold lock on object when initializing.
Ian Rogersc8982582012-09-07 16:53:25 -07002352 interfaces_sfield->SetObject(NULL, interfaces);
2353 throws_sfield->SetObject(NULL, throws);
2354 klass->SetStatus(Class::kStatusInitialized);
2355 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002356
2357 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002358 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002359 CHECK(klass->GetIFields() == NULL);
2360 CheckProxyConstructor(klass->GetDirectMethod(0));
2361 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers1f539342012-10-03 21:09:42 -07002362 SirtRef<AbstractMethod> prototype(self, methods->Get(i));
Ian Rogersc2b44472011-12-14 21:17:17 -08002363 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2364 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002365
2366 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2367 name->ToModifiedUtf8().c_str()));
2368 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2369
2370 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2371 name->ToModifiedUtf8().c_str()));
2372 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002373
2374 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002375 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002376 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2377 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002378 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002379}
2380
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002381std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2382 DCHECK(proxy_class->IsProxyClass());
2383 String* name = proxy_class->GetName();
2384 DCHECK(name != NULL);
2385 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2386}
2387
Mathieu Chartier66f19252012-09-18 08:57:04 -07002388AbstractMethod* ClassLinker::FindMethodForProxy(const Class* proxy_class, const AbstractMethod* proxy_method) {
Ian Rogers16f93672012-02-14 12:29:06 -08002389 DCHECK(proxy_class->IsProxyClass());
2390 DCHECK(proxy_method->IsProxyMethod());
2391 // Locate the dex cache of the original interface/Object
2392 DexCache* dex_cache = NULL;
2393 {
2394 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2395 MutexLock mu(dex_lock_);
2396 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2397 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2398 dex_cache = dex_caches_[i];
2399 break;
2400 }
2401 }
2402 }
2403 CHECK(dex_cache != NULL);
2404 uint32_t method_idx = proxy_method->GetDexMethodIndex();
Mathieu Chartier66f19252012-09-18 08:57:04 -07002405 AbstractMethod* resolved_method = dex_cache->GetResolvedMethod(method_idx);
Ian Rogers16f93672012-02-14 12:29:06 -08002406 CHECK(resolved_method != NULL);
2407 return resolved_method;
2408}
2409
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002410
Mathieu Chartier66f19252012-09-18 08:57:04 -07002411AbstractMethod* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002412 // Create constructor for Proxy that must initialize h
Mathieu Chartier66f19252012-09-18 08:57:04 -07002413 ObjectArray<AbstractMethod>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002414 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Mathieu Chartier66f19252012-09-18 08:57:04 -07002415 AbstractMethod* proxy_constructor = proxy_direct_methods->Get(2);
Ian Rogers466bb252011-10-14 03:29:56 -07002416 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2417 // code_ too)
Mathieu Chartier66f19252012-09-18 08:57:04 -07002418 AbstractMethod* constructor = down_cast<AbstractMethod*>(proxy_constructor->Clone());
Ian Rogers466bb252011-10-14 03:29:56 -07002419 // Make this constructor public and fix the class to be our Proxy version
2420 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002421 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002422 return constructor;
2423}
2424
Mathieu Chartier66f19252012-09-18 08:57:04 -07002425static void CheckProxyConstructor(AbstractMethod* constructor)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002426 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002427 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002428 MethodHelper mh(constructor);
2429 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002430 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002431 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002432}
2433
Mathieu Chartier66f19252012-09-18 08:57:04 -07002434AbstractMethod* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<AbstractMethod>& prototype) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002435 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2436 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002437 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2438 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002439 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002440 // as necessary
Mathieu Chartier66f19252012-09-18 08:57:04 -07002441 AbstractMethod* method = down_cast<AbstractMethod*>(prototype->Clone());
Ian Rogers466bb252011-10-14 03:29:56 -07002442
2443 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2444 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002445 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002446 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002447
Ian Rogers466bb252011-10-14 03:29:56 -07002448 // At runtime the method looks like a reference and argument saving method, clone the code
2449 // related parameters from this method.
Mathieu Chartier66f19252012-09-18 08:57:04 -07002450 AbstractMethod* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
Ian Rogers466bb252011-10-14 03:29:56 -07002451 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2452 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2453 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002454#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002455 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002456#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002457 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2458 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002459#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002460
Ian Rogersc2b44472011-12-14 21:17:17 -08002461 return method;
2462}
Jesse Wilson95caa792011-10-12 18:14:17 -04002463
Mathieu Chartier66f19252012-09-18 08:57:04 -07002464static void CheckProxyMethod(AbstractMethod* method, SirtRef<AbstractMethod>& prototype)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002465 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002466 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002467 CHECK(!prototype->IsFinal());
2468 CHECK(method->IsFinal());
2469 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002470
2471 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2472 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2473 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2474 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2475 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2476 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2477 method->GetDexCacheInitializedStaticStorage());
2478 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2479
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002480 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002481 MethodHelper mh2(prototype.get());
2482 CHECK_STREQ(mh.GetName(), mh2.GetName());
2483 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002484 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002485 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002486}
2487
Ian Rogers0045a292012-03-31 21:08:41 -07002488bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002489 CHECK(klass->IsResolved() || klass->IsErroneous())
Ian Rogers9ffb0392012-09-10 11:56:50 -07002490 << PrettyClass(klass) << ": state=" << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002491
Carl Shapirob5573532011-07-12 18:22:59 -07002492 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002493
Mathieu Chartier66f19252012-09-18 08:57:04 -07002494 AbstractMethod* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002495 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002496 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Ian Rogers1f539342012-10-03 21:09:42 -07002497 ObjectLock lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002498
Brian Carlstromd1422f82011-09-28 11:37:09 -07002499 if (klass->GetStatus() == Class::kStatusInitialized) {
2500 return true;
2501 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002502
Brian Carlstromd1422f82011-09-28 11:37:09 -07002503 if (klass->IsErroneous()) {
2504 ThrowEarlierClassFailure(klass);
2505 return false;
2506 }
2507
jeffhaoebe2e0f2012-06-06 15:19:40 -07002508 if (klass->GetStatus() == Class::kStatusResolved ||
2509 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002510 VerifyClass(klass);
2511 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002512 if (klass->GetStatus() == Class::kStatusError) {
2513 CHECK(self->IsExceptionPending());
2514 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002515 return false;
2516 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002517 }
2518
Brian Carlstrom25c33252011-09-18 15:58:35 -07002519 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2520 if (clinit != NULL && !can_run_clinit) {
Ian Rogers3d1548d2012-09-24 14:08:03 -07002521 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -07002522 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002523 // don't bother going to kStatusInitializing. We return false so that
2524 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002525 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2526 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002527 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002528 }
2529
Brian Carlstromd1422f82011-09-28 11:37:09 -07002530 // If the class is kStatusInitializing, either this thread is
2531 // initializing higher up the stack or another thread has beat us
2532 // to initializing and we need to wait. Either way, this
2533 // invocation of InitializeClass will not be responsible for
2534 // running <clinit> and will return.
2535 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002536 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002537 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002538 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002539 return true;
2540 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002541 // No. That's fine. Wait for another thread to finish initializing.
2542 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002543 }
2544
2545 if (!ValidateSuperClassDescriptors(klass)) {
2546 klass->SetStatus(Class::kStatusError);
Ian Rogers3d1548d2012-09-24 14:08:03 -07002547 lock.NotifyAll();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002548 return false;
2549 }
2550
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002551 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002552
Elliott Hughesdcc24742011-09-07 14:02:44 -07002553 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002554 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002555 }
2556
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002557 uint64_t t0 = NanoTime();
2558
Ian Rogers0045a292012-03-31 21:08:41 -07002559 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002560 // Super class initialization failed, this can be because we can't run
2561 // super-class class initializers in which case we'll be verified.
2562 // Otherwise this class is erroneous.
2563 if (!can_run_clinit) {
2564 CHECK(klass->IsVerified());
2565 } else {
2566 CHECK(klass->IsErroneous());
2567 }
Ian Rogers3d1548d2012-09-24 14:08:03 -07002568 // Signal to any waiting threads that saw this class as initializing.
Ian Rogers1f539342012-10-03 21:09:42 -07002569 ObjectLock lock(self, klass);
Ian Rogers3d1548d2012-09-24 14:08:03 -07002570 lock.NotifyAll();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002571 return false;
2572 }
2573
Ian Rogers0045a292012-03-31 21:08:41 -07002574 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002575
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002576 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002577 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002578 }
2579
Ian Rogers19846512012-02-24 11:42:47 -08002580 FixupStaticTrampolines(klass);
2581
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002582 uint64_t t1 = NanoTime();
2583
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002584 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002585 {
Ian Rogers1f539342012-10-03 21:09:42 -07002586 ObjectLock lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002587
2588 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002589 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002590 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002591 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002592 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002593 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2594 RuntimeStats* thread_stats = self->GetStats();
2595 ++global_stats->class_init_count;
2596 ++thread_stats->class_init_count;
2597 global_stats->class_init_time_ns += (t1 - t0);
2598 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002599 // Set the class as initialized except if we can't initialize static fields and static field
2600 // initialization is necessary.
2601 if (!can_init_statics && has_static_field_initializers) {
2602 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2603 success = false;
2604 } else {
2605 klass->SetStatus(Class::kStatusInitialized);
2606 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002607 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002608 ClassHelper kh(klass);
2609 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002610 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002611 }
2612 lock.NotifyAll();
2613 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002614 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002615}
2616
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002617bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock)
Ian Rogersb726dcb2012-09-05 08:57:23 -07002618 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002619 while (true) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002620 self->AssertNoPendingException();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002621 lock.Wait();
2622
2623 // When we wake up, repeat the test for init-in-progress. If
2624 // there's an exception pending (only possible if
2625 // "interruptShouldThrow" was set), bail out.
2626 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002627 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002628 klass->SetStatus(Class::kStatusError);
2629 return false;
2630 }
2631 // Spurious wakeup? Go back to waiting.
2632 if (klass->GetStatus() == Class::kStatusInitializing) {
2633 continue;
2634 }
Ian Rogers3d1548d2012-09-24 14:08:03 -07002635 if (klass->GetStatus() == Class::kStatusVerified && Runtime::Current()->IsCompiler()) {
2636 // Compile time initialization failed.
2637 return false;
2638 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002639 if (klass->IsErroneous()) {
2640 // The caller wants an exception, but it was thrown in a
2641 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002642 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002643 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002644 return false;
2645 }
2646 if (klass->IsInitialized()) {
2647 return true;
2648 }
2649 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2650 }
2651 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2652}
2653
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002654bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2655 if (klass->IsInterface()) {
2656 return true;
2657 }
2658 // begin with the methods local to the superclass
2659 if (klass->HasSuperClass() &&
2660 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2661 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002662 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07002663 const AbstractMethod* method = klass->GetVTable()->Get(i);
Ian Rogers595799e2012-01-11 17:32:51 -08002664 if (method != super->GetVTable()->Get(i) &&
2665 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002666 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2667 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2668 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002669 return false;
2670 }
2671 }
2672 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002673 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2674 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2675 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002676 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2677 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07002678 const AbstractMethod* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002679 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2680 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002681 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2682 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2683 PrettyMethod(method).c_str(),
2684 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002685 return false;
2686 }
2687 }
2688 }
2689 }
2690 return true;
2691}
2692
Ian Rogers595799e2012-01-11 17:32:51 -08002693// Returns true if classes referenced by the signature of the method are the
2694// same classes in klass1 as they are in klass2.
Mathieu Chartier66f19252012-09-18 08:57:04 -07002695bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const AbstractMethod* method,
Ian Rogers595799e2012-01-11 17:32:51 -08002696 const Class* klass1,
2697 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002698 if (klass1 == klass2) {
2699 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002700 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002701 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002702 const DexFile::ProtoId& proto_id =
2703 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002704 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2705 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002706 if (descriptor == NULL) {
2707 break;
2708 }
2709 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2710 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002711 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002712 return false;
2713 }
2714 }
2715 }
2716 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002717 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002718 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002719 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002720 return false;
2721 }
2722 }
2723 return true;
2724}
2725
Ian Rogers595799e2012-01-11 17:32:51 -08002726// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2727bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2728 const Class* klass1,
2729 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002730 CHECK(descriptor != NULL);
2731 CHECK(klass1 != NULL);
2732 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002733 if (klass1 == klass2) {
2734 return true;
2735 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002736 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002737 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002738 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002739 }
Ian Rogers595799e2012-01-11 17:32:51 -08002740 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2741 if (found2 == NULL) {
2742 Thread::Current()->ClearException();
2743 }
2744 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002745}
2746
Ian Rogers0045a292012-03-31 21:08:41 -07002747bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002748 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002749 if (!klass->IsInterface() && klass->HasSuperClass()) {
2750 Class* super_class = klass->GetSuperClass();
Ian Rogers9ffb0392012-09-10 11:56:50 -07002751 if (!super_class->IsInitialized()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002752 CHECK(!super_class->IsInterface());
Ian Rogers1f539342012-10-03 21:09:42 -07002753 // Must hold lock on object when initializing and setting status.
2754 ObjectLock lock(Thread::Current(), klass);
Ian Rogers0045a292012-03-31 21:08:41 -07002755 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002756 // TODO: check for a pending exception
2757 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002758 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002759 // Don't set status to error when we can't run <clinit>.
2760 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2761 klass->SetStatus(Class::kStatusVerified);
2762 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002763 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002764 klass->SetStatus(Class::kStatusError);
2765 klass->NotifyAll();
2766 return false;
2767 }
2768 }
2769 }
2770 return true;
2771}
2772
Ian Rogers0045a292012-03-31 21:08:41 -07002773bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002774 CHECK(c != NULL);
2775 if (c->IsInitialized()) {
2776 return true;
2777 }
2778
Elliott Hughes5f791332011-09-15 17:45:30 -07002779 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002780 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002781 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002782 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002783 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002784 }
2785 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002786}
2787
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002788void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002789 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Ian Rogers365c1022012-06-22 15:05:28 -07002790 ClassLoader* cl = c->GetClassLoader();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002791 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002792 ClassDataItemIterator it(dex_file, class_data);
2793 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002794 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002795 }
2796}
2797
Ian Rogers0045a292012-03-31 21:08:41 -07002798bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002799 size_t num_static_fields = klass->NumStaticFields();
2800 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002801 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002802 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002803 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002804 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002805 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002806 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002807 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002808 ClassHelper kh(klass);
2809 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002810 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002811 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002812 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002813
Ian Rogers0571d352011-11-03 19:51:38 -07002814 if (it.HasNext()) {
2815 // 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 -07002816 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002817 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2818 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002819 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002820 }
Ian Rogers0045a292012-03-31 21:08:41 -07002821 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002822 }
Ian Rogers0045a292012-03-31 21:08:41 -07002823 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002824}
2825
Ian Rogersc2b44472011-12-14 21:17:17 -08002826bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002827 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002828 if (!LinkSuperClass(klass)) {
2829 return false;
2830 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002831 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002832 return false;
2833 }
2834 if (!LinkInstanceFields(klass)) {
2835 return false;
2836 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002837 if (!LinkStaticFields(klass)) {
2838 return false;
2839 }
2840 CreateReferenceInstanceOffsets(klass);
2841 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002842 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2843 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002844 return true;
2845}
2846
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002847bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002848 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002849 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2850 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002851 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002852 uint16_t super_class_idx = class_def->superclass_idx_;
2853 if (super_class_idx != DexFile::kDexNoIndex16) {
2854 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002855 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002856 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002857 return false;
2858 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002859 // Verify
2860 if (!klass->CanAccess(super_class)) {
2861 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2862 "Class %s extended by class %s is inaccessible",
2863 PrettyDescriptor(super_class).c_str(),
2864 PrettyDescriptor(klass.get()).c_str());
2865 return false;
2866 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002867 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002868 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002869 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2870 if (interfaces != NULL) {
2871 for (size_t i = 0; i < interfaces->Size(); i++) {
2872 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2873 Class* interface = ResolveType(dex_file, idx, klass.get());
2874 if (interface == NULL) {
2875 DCHECK(Thread::Current()->IsExceptionPending());
2876 return false;
2877 }
2878 // Verify
2879 if (!klass->CanAccess(interface)) {
2880 // TODO: the RI seemed to ignore this in my testing.
2881 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2882 "Interface %s implemented by class %s is inaccessible",
2883 PrettyDescriptor(interface).c_str(),
2884 PrettyDescriptor(klass.get()).c_str());
2885 return false;
2886 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002887 }
2888 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002889 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002890 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002891 return true;
2892}
2893
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002894bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002895 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002896 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002897 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002898 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002899 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002900 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002901 return false;
2902 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002903 return true;
2904 }
2905 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002906 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002907 return false;
2908 }
2909 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002910 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002911 Thread* self = Thread::Current();
2912 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002913 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002914 PrettyDescriptor(super).c_str(),
2915 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002916 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002917 return false;
2918 }
2919 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002920 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002921 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002922 PrettyDescriptor(super).c_str(),
2923 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002924 return false;
2925 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002926
2927 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2928 if (super->IsFinalizable()) {
2929 klass->SetFinalizable();
2930 }
2931
Elliott Hughes2da50362011-10-10 16:57:08 -07002932 // Inherit reference flags (if any) from the superclass.
2933 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2934 if (reference_flags != 0) {
2935 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2936 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002937 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002938 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002939 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002940 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002941 return false;
2942 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002943
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002944#ifndef NDEBUG
2945 // Ensure super classes are fully resolved prior to resolving fields..
2946 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002947 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002948 super = super->GetSuperClass();
2949 }
2950#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002951 return true;
2952}
2953
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002954// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002955bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002956 if (klass->IsInterface()) {
2957 // No vtable.
2958 size_t count = klass->NumVirtualMethods();
2959 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002960 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002961 return false;
2962 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002963 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002964 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002965 }
jeffhaobdb76512011-09-07 11:43:16 -07002966 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002967 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002968 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002969 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002970 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002971 }
2972 return true;
2973}
2974
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002975bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Ian Rogers1f539342012-10-03 21:09:42 -07002976 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002977 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002978 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2979 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002980 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002981 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers1f539342012-10-03 21:09:42 -07002982 SirtRef<ObjectArray<AbstractMethod> >
2983 vtable(self, klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002984 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002985 MethodHelper local_mh(NULL, this);
2986 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002987 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07002988 AbstractMethod* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002989 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002990 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002991 for (; j < actual_count; ++j) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07002992 AbstractMethod* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002993 super_mh.ChangeMethod(super_method);
Elliott Hughes39717372012-07-13 16:21:23 -07002994 if (local_mh.HasSameNameAndSignature(&super_mh)) {
2995 if (klass->CanAccessMember(super_method->GetDeclaringClass(), super_method->GetAccessFlags())) {
2996 if (super_method->IsFinal()) {
2997 ThrowLinkageError("Method %s overrides final method in class %s",
2998 PrettyMethod(local_method).c_str(),
2999 super_mh.GetDeclaringClassDescriptor());
3000 return false;
3001 }
3002 vtable->Set(j, local_method);
3003 local_method->SetMethodIndex(j);
3004 break;
3005 } else {
3006 LOG(WARNING) << "Before Android 4.1, method " << PrettyMethod(local_method)
3007 << " would have incorrectly overridden the package-private method in "
3008 << PrettyDescriptor(super_mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003009 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003010 }
3011 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07003012 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003013 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003014 vtable->Set(actual_count, local_method);
3015 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003016 actual_count += 1;
3017 }
3018 }
3019 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08003020 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003021 return false;
3022 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003023 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003024 CHECK_LE(actual_count, max_count);
3025 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08003026 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003027 }
Ian Rogers30fab402012-01-23 15:43:46 -08003028 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003029 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003030 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07003031 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07003032 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07003033 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003034 return false;
3035 }
Ian Rogers1f539342012-10-03 21:09:42 -07003036 SirtRef<ObjectArray<AbstractMethod> >
3037 vtable(self, AllocObjectArray<AbstractMethod>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07003038 for (size_t i = 0; i < num_virtual_methods; ++i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07003039 AbstractMethod* virtual_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003040 vtable->Set(i, virtual_method);
3041 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003042 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003043 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003044 }
3045 return true;
3046}
3047
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003048bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003049 size_t super_ifcount;
3050 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003051 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003052 } else {
3053 super_ifcount = 0;
3054 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003055 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003056 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07003057 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003058 ifcount += num_interfaces;
3059 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07003060 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003061 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003062 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003063 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003064 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07003065 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003066 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003067 return true;
3068 }
Ian Rogers1f539342012-10-03 21:09:42 -07003069 Thread* self = Thread::Current();
3070 SirtRef<ObjectArray<InterfaceEntry> > iftable(self, AllocIfTable(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003071 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003072 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
3073 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08003074 Class* super_interface = super_iftable->Get(i)->GetInterface();
3075 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003076 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003077 }
3078 // Flatten the interface inheritance hierarchy.
3079 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003080 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07003081 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003082 DCHECK(interface != NULL);
3083 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003084 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08003085 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003086 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003087 PrettyDescriptor(klass.get()).c_str(),
3088 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003089 return false;
3090 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08003091 // Check if interface is already in iftable
3092 bool duplicate = false;
3093 for (size_t j = 0; j < idx; j++) {
3094 Class* existing_interface = iftable->Get(j)->GetInterface();
3095 if (existing_interface == interface) {
3096 duplicate = true;
3097 break;
3098 }
3099 }
3100 if (!duplicate) {
3101 // Add this non-duplicate interface.
3102 iftable->Set(idx++, AllocInterfaceEntry(interface));
3103 // Add this interface's non-duplicate super-interfaces.
3104 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
3105 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
3106 bool super_duplicate = false;
3107 for (size_t k = 0; k < idx; k++) {
3108 Class* existing_interface = iftable->Get(k)->GetInterface();
3109 if (existing_interface == super_interface) {
3110 super_duplicate = true;
3111 break;
3112 }
3113 }
3114 if (!super_duplicate) {
3115 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
3116 }
3117 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003118 }
3119 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08003120 // Shrink iftable in case duplicates were found
3121 if (idx < ifcount) {
3122 iftable.reset(iftable->CopyOf(idx));
3123 ifcount = idx;
3124 } else {
3125 CHECK_EQ(idx, ifcount);
3126 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003127 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07003128
3129 // If we're an interface, we don't need the vtable pointers, so we're done.
3130 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003131 return true;
3132 }
Mathieu Chartier66f19252012-09-18 08:57:04 -07003133 std::vector<AbstractMethod*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003134 MethodHelper vtable_mh(NULL, this);
3135 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003136 for (size_t i = 0; i < ifcount; ++i) {
3137 InterfaceEntry* interface_entry = iftable->Get(i);
3138 Class* interface = interface_entry->GetInterface();
Mathieu Chartier66f19252012-09-18 08:57:04 -07003139 ObjectArray<AbstractMethod>* method_array = AllocObjectArray<AbstractMethod>(interface->NumVirtualMethods());
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003140 interface_entry->SetMethodArray(method_array);
Mathieu Chartier66f19252012-09-18 08:57:04 -07003141 ObjectArray<AbstractMethod>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003142 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07003143 AbstractMethod* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003144 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003145 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07003146 // For each method listed in the interface's method list, find the
3147 // matching method in our class's method list. We want to favor the
3148 // subclass over the superclass, which just requires walking
3149 // back from the end of the vtable. (This only matters if the
3150 // superclass defines a private method and this class redefines
3151 // it -- otherwise it would use the same vtable slot. In .dex files
3152 // those don't end up in the virtual method table, so it shouldn't
3153 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003154 for (k = vtable->GetLength() - 1; k >= 0; --k) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07003155 AbstractMethod* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003156 vtable_mh.ChangeMethod(vtable_method);
3157 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07003158 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07003159 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003160 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003161 return false;
3162 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003163 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003164 break;
3165 }
3166 }
3167 if (k < 0) {
Ian Rogers1f539342012-10-03 21:09:42 -07003168 SirtRef<AbstractMethod> miranda_method(self, NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003169 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07003170 AbstractMethod* mir_method = miranda_list[mir];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003171 vtable_mh.ChangeMethod(mir_method);
3172 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003173 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003174 break;
3175 }
3176 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003177 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003178 // point the interface table at a phantom slot
Mathieu Chartier66f19252012-09-18 08:57:04 -07003179 miranda_method.reset(down_cast<AbstractMethod*>(interface_method->Clone()));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003180 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003181 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003182 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003183 }
3184 }
3185 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003186 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003187 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003188 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003189 klass->SetVirtualMethods((old_method_count == 0)
Mathieu Chartier66f19252012-09-18 08:57:04 -07003190 ? AllocObjectArray<AbstractMethod>(new_method_count)
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003191 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003192
Ian Rogers1f539342012-10-03 21:09:42 -07003193 SirtRef<ObjectArray<AbstractMethod> > vtable(self, klass->GetVTableDuringLinking());
Ian Rogers30fab402012-01-23 15:43:46 -08003194 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003195 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003196 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003197 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003198 for (size_t i = 0; i < miranda_list.size(); ++i) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07003199 AbstractMethod* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003200 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003201 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3202 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3203 klass->SetVirtualMethod(old_method_count + i, method);
3204 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003205 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003206 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003207 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003208 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003209
Mathieu Chartier66f19252012-09-18 08:57:04 -07003210 ObjectArray<AbstractMethod>* vtable = klass->GetVTableDuringLinking();
Elliott Hughes4681c802011-09-25 18:04:37 -07003211 for (int i = 0; i < vtable->GetLength(); ++i) {
3212 CHECK(vtable->Get(i) != NULL);
3213 }
3214
3215// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3216
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003217 return true;
3218}
3219
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003220bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3221 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003222 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003223}
3224
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003225bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3226 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003227 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003228 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003229 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003230 return success;
3231}
3232
Brian Carlstromdbc05252011-09-09 01:59:59 -07003233struct LinkFieldsComparator {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003234 explicit LinkFieldsComparator(FieldHelper* fh)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003235 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003236 : fh_(fh) {}
3237 // No thread safety analysis as will be called from STL. Checked lock held in constructor.
3238 bool operator()(const Field* field1, const Field* field2) NO_THREAD_SAFETY_ANALYSIS {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003239 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003240 fh_->ChangeField(field1);
3241 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3242 fh_->ChangeField(field2);
3243 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003244 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3245 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3246 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3247 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003248 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3249 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3250 if (order1 != order2) {
3251 return order1 < order2;
3252 }
3253
3254 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003255 fh_->ChangeField(field1);
3256 StringPiece name1(fh_->GetName());
3257 fh_->ChangeField(field2);
3258 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003259 return name1 < name2;
3260 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003261
3262 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003263};
3264
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003265bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003266 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003267 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003268
3269 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003270 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003271
3272 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003273 size_t size;
3274 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003275 if (is_static) {
3276 size = klass->GetClassSize();
3277 field_offset = Class::FieldsOffset();
3278 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003279 Class* super_class = klass->GetSuperClass();
3280 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003281 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003282 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003283 }
3284 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003285 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003286
Brian Carlstromdbc05252011-09-09 01:59:59 -07003287 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003288
Brian Carlstromdbc05252011-09-09 01:59:59 -07003289 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003290 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003291 std::deque<Field*> grouped_and_sorted_fields;
3292 for (size_t i = 0; i < num_fields; i++) {
3293 grouped_and_sorted_fields.push_back(fields->Get(i));
3294 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003295 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003296 std::sort(grouped_and_sorted_fields.begin(),
3297 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003298 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003299
3300 // References should be at the front.
3301 size_t current_field = 0;
3302 size_t num_reference_fields = 0;
3303 for (; current_field < num_fields; current_field++) {
3304 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003305 fh.ChangeField(field);
3306 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003307 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003308 if (isPrimitive) {
3309 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003310 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003311 grouped_and_sorted_fields.pop_front();
3312 num_reference_fields++;
3313 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003314 field->SetOffset(field_offset);
3315 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003316 }
3317
3318 // Now we want to pack all of the double-wide fields together. If
3319 // we're not aligned, though, we want to shuffle one 32-bit field
3320 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003321 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003322 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3323 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003324 fh.ChangeField(field);
3325 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003326 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3327 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003328 continue;
3329 }
3330 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003331 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003332 // drop the consumed field
3333 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3334 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003335 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003336 // whether we found a 32-bit field for padding or not, we advance
3337 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003338 }
3339
3340 // Alignment is good, shuffle any double-wide fields forward, and
3341 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003342 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003343 while (!grouped_and_sorted_fields.empty()) {
3344 Field* field = grouped_and_sorted_fields.front();
3345 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003346 fh.ChangeField(field);
3347 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003348 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003349 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003350 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003351 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003352 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003353 ? sizeof(uint64_t)
3354 : sizeof(uint32_t)));
3355 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003356 }
3357
Elliott Hughesadb460d2011-10-05 17:02:34 -07003358 // 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 -08003359 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3360 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003361 // We know there are no non-reference fields in the Reference classes, and we know
3362 // that 'referent' is alphabetically last, so this is easy...
3363 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003364 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003365 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003366 --num_reference_fields;
3367 }
3368
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003369#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003370 // Make sure that all reference fields appear before
3371 // non-reference fields, and all double-wide fields are aligned.
3372 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003373 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003374 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003375 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003376 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003377 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003378 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003379 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3380 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003381 fh.ChangeField(field);
3382 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003383 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003384 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003385 is_primitive = true; // We lied above, so we have to expect a lie here.
3386 }
3387 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003388 if (!seen_non_ref) {
3389 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003390 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003391 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003392 } else {
3393 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003394 }
3395 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003396 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003397 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003398 }
3399#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003400 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003401 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003402 if (is_static) {
3403 klass->SetNumReferenceStaticFields(num_reference_fields);
3404 klass->SetClassSize(size);
3405 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003406 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003407 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003408 klass->SetObjectSize(size);
3409 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003410 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003411 return true;
3412}
3413
3414// Set the bitmap of reference offsets, refOffsets, from the ifields
3415// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003416void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003417 uint32_t reference_offsets = 0;
3418 Class* super_class = klass->GetSuperClass();
3419 if (super_class != NULL) {
3420 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003421 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003422 if (reference_offsets == CLASS_WALK_SUPER) {
3423 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003424 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003425 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003426 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003427 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003428}
3429
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003430void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003431 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003432}
3433
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003434void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003435 uint32_t reference_offsets) {
3436 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003437 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3438 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003439 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003440 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003441 // All of the fields that contain object references are guaranteed
3442 // to be at the beginning of the fields list.
3443 for (size_t i = 0; i < num_reference_fields; ++i) {
3444 // Note that byte_offset is the offset from the beginning of
3445 // object, not the offset into instance data
3446 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003447 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003448 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3449 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3450 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003451 CHECK_NE(new_bit, 0U);
3452 reference_offsets |= new_bit;
3453 } else {
3454 reference_offsets = CLASS_WALK_SUPER;
3455 break;
3456 }
3457 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003458 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003459 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003460 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003461 } else {
3462 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003463 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003464}
3465
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003466String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003467 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003468 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003469 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003470 if (resolved != NULL) {
3471 return resolved;
3472 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003473 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3474 int32_t utf16_length = dex_file.GetStringLength(string_id);
3475 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003476 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003477 dex_cache->SetResolvedString(string_idx, string);
3478 return string;
3479}
3480
3481Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003482 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003483 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003484 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003485 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003486 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003487 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003488 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003489 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003490 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003491 // TODO: we used to throw here if resolved's class loader was not the
3492 // boot class loader. This was to permit different classes with the
3493 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003494 dex_cache->SetResolvedType(type_idx, resolved);
3495 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003496 CHECK(Thread::Current()->IsExceptionPending())
3497 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003498 // Convert a ClassNotFoundException to a NoClassDefFoundError
3499 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3500 Thread::Current()->ClearException();
3501 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3502 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003503 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003504 }
3505 return resolved;
3506}
3507
Mathieu Chartier66f19252012-09-18 08:57:04 -07003508AbstractMethod* ClassLinker::ResolveMethod(const DexFile& dex_file,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003509 uint32_t method_idx,
3510 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003511 ClassLoader* class_loader,
Mathieu Chartier66f19252012-09-18 08:57:04 -07003512 const AbstractMethod* referrer,
Ian Rogers08f753d2012-08-24 14:35:25 -07003513 InvokeType type) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003514 DCHECK(dex_cache != NULL);
Ian Rogers08f753d2012-08-24 14:35:25 -07003515 // Check for hit in the dex cache.
Mathieu Chartier66f19252012-09-18 08:57:04 -07003516 AbstractMethod* resolved = dex_cache->GetResolvedMethod(method_idx);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003517 if (resolved != NULL) {
3518 return resolved;
3519 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003520 // Fail, get the declaring class.
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003521 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3522 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3523 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003524 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003525 return NULL;
3526 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003527 // Scan using method_idx, this saves string compares but will only hit for matching dex
3528 // caches/files.
3529 switch (type) {
3530 case kDirect: // Fall-through.
3531 case kStatic:
3532 resolved = klass->FindDirectMethod(dex_cache, method_idx);
3533 break;
3534 case kInterface:
3535 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
3536 break;
3537 case kSuper: // Fall-through.
3538 case kVirtual:
3539 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
3540 break;
3541 default:
3542 LOG(FATAL) << "Unreachable - invocation type: " << type;
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003543 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003544 if (resolved == NULL) {
Ian Rogers08f753d2012-08-24 14:35:25 -07003545 // Search by name, which works across dex files.
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003546 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3547 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
Ian Rogers08f753d2012-08-24 14:35:25 -07003548 switch (type) {
3549 case kDirect: // Fall-through.
3550 case kStatic:
jeffhao8cd6dda2012-02-22 10:15:34 -08003551 resolved = klass->FindDirectMethod(name, signature);
Ian Rogers08f753d2012-08-24 14:35:25 -07003552 break;
3553 case kInterface:
3554 resolved = klass->FindInterfaceMethod(name, signature);
3555 break;
3556 case kSuper: // Fall-through.
3557 case kVirtual:
3558 resolved = klass->FindVirtualMethod(name, signature);
3559 break;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003560 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003561 }
Ian Rogers08f753d2012-08-24 14:35:25 -07003562 if (resolved != NULL) {
3563 // We found a method, check for incompatible class changes.
Ian Rogers87e552d2012-08-31 15:54:48 -07003564 if (resolved->CheckIncompatibleClassChange(type)) {
3565 resolved = NULL;
Ian Rogers08f753d2012-08-24 14:35:25 -07003566 }
3567 }
3568 if (resolved != NULL) {
3569 // Be a good citizen and update the dex cache to speed subsequent calls.
3570 dex_cache->SetResolvedMethod(method_idx, resolved);
3571 return resolved;
3572 } else {
jeffhaoc0228b82012-08-29 18:15:05 -07003573 // We failed to find the method which means either an access error, an incompatible class
3574 // change, or no such method. First try to find the method among direct and virtual methods.
Ian Rogers08f753d2012-08-24 14:35:25 -07003575 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3576 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3577 switch (type) {
3578 case kDirect:
3579 case kStatic:
3580 resolved = klass->FindVirtualMethod(name, signature);
jeffhaoc0228b82012-08-29 18:15:05 -07003581 break;
3582 case kInterface:
3583 case kVirtual:
3584 case kSuper:
3585 resolved = klass->FindDirectMethod(name, signature);
3586 break;
3587 }
3588
3589 // If we found something, check that it can be accessed by the referrer.
3590 if (resolved != NULL && referrer != NULL) {
3591 Class* methods_class = resolved->GetDeclaringClass();
3592 Class* referring_class = referrer->GetDeclaringClass();
3593 if (!referring_class->CanAccess(methods_class)) {
Ian Rogers87e552d2012-08-31 15:54:48 -07003594 ThrowIllegalAccessErrorClassForMethodDispatch(referring_class, methods_class,
3595 referrer, resolved, type);
jeffhaoc0228b82012-08-29 18:15:05 -07003596 return NULL;
3597 } else if (!referring_class->CanAccessMember(methods_class,
3598 resolved->GetAccessFlags())) {
Ian Rogers87e552d2012-08-31 15:54:48 -07003599 ThrowIllegalAccessErrorMethod(referring_class, resolved);
jeffhaoc0228b82012-08-29 18:15:05 -07003600 return NULL;
3601 }
3602 }
3603
3604 // Otherwise, throw an IncompatibleClassChangeError if we found something, and check interface
3605 // methods and throw if we find the method there. If we find nothing, throw a NoSuchMethodError.
3606 switch (type) {
3607 case kDirect:
3608 case kStatic:
Ian Rogers08f753d2012-08-24 14:35:25 -07003609 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003610 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003611 } else {
3612 resolved = klass->FindInterfaceMethod(name, signature);
3613 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003614 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003615 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003616 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003617 }
3618 }
3619 break;
3620 case kInterface:
Ian Rogers08f753d2012-08-24 14:35:25 -07003621 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003622 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003623 } else {
3624 resolved = klass->FindVirtualMethod(name, signature);
3625 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003626 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003627 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003628 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003629 }
3630 }
3631 break;
3632 case kSuper:
Ian Rogers2fc14272012-08-30 10:56:57 -07003633 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003634 break;
3635 case kVirtual:
Ian Rogers08f753d2012-08-24 14:35:25 -07003636 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003637 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003638 } else {
3639 resolved = klass->FindInterfaceMethod(name, signature);
3640 if (resolved != NULL) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003641 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003642 } else {
Ian Rogers2fc14272012-08-30 10:56:57 -07003643 ThrowNoSuchMethodError(type, klass, name, signature, referrer);
Ian Rogers08f753d2012-08-24 14:35:25 -07003644 }
3645 }
3646 break;
3647 }
3648 DCHECK(Thread::Current()->IsExceptionPending());
3649 return NULL;
3650 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003651}
3652
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003653Field* ClassLinker::ResolveField(const DexFile& dex_file,
3654 uint32_t field_idx,
3655 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003656 ClassLoader* class_loader,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003657 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003658 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003659 Field* resolved = dex_cache->GetResolvedField(field_idx);
3660 if (resolved != NULL) {
3661 return resolved;
3662 }
3663 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3664 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3665 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003666 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003667 return NULL;
3668 }
3669
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003670 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003671 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003672 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003673 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003674 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003675
3676 if (resolved == NULL) {
3677 const char* name = dex_file.GetFieldName(field_id);
3678 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3679 if (is_static) {
3680 resolved = klass->FindStaticField(name, type);
3681 } else {
3682 resolved = klass->FindInstanceField(name, type);
3683 }
3684 if (resolved == NULL) {
3685 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3686 return NULL;
3687 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003688 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003689 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003690 return resolved;
3691}
3692
3693Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3694 uint32_t field_idx,
3695 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003696 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003697 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003698 Field* resolved = dex_cache->GetResolvedField(field_idx);
3699 if (resolved != NULL) {
3700 return resolved;
3701 }
3702 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3703 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3704 if (klass == NULL) {
3705 DCHECK(Thread::Current()->IsExceptionPending());
3706 return NULL;
3707 }
3708
3709 const char* name = dex_file.GetFieldName(field_id);
3710 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3711 resolved = klass->FindField(name, type);
3712 if (resolved != NULL) {
3713 dex_cache->SetResolvedField(field_idx, resolved);
3714 } else {
3715 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003716 }
3717 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003718}
3719
Mathieu Chartier66f19252012-09-18 08:57:04 -07003720const char* ClassLinker::MethodShorty(uint32_t method_idx, AbstractMethod* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003721 Class* declaring_class = referrer->GetDeclaringClass();
3722 DexCache* dex_cache = declaring_class->GetDexCache();
3723 const DexFile& dex_file = FindDexFile(dex_cache);
3724 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003725 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003726}
3727
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003728void ClassLinker::DumpAllClasses(int flags) const {
3729 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3730 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3731 std::vector<Class*> all_classes;
3732 {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003733 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003734 typedef Table::const_iterator It; // TODO: C++0x auto
3735 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3736 all_classes.push_back(it->second);
3737 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003738 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3739 all_classes.push_back(it->second);
3740 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003741 }
3742
3743 for (size_t i = 0; i < all_classes.size(); ++i) {
3744 all_classes[i]->DumpClass(std::cerr, flags);
3745 }
3746}
3747
Elliott Hughescac6cc72011-11-03 20:31:21 -07003748void ClassLinker::DumpForSigQuit(std::ostream& os) const {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003749 MutexLock mu(*Locks::classlinker_classes_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -07003750 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3751 << classes_.size() << " allocated classes\n";
3752}
3753
Elliott Hughese27955c2011-08-26 15:21:24 -07003754size_t ClassLinker::NumLoadedClasses() const {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003755 MutexLock mu(*Locks::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003756 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003757}
3758
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003759pid_t ClassLinker::GetClassesLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -07003760 return Locks::classlinker_classes_lock_->GetExclusiveOwnerTid();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003761}
3762
3763pid_t ClassLinker::GetDexLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003764 return dex_lock_.GetExclusiveOwnerTid();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003765}
3766
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003767void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3768 DCHECK(!init_done_);
3769
3770 DCHECK(klass != NULL);
3771 DCHECK(klass->GetClassLoader() == NULL);
3772
3773 DCHECK(class_roots_ != NULL);
3774 DCHECK(class_roots_->Get(class_root) == NULL);
3775 class_roots_->Set(class_root, klass);
3776}
3777
Logan Chien0c717dd2012-03-28 18:31:07 +08003778void ClassLinker::RelocateExecutable() {
Elliott Hughesf8349362012-06-18 15:00:06 -07003779 MutexLock mu(dex_lock_);
Logan Chien0c717dd2012-03-28 18:31:07 +08003780 for (size_t i = 0; i < oat_files_.size(); ++i) {
3781 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3782 }
3783}
3784
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003785} // namespace art