blob: 7576c66aa6a3780813c1ab9530425a6f0ca6d7a5 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Brian Carlstromd601af82012-01-06 10:15:19 -080019#include <fcntl.h>
20#include <sys/file.h>
21#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080022#include <sys/types.h>
23#include <sys/wait.h>
24
Brian Carlstromdbc05252011-09-09 01:59:59 -070025#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070026#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070028#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080032#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070033#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070034#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070036#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070037#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070038#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070039#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070040#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080041#include "object_utils.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080042#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070043#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070044#include "runtime_support.h"
TDYa1275bb86012012-04-11 05:57:28 -070045#if defined(ART_USE_LLVM_COMPILER)
46#include "compiler_llvm/runtime_support_llvm.h"
47#endif
Elliott Hughes4d0207c2011-10-03 19:14:34 -070048#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070049#include "scoped_thread_state_change.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070050#include "space.h"
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070051#include "space_bitmap.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070052#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070053#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070054#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070055#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070056#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070057#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070058
59namespace art {
60
Ian Rogers00f7d0e2012-07-19 15:28:27 -070061static void ThrowNoClassDefFoundError(const char* fmt, ...)
62 __attribute__((__format__(__printf__, 1, 2)))
63 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070064static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070065 va_list args;
66 va_start(args, fmt);
67 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
68 va_end(args);
69}
70
Ian Rogers00f7d0e2012-07-19 15:28:27 -070071static void ThrowClassFormatError(const char* fmt, ...)
72 __attribute__((__format__(__printf__, 1, 2)))
73 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070074static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070075 va_list args;
76 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070077 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070078 va_end(args);
79}
80
Ian Rogers00f7d0e2012-07-19 15:28:27 -070081static void ThrowLinkageError(const char* fmt, ...)
82 __attribute__((__format__(__printf__, 1, 2)))
83 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070084static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070085 va_list args;
86 va_start(args, fmt);
87 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
88 va_end(args);
89}
90
Elliott Hughes0512f022012-03-15 22:10:52 -070091static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070092 const StringPiece& signature)
93 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080094 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070095 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080096 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080097 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080098 std::string location(kh.GetLocation());
99 if (!location.empty()) {
100 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -0700101 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700102 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -0700103}
104
Elliott Hughes0512f022012-03-15 22:10:52 -0700105static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700106 const StringPiece& name)
107 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogers9f1ab122011-12-12 08:52:43 -0800108 ClassHelper kh(c);
109 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -0800110 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -0800111 << " in class " << kh.GetDescriptor() << " or its superclasses";
112 std::string location(kh.GetLocation());
113 if (!location.empty()) {
114 msg << " (defined in " << location << ")";
115 }
116 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
117}
118
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700119static void ThrowNullPointerException(const char* fmt, ...)
120 __attribute__((__format__(__printf__, 1, 2)))
121 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -0700122static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800123 va_list args;
124 va_start(args, fmt);
125 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
126 va_end(args);
127}
128
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700129static void ThrowEarlierClassFailure(Class* c)
130 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Elliott Hughes5c599942012-06-13 16:45:05 -0700131 // The class failed to initialize on a previous attempt, so we want to throw
132 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
133 // failed in verification, in which case v2 5.4.1 says we need to re-throw
134 // the previous error.
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700135 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
136
Elliott Hughes5c599942012-06-13 16:45:05 -0700137 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700138 if (c->GetVerifyErrorClass() != NULL) {
139 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800140 ClassHelper ve_ch(c->GetVerifyErrorClass());
141 std::string error_descriptor(ve_ch.GetDescriptor());
142 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700143 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800144 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700145 }
146}
147
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700148static void WrapExceptionInInitializer()
149 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700150 Thread* self = Thread::Current();
151 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700152
153 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
154 CHECK(cause.get() != NULL);
155
156 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700157 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
158 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700159
Elliott Hughesa4f94742012-05-29 16:28:38 -0700160 // We only wrap non-Error exceptions; an Error can just be used as-is.
161 if (!is_error) {
162 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", NULL);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700163 }
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700164}
165
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800166static size_t Hash(const char* s) {
167 // This is the java.lang.String hashcode for convenience, not interoperability.
168 size_t hash = 0;
169 for (; *s != '\0'; ++s) {
170 hash = hash * 31 + *s;
171 }
172 return hash;
173}
174
Elliott Hughes418d20f2011-09-22 14:00:39 -0700175const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700176 "Ljava/lang/Class;",
177 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700178 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700179 "[Ljava/lang/Object;",
180 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700181 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700182 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700183 "Ljava/lang/reflect/Field;",
184 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700185 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700186 "Ljava/lang/ClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800187 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800188 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700189 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700190 "Z",
191 "B",
192 "C",
193 "D",
194 "F",
195 "I",
196 "J",
197 "S",
198 "V",
199 "[Z",
200 "[B",
201 "[C",
202 "[D",
203 "[F",
204 "[I",
205 "[J",
206 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700207 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700208};
209
Brian Carlstroma004aa92012-02-08 18:05:09 -0800210ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
211 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700212 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800213 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800214 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700215 return class_linker.release();
216}
217
Brian Carlstroma004aa92012-02-08 18:05:09 -0800218ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800219 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700220 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700221 return class_linker.release();
222}
223
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800224ClassLinker::ClassLinker(InternTable* intern_table)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700225 // dex_lock_ is recursive as it may be used in stack dumping.
226 : dex_lock_("ClassLinker dex lock", kDefaultMutexLevel, true),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700227 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700228 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700229 init_done_(false),
230 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700231 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700232}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700233
Brian Carlstroma004aa92012-02-08 18:05:09 -0800234void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
235 VLOG(startup) << "ClassLinker::Init";
236 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700237
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700238 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700239
Elliott Hughes30646832011-10-13 16:59:46 -0700240 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800241 Heap* heap = Runtime::Current()->GetHeap();
242 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700243 CHECK(java_lang_Class.get() != NULL);
244 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700245 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700246 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700247
Elliott Hughes418d20f2011-09-22 14:00:39 -0700248 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700249 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
250 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700251
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700252 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700253 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
254 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700255 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700256 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700257 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700258
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700259 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700260 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
261 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700262
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700263 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700264 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700265
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700266 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700267 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
268 char_array_class->SetComponentType(char_class.get());
269 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700270
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700271 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700272 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
273 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 Rogers0cfe1fb2011-08-26 03:29:44 -0700277 // Create storage for root classes, save away our work so far (requires
278 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700279 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700280 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700281 SetClassRoot(kJavaLangClass, java_lang_Class.get());
282 SetClassRoot(kJavaLangObject, java_lang_Object.get());
283 SetClassRoot(kClassArrayClass, class_array_class.get());
284 SetClassRoot(kObjectArrayClass, object_array_class.get());
285 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.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700289 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
290 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
291 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
292 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
293 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
294 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
295 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
296 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700297
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700298 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700299 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700300
301 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700302 SirtRef<Class> int_array_class(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
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700309 // setup boot_class_path_ and register class_path now that we can
310 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800311 CHECK_NE(0U, boot_class_path.size());
312 for (size_t i = 0; i != boot_class_path.size(); ++i) {
313 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700314 CHECK(dex_file != NULL);
315 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700316 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700317
Elliott Hughes80609252011-09-23 17:24:51 -0700318 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700319 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700321 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700322 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700323 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
324
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700325 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
326 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700327 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700328 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700329 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700331
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700335 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700337 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700338
339 // now we can use FindSystemClass
340
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700341 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700342 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700343 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700344
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700345 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700346 java_lang_Object->SetStatus(Class::kStatusNotReady);
347 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700348 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700349 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
350 java_lang_String->SetStatus(Class::kStatusNotReady);
351 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700352 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700353 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
354
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700355 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700356 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
357 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
358
359 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
360 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
361
362 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700363 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700364
365 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
366 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
367
368 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700369 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700370
371 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
372 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
373
374 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
375 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
376
377 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
378 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
379
Elliott Hughes418d20f2011-09-22 14:00:39 -0700380 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700381 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700382
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700383 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700384 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700385
386 // Setup the single, global copies of "interfaces" and "iftable"
387 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
388 CHECK(java_lang_Cloneable != NULL);
389 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
390 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700391 // We assume that Cloneable/Serializable don't have superinterfaces --
392 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700393 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800394 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
395 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700396
Elliott Hughes418d20f2011-09-22 14:00:39 -0700397 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800398 ClassHelper kh(class_array_class.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -0700399 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
400 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800401 kh.ChangeClass(object_array_class.get());
Ian Rogersd24e2642012-06-06 21:21:43 -0700402 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
403 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700404 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700405 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700406 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700407 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700408
Elliott Hughes80609252011-09-23 17:24:51 -0700409 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
410 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700411 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700412
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700413 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700414 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700415 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700416
417 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700418 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700419 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700420
Ian Rogers466bb252011-10-14 03:29:56 -0700421 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
422
423 // Create java.lang.reflect.Proxy root
424 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
425 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
426
Brian Carlstrom1f870082011-08-23 16:02:11 -0700427 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700428 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
429 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700430 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700431 java_lang_ref_FinalizerReference->SetAccessFlags(
432 java_lang_ref_FinalizerReference->GetAccessFlags() |
433 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700434 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700435 java_lang_ref_PhantomReference->SetAccessFlags(
436 java_lang_ref_PhantomReference->GetAccessFlags() |
437 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700438 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700439 java_lang_ref_SoftReference->SetAccessFlags(
440 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700441 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700442 java_lang_ref_WeakReference->SetAccessFlags(
443 java_lang_ref_WeakReference->GetAccessFlags() |
444 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700445
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700446 // Setup the ClassLoader, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700447 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700448 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700449 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
450
jeffhao8cd6dda2012-02-22 10:15:34 -0800451 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
452 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800453 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
454 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800455 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700456 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
457 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700458 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700459
Brian Carlstroma663ea52011-08-19 23:33:41 -0700460 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700461
Brian Carlstroma004aa92012-02-08 18:05:09 -0800462 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700463}
464
465void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800466 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700467
468 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700469 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700470 // as the types of the field can't be resolved prior to the runtime being
471 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700472 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700473 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700474 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
475
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800476 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
477
Brian Carlstrom16192862011-09-12 17:50:06 -0700478 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800479 FieldHelper fh(pendingNext, this);
480 CHECK_STREQ(fh.GetName(), "pendingNext");
481 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
482 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700483
484 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800485 fh.ChangeField(queue);
486 CHECK_STREQ(fh.GetName(), "queue");
487 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
488 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700489
490 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800491 fh.ChangeField(queueNext);
492 CHECK_STREQ(fh.GetName(), "queueNext");
493 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
494 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700495
496 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800497 fh.ChangeField(referent);
498 CHECK_STREQ(fh.GetName(), "referent");
499 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
500 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700501
502 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800503 fh.ChangeField(zombie);
504 CHECK_STREQ(fh.GetName(), "zombie");
505 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
506 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700507
Elliott Hughesa4f94742012-05-29 16:28:38 -0700508 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800509 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700510 queue->GetOffset(),
511 queueNext->GetOffset(),
512 pendingNext->GetOffset(),
513 zombie->GetOffset());
514
Brian Carlstroma663ea52011-08-19 23:33:41 -0700515 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700516 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700517 ClassRoot class_root = static_cast<ClassRoot>(i);
518 Class* klass = GetClassRoot(class_root);
519 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700520 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700521 // note SetClassRoot does additional validation.
522 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700523 }
524
Elliott Hughes92f14b22011-10-06 12:29:54 -0700525 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700526
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700527 // disable the slow paths in FindClass and CreatePrimitiveClass now
528 // that Object, Class, and Object[] are setup
529 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700530
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800531 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700532}
533
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700534void ClassLinker::RunRootClinits() {
535 Thread* self = Thread::Current();
536 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
537 Class* c = GetClassRoot(ClassRoot(i));
538 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700539 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700540 self->AssertNoPendingException();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700541 }
542 }
543}
544
Brian Carlstromd601af82012-01-06 10:15:19 -0800545bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
546 int oat_fd,
547 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800548 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700549 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800550 const char* dex2oat = dex2oat_string.c_str();
551
Brian Carlstroma004aa92012-02-08 18:05:09 -0800552 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800553
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800554 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800555 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700556 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800557 const char* boot_image_option = boot_image_option_string.c_str();
558
559 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800560 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800561 const char* dex_file_option = dex_file_option_string.c_str();
562
Brian Carlstromd601af82012-01-06 10:15:19 -0800563 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800564 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800565 const char* oat_fd_option = oat_fd_option_string.c_str();
566
Brian Carlstroma004aa92012-02-08 18:05:09 -0800567 std::string oat_location_option_string("--oat-location=");
568 oat_location_option_string += oat_cache_filename;
569 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800570
jeffhao262bf462011-10-20 18:36:32 -0700571 // fork and exec dex2oat
572 pid_t pid = fork();
573 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800574 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800575
576 // change process groups, so we don't get reaped by ProcessManager
577 setpgid(0, 0);
578
jeffhao10037c82012-01-23 15:06:23 -0800579 VLOG(class_linker) << dex2oat
580 << " --runtime-arg -Xms64m"
581 << " --runtime-arg -Xmx64m"
582 << " --runtime-arg -classpath"
583 << " --runtime-arg " << class_path
584 << " " << boot_image_option
585 << " " << dex_file_option
586 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800587 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800588
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800589 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700590 "--runtime-arg", "-Xms64m",
591 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500592 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800593 "--runtime-arg", class_path,
594 boot_image_option,
595 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800596 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800597 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700598 NULL);
599
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800600 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800601 return false;
jeffhao262bf462011-10-20 18:36:32 -0700602 } else {
603 // wait for dex2oat to finish
604 int status;
605 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
606 if (got_pid != pid) {
607 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800608 return false;
jeffhao262bf462011-10-20 18:36:32 -0700609 }
610 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800611 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
612 return false;
jeffhao262bf462011-10-20 18:36:32 -0700613 }
614 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800615 return true;
jeffhao262bf462011-10-20 18:36:32 -0700616}
617
Brian Carlstrom866c8622012-01-06 16:35:13 -0800618void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
619 MutexLock mu(dex_lock_);
620 RegisterOatFileLocked(oat_file);
621}
622
623void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
624 dex_lock_.AssertHeld();
625 oat_files_.push_back(&oat_file);
626}
627
Ian Rogers30fab402012-01-23 15:43:46 -0800628OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700629 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700630 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700631 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800632 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
633 // check the down cast
634 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700635 std::string oat_filename;
636 oat_filename += runtime->GetHostPrefix();
637 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800638 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
639 image_header.GetOatBegin(),
640 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800641 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700642 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700643 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700644 return NULL;
645 }
646 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
647 uint32_t image_oat_checksum = image_header.GetOatChecksum();
648 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800649 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700650 << " to expected oat checksum " << std::hex << oat_checksum
651 << " in image";
652 return NULL;
653 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800654 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800655 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700656 return oat_file;
657}
658
Brian Carlstromae826982011-11-09 01:33:42 -0800659const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700660 MutexLock mu(dex_lock_);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800661 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800662}
663
Brian Carlstroma004aa92012-02-08 18:05:09 -0800664const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstromae826982011-11-09 01:33:42 -0800665 for (size_t i = 0; i < oat_files_.size(); i++) {
666 const OatFile* oat_file = oat_files_[i];
667 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800668 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800669 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800670 return oat_file;
671 }
672 }
673 return NULL;
674}
675
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800676static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
677 uint32_t dex_location_checksum,
678 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800679 UniquePtr<OatFile> oat_file(
680 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800681 if (oat_file.get() == NULL) {
682 return NULL;
683 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700684 Runtime* runtime = Runtime::Current();
685 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
686 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
687 return NULL;
688 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800689 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
690 if (oat_dex_file == NULL) {
691 return NULL;
692 }
693 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
694 return NULL;
695 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700696 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800697 return oat_dex_file->OpenDexFile();
698}
699
700const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
701 const std::string& oat_location) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700702 MutexLock mu(dex_lock_);
703 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_location);
704}
705
706const DexFile* ClassLinker::FindOrCreateOatFileForDexLocationLocked(const std::string& dex_location,
707 const std::string& oat_location) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800708 uint32_t dex_location_checksum;
709 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
710 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
711 return NULL;
712 }
713
714 // Check if we already have an up-to-date output file
715 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
716 dex_location_checksum,
717 oat_location);
718 if (dex_file != NULL) {
719 return dex_file;
720 }
721
722 // Generate the output oat file for the dex file
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800723 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
724 if (file.get() == NULL) {
725 LOG(ERROR) << "Failed to create oat file: " << oat_location;
726 return NULL;
727 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700728 if (!GenerateOatFile(dex_location, file->Fd(), oat_location)) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800729 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
730 return NULL;
731 }
732 // Open the oat from file descriptor we passed to GenerateOatFile
733 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
734 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
735 return NULL;
736 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800737 const OatFile* oat_file =
738 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800739 if (oat_file == NULL) {
740 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
741 return NULL;
742 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700743 RegisterOatFileLocked(*oat_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800744 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
745 if (oat_dex_file == NULL) {
746 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
747 return NULL;
748 }
749 return oat_dex_file->OpenDexFile();
750}
751
Brian Carlstromafe25512012-06-27 17:02:58 -0700752bool ClassLinker::VerifyOatFileChecksums(const OatFile* oat_file,
753 const std::string& dex_location,
754 uint32_t dex_location_checksum) {
755 Runtime* runtime = Runtime::Current();
756 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
757 uint32_t image_checksum = image_header.GetOatChecksum();
758 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700759
Brian Carlstromafe25512012-06-27 17:02:58 -0700760 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
761 if (oat_dex_file == NULL) {
762 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
763 << " does not contain contents for " << dex_location;
764 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
765 for (size_t i = 0; i < oat_dex_files.size(); i++) {
766 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
767 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
768 << " contains contents for " << oat_dex_file->GetDexFileLocation();
769 }
770 return false;
771 }
772 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700773
Brian Carlstromafe25512012-06-27 17:02:58 -0700774 if (image_check && dex_check) {
775 return true;
776 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700777
Brian Carlstromafe25512012-06-27 17:02:58 -0700778 if (!image_check) {
779 std::string image_file(image_header.GetImageRoot(
780 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
781 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
782 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
783 << ") mismatch with " << image_file
784 << " (" << std::hex << image_checksum << ")";
785 }
786 if (!dex_check) {
787 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
788 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
789 << ") mismatch with " << dex_location
790 << " (" << std::hex << dex_location_checksum << ")";
791 }
792 return false;
793}
794
795const DexFile* ClassLinker::VerifyAndOpenDexFileFromOatFile(const OatFile* oat_file,
796 const std::string& dex_location,
797 uint32_t dex_location_checksum) {
798 bool verified = VerifyOatFileChecksums(oat_file, dex_location, dex_location_checksum);
799 if (!verified) {
800 return NULL;
801 }
802 RegisterOatFileLocked(*oat_file);
803 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700804}
805
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800806const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700807 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800808
Brian Carlstroma004aa92012-02-08 18:05:09 -0800809 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800810 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800811 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800812 }
813
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700814 // Look for an existing file next to dex. for example, for
815 // /foo/bar/baz.jar, look for /foo/bar/baz.jar.oat.
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800816 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700817 const OatFile* oat_file = FindOatFileFromOatLocationLocked(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800818 if (oat_file != NULL) {
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700819 uint32_t dex_location_checksum;
820 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
821 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
822 // This is the common case in user builds for jar's and apk's in the /system directory.
823 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
824 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
825 RegisterOatFileLocked(*oat_file);
826 return oat_dex_file->OpenDexFile();
827 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700828 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
829 dex_location,
830 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700831 if (dex_file != NULL) {
832 return dex_file;
833 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800834 }
835 // Look for an existing file in the art-cache, validating the result if found
836 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
837 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700838 oat_file = FindOatFileFromOatLocationLocked(cache_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800839 if (oat_file != NULL) {
840 uint32_t dex_location_checksum;
841 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
842 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
843 return NULL;
844 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700845 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
846 dex_location,
847 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700848 if (dex_file != NULL) {
849 return dex_file;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700850 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800851 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700852 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800853 }
jeffhao262bf462011-10-20 18:36:32 -0700854 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800855 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
856
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800857 // Try to generate oat file if it wasn't found or was obsolete.
858 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700859 return FindOrCreateOatFileForDexLocationLocked(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700860}
861
Brian Carlstromae826982011-11-09 01:33:42 -0800862const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700863 for (size_t i = 0; i < oat_files_.size(); i++) {
864 const OatFile* oat_file = oat_files_[i];
865 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800866 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700867 return oat_file;
868 }
869 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700870 return NULL;
871}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700872
Brian Carlstromae826982011-11-09 01:33:42 -0800873const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800874 MutexLock mu(dex_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700875 return FindOatFileFromOatLocationLocked(oat_location);
876}
877
878const OatFile* ClassLinker::FindOatFileFromOatLocationLocked(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800879 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
880 if (oat_file != NULL) {
881 return oat_file;
882 }
883
Logan Chien0c717dd2012-03-28 18:31:07 +0800884 oat_file = OatFile::Open(oat_location, oat_location, NULL,
885 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700886 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800887 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700888 }
Brian Carlstromae826982011-11-09 01:33:42 -0800889 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700890 return oat_file;
891}
892
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700893void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800894 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700895 CHECK(!init_done_);
896
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800897 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700898 ImageSpace* space = heap->GetImageSpace();
899 OatFile* oat_file = OpenOat(space);
900 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700901 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
Elliott Hughes74847412012-06-20 18:10:21 -0700902 CHECK(oat_file->GetOatHeader().GetImageFileLocation().empty());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700903 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
904 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700905
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700906 // Special case of setting up the String class early so that we can test arbitrary objects
907 // as being Strings or not
908 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
909 ->AsObjectArray<Class>()->Get(kJavaLangString);
910 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800911
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700912 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
913 static_cast<uint32_t>(dex_caches->GetLength()));
914 for (int i = 0; i < dex_caches->GetLength(); i++) {
915 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
916 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
917 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
918 const DexFile* dex_file = oat_dex_file->OpenDexFile();
919 if (dex_file == NULL) {
920 LOG(FATAL) << "Failed to open dex file " << dex_file_location
921 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700922 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700923
924 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
925
926 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700927 }
928
Brian Carlstroma663ea52011-08-19 23:33:41 -0700929 // reinit clases_ table
Mathieu Chartier357e9be2012-08-01 11:00:14 -0700930 {
931 ReaderMutexLock mu(*GlobalSynchronization::heap_bitmap_lock_);
932 heap->FlushAllocStack();
933 const Spaces& vec = heap->GetSpaces();
934 // TODO: C++0x auto
935 for (Spaces::const_iterator it = vec.begin(); it != vec.end(); ++it) {
936 (*it)->GetLiveBitmap()->Walk(InitFromImageCallback, this);
937 }
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700938 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700939
940 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800941 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700942 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700943 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700944
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800945 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700946 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
947 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800948 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700949 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700950 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700951 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
952 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
953 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
954 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
955 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
956 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
957 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
958 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Ian Rogers5167c972012-02-03 10:41:20 -0800959 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700960 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700961
962 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700963
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800964 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700965}
966
Brian Carlstrom78128a62011-09-15 17:21:19 -0700967void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700968 DCHECK(obj != NULL);
969 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700970 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700971
Elliott Hughesdbb40792011-11-18 17:05:22 -0800972 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700973 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700974 return;
975 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700976 if (obj->IsClass()) {
977 // restore class to ClassLinker::classes_ table
978 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800979 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800980 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
981 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700982 return;
983 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700984}
985
986// Keep in sync with InitCallback. Anything we visit, we need to
987// reinit references to when reinitializing a ClassLinker from a
988// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700989void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
990 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700991
Elliott Hughesf8349362012-06-18 15:00:06 -0700992 {
993 MutexLock mu(dex_lock_);
994 for (size_t i = 0; i < dex_caches_.size(); i++) {
995 visitor(dex_caches_[i], arg);
996 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700997 }
998
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700999 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001000 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001001 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001002 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -07001003 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001004 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -07001005
1006 // We deliberately ignore the class roots in the image since we
1007 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001008 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -07001009
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001010 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001011}
1012
Elliott Hughesa2155262011-11-16 16:26:58 -08001013void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001014 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -08001015 typedef Table::const_iterator It; // TODO: C++0x auto
1016 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
1017 if (!visitor(it->second, arg)) {
1018 return;
1019 }
1020 }
1021 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
1022 if (!visitor(it->second, arg)) {
1023 return;
1024 }
1025 }
1026}
1027
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001028static bool GetClassesVisitor(Class* c, void* arg) {
1029 std::set<Class*>* classes = reinterpret_cast<std::set<Class*>*>(arg);
1030 classes->insert(c);
1031 return true;
1032}
1033
1034void ClassLinker::VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg) const {
1035 std::set<Class*> classes;
1036 VisitClasses(GetClassesVisitor, &classes);
1037 typedef std::set<Class*>::const_iterator It; // TODO: C++0x auto
1038 for (It it = classes.begin(), end = classes.end(); it != end; ++it) {
1039 if (!visitor(*it, arg)) {
1040 return;
1041 }
1042 }
1043}
1044
1045
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001046ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001047 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001048 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001049 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001050 BooleanArray::ResetArrayClass();
1051 ByteArray::ResetArrayClass();
1052 CharArray::ResetArrayClass();
1053 DoubleArray::ResetArrayClass();
1054 FloatArray::ResetArrayClass();
1055 IntArray::ResetArrayClass();
1056 LongArray::ResetArrayClass();
1057 ShortArray::ResetArrayClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001058 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001059 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001060 STLDeleteElements(&boot_class_path_);
1061 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001062}
1063
1064DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001065 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1066 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001067 return NULL;
1068 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001069 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1070 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001071 return NULL;
1072 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001073 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1074 if (strings.get() == NULL) {
1075 return NULL;
1076 }
1077 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1078 if (types.get() == NULL) {
1079 return NULL;
1080 }
1081 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1082 if (methods.get() == NULL) {
1083 return NULL;
1084 }
1085 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1086 if (fields.get() == NULL) {
1087 return NULL;
1088 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001089 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1090 if (initialized_static_storage.get() == NULL) {
1091 return NULL;
1092 }
1093
1094 dex_cache->Init(location.get(),
1095 strings.get(),
1096 types.get(),
1097 methods.get(),
1098 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001099 initialized_static_storage.get());
1100 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001101}
1102
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001103InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1104 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001105 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1106 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001107 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001108 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001109}
1110
Brian Carlstrom4873d462011-08-21 15:23:39 -07001111Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1112 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001113 Heap* heap = Runtime::Current()->GetHeap();
1114 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001115 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001116 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001117 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001118}
1119
Brian Carlstrom4873d462011-08-21 15:23:39 -07001120Class* ClassLinker::AllocClass(size_t class_size) {
1121 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001122}
1123
Jesse Wilson35baaab2011-08-10 16:18:03 -04001124Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001125 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001126}
1127
1128Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001129 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001130}
1131
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001132ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1133 return ObjectArray<StackTraceElement>::Alloc(
1134 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1135 length);
1136}
1137
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001138static Class* EnsureResolved(Class* klass)
1139 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001140 DCHECK(klass != NULL);
1141 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001142 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001143 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001144 ObjectLock lock(klass);
1145 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001146 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001147 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001148 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001149 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001150 return NULL;
1151 }
1152 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001153 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001154 lock.Wait();
1155 }
1156 }
1157 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001158 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001159 return NULL;
1160 }
1161 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001162 CHECK(klass->IsResolved()) << PrettyClass(klass);
1163 CHECK(!self->IsExceptionPending())
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001164 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException()) << "\n"
1165 << self->GetException()->Dump();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001166 return klass;
1167}
1168
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001169Class* ClassLinker::FindSystemClass(const char* descriptor) {
1170 return FindClass(descriptor, NULL);
1171}
1172
Ian Rogers365c1022012-06-22 15:05:28 -07001173Class* ClassLinker::FindClass(const char* descriptor, ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001174 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001175 Thread* self = Thread::Current();
1176 DCHECK(self != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001177 self->AssertNoPendingException();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001178 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001179 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1180 // for primitive classes that aren't backed by dex files.
1181 return FindPrimitiveClass(descriptor[0]);
1182 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001183 // Find the class in the loaded classes table.
1184 Class* klass = LookupClass(descriptor, class_loader);
1185 if (klass != NULL) {
1186 return EnsureResolved(klass);
1187 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001188 // Class is not yet loaded.
1189 if (descriptor[0] == '[') {
1190 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001191
Jesse Wilson47daf872011-11-23 11:42:45 -05001192 } else if (class_loader == NULL) {
1193 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1194 if (pair.second != NULL) {
1195 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1196 }
1197
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001198 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001199 // first try the boot class path
1200 Class* system_class = FindSystemClass(descriptor);
1201 if (system_class != NULL) {
1202 return system_class;
1203 }
1204 CHECK(self->IsExceptionPending());
1205 self->ClearException();
1206
1207 // next try the compile time class path
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001208 const std::vector<const DexFile*>* class_path;
1209 {
1210 ScopedObjectAccessUnchecked soa(Thread::Current());
1211 ScopedLocalRef<jobject> jclass_loader(soa.Env(), soa.AddLocalReference<jobject>(class_loader));
1212 class_path = &Runtime::Current()->GetCompileTimeClassPath(jclass_loader.get());
1213 }
1214
1215 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, *class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001216 if (pair.second != NULL) {
1217 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001218 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001219
1220 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001221 ScopedObjectAccessUnchecked soa(self->GetJniEnv());
1222 ScopedLocalRef<jobject> class_loader_object(soa.Env(),
1223 soa.AddLocalReference<jobject>(class_loader));
Elliott Hughes95572412011-12-13 18:14:20 -08001224 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001225 ScopedLocalRef<jobject> result(soa.Env(), NULL);
Ian Rogers365c1022012-06-22 15:05:28 -07001226 {
1227 ScopedThreadStateChange tsc(self, kNative);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001228 ScopedLocalRef<jobject> class_name_object(soa.Env(),
1229 soa.Env()->NewStringUTF(class_name_string.c_str()));
Ian Rogers365c1022012-06-22 15:05:28 -07001230 if (class_name_object.get() == NULL) {
1231 return NULL;
1232 }
1233 CHECK(class_loader_object.get() != NULL);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001234 result.reset(soa.Env()->CallObjectMethod(class_loader_object.get(),
1235 WellKnownClasses::java_lang_ClassLoader_loadClass,
1236 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05001237 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001238 if (soa.Env()->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001239 // If the ClassLoader threw, pass that exception up.
1240 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001241 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001242 // broken loader - throw NPE to be compatible with Dalvik
1243 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1244 class_name_string.c_str());
1245 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001246 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001247 // success, return Class*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001248 return soa.Decode<Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001249 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001250 }
1251
Elliott Hughes82914b62012-04-09 15:56:29 -07001252 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001253 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001254}
1255
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001256Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Ian Rogers365c1022012-06-22 15:05:28 -07001257 ClassLoader* class_loader,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001258 const DexFile& dex_file,
1259 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001260 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001261 // Load the class from the dex file.
1262 if (!init_done_) {
1263 // finish up init of hand crafted class_roots_
1264 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001265 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001266 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001267 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001268 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001269 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001270 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001271 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001272 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001273 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001274 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001275 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001276 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001277 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001278 }
1279 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001280 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001281 }
1282 klass->SetDexCache(FindDexCache(dex_file));
1283 LoadClass(dex_file, dex_class_def, klass, class_loader);
1284 // Check for a pending exception during load
1285 Thread* self = Thread::Current();
1286 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001287 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001288 return NULL;
1289 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001290 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001291 klass->SetClinitThreadId(self->GetTid());
1292 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001293 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1294 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001295 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001296 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001297 }
1298 // Finish loading (if necessary) by finding parents
1299 CHECK(!klass->IsLoaded());
1300 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1301 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001302 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001303 lock.NotifyAll();
1304 return NULL;
1305 }
1306 CHECK(klass->IsLoaded());
1307 // Link the class (if necessary)
1308 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001309 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001310 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001311 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001312 lock.NotifyAll();
1313 return NULL;
1314 }
1315 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001316
1317 /*
1318 * We send CLASS_PREPARE events to the debugger from here. The
1319 * definition of "preparation" is creating the static fields for a
1320 * class and initializing them to the standard default values, but not
1321 * executing any code (that comes later, during "initialization").
1322 *
1323 * We did the static preparation in LinkClass.
1324 *
1325 * The class has been prepared and resolved but possibly not yet verified
1326 * at this point.
1327 */
1328 Dbg::PostClassPrepare(klass.get());
1329
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001330 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001331}
1332
Brian Carlstrom4873d462011-08-21 15:23:39 -07001333// Precomputes size that will be needed for Class, matching LinkStaticFields
1334size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1335 const DexFile::ClassDef& dex_class_def) {
1336 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001337 size_t num_ref = 0;
1338 size_t num_32 = 0;
1339 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001340 if (class_data != NULL) {
1341 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1342 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001343 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001344 char c = descriptor[0];
1345 if (c == 'L' || c == '[') {
1346 num_ref++;
1347 } else if (c == 'J' || c == 'D') {
1348 num_64++;
1349 } else {
1350 num_32++;
1351 }
1352 }
1353 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001354 // start with generic class data
1355 size_t size = sizeof(Class);
1356 // follow with reference fields which must be contiguous at start
1357 size += (num_ref * sizeof(uint32_t));
1358 // if there are 64-bit fields to add, make sure they are aligned
1359 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1360 if (num_32 != 0) {
1361 // use an available 32-bit field for padding
1362 num_32--;
1363 }
1364 size += sizeof(uint32_t); // either way, we are adding a word
1365 DCHECK_EQ(size, RoundUp(size, 8));
1366 }
1367 // tack on any 64-bit fields now that alignment is assured
1368 size += (num_64 * sizeof(uint64_t));
1369 // tack on any remaining 32-bit fields
1370 size += (num_32 * sizeof(uint32_t));
1371 return size;
1372}
1373
Ian Rogers19846512012-02-24 11:42:47 -08001374const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1375 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001376 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1377 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1378 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1379 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1380 uint32_t class_def_index;
1381 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1382 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1383 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1384 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1385 return oat_class;
1386}
1387
TDYa12785321912012-04-01 15:24:56 -07001388const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001389 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001390 // method for direct methods (or virtual methods made direct).
1391 Class* declaring_class = method->GetDeclaringClass();
1392 size_t oat_method_index;
1393 if (method->IsStatic() || method->IsDirect()) {
1394 // Simple case where the oat method index was stashed at load time.
1395 oat_method_index = method->GetMethodIndex();
1396 } else {
1397 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1398 // by search for its position in the declared virtual methods.
1399 oat_method_index = declaring_class->NumDirectMethods();
1400 size_t end = declaring_class->NumVirtualMethods();
1401 bool found = false;
1402 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001403 if (declaring_class->GetVirtualMethod(i) == method) {
1404 found = true;
1405 break;
1406 }
Ian Rogersf320b632012-03-13 18:47:47 -07001407 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001408 }
1409 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1410 }
1411 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001412 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001413 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001414 return oat_class->GetOatMethod(oat_method_index);
1415}
1416
1417// Special case to get oat code without overwriting a trampoline.
1418const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001419 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001420 return GetOatMethodFor(method).GetCode();
1421}
1422
Ian Rogers19846512012-02-24 11:42:47 -08001423void ClassLinker::FixupStaticTrampolines(Class* klass) {
1424 ClassHelper kh(klass);
1425 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1426 CHECK(dex_class_def != NULL);
1427 const DexFile& dex_file = kh.GetDexFile();
1428 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1429 if (class_data == NULL) {
1430 return; // no fields or methods - for example a marker interface
1431 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001432 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001433 // OAT file unavailable
1434 return;
1435 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001436 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1437 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001438 ClassDataItemIterator it(dex_file, class_data);
1439 // Skip fields
1440 while (it.HasNextStaticField()) {
1441 it.Next();
1442 }
1443 while (it.HasNextInstanceField()) {
1444 it.Next();
1445 }
1446 size_t method_index = 0;
1447 // Link the code of methods skipped by LinkCode
1448 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1449 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1450 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001451 if (Runtime::Current()->IsMethodTracingActive()) {
1452 Trace* tracer = Runtime::Current()->GetTracer();
1453 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1454 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1455 tracer->ResetSavedCode(method);
1456 method->SetCode(code);
1457 tracer->SaveAndUpdateCode(method);
1458 }
1459 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001460 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1461 CHECK(code != NULL);
1462 method->SetCode(code);
1463 }
1464 method_index++;
1465 }
1466}
1467
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001468static void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class,
1469 uint32_t method_index)
1470 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001471 // Every kind of method should at least get an invoke stub from the oat_method.
1472 // non-abstract methods also get their code pointers.
1473 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001474 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001475
Ian Rogers19846512012-02-24 11:42:47 -08001476 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001477 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001478 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001479 return;
1480 }
Ian Rogers19846512012-02-24 11:42:47 -08001481
1482 if (method->IsStatic() && !method->IsConstructor()) {
1483 // For static methods excluding the class initializer, install the trampoline
1484 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001485 }
1486 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001487 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001488 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001489 }
1490
1491 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001492 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001493 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001494 }
1495}
1496
Brian Carlstromf615a612011-07-23 12:50:34 -07001497void ClassLinker::LoadClass(const DexFile& dex_file,
1498 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001499 SirtRef<Class>& klass,
Ian Rogers365c1022012-06-22 15:05:28 -07001500 ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001501 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001502 CHECK(klass->GetDexCache() != NULL);
1503 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001504 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001505 CHECK(descriptor != NULL);
1506
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001507 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001508 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001509 // Make sure that none of our runtime-only flags are set.
1510 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001511 klass->SetAccessFlags(access_flags);
1512 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001513 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001514 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001515
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001516 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001517
Ian Rogers0571d352011-11-03 19:51:38 -07001518 // Load fields fields.
1519 const byte* class_data = dex_file.GetClassData(dex_class_def);
1520 if (class_data == NULL) {
1521 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001522 }
Ian Rogers0571d352011-11-03 19:51:38 -07001523 ClassDataItemIterator it(dex_file, class_data);
1524 if (it.NumStaticFields() != 0) {
1525 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1526 }
1527 if (it.NumInstanceFields() != 0) {
1528 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1529 }
1530 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1531 SirtRef<Field> sfield(AllocField());
1532 klass->SetStaticField(i, sfield.get());
1533 LoadField(dex_file, it, klass, sfield);
1534 }
1535 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1536 SirtRef<Field> ifield(AllocField());
1537 klass->SetInstanceField(i, ifield.get());
1538 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001539 }
1540
Brian Carlstromf5822582012-03-19 22:34:31 -07001541 UniquePtr<const OatFile::OatClass> oat_class;
1542 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1543 oat_class.reset(GetOatClass(dex_file, descriptor));
1544 }
Ian Rogers19846512012-02-24 11:42:47 -08001545
Ian Rogers0571d352011-11-03 19:51:38 -07001546 // Load methods.
1547 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001548 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001549 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001550 }
Ian Rogers0571d352011-11-03 19:51:38 -07001551 if (it.NumVirtualMethods() != 0) {
1552 // TODO: append direct methods to class object
1553 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001554 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001555 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001556 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1557 SirtRef<Method> method(AllocMethod());
1558 klass->SetDirectMethod(i, method.get());
1559 LoadMethod(dex_file, it, klass, method);
1560 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001561 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001562 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001563 method->SetMethodIndex(class_def_method_index);
1564 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001565 }
1566 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1567 SirtRef<Method> method(AllocMethod());
1568 klass->SetVirtualMethod(i, method.get());
1569 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001570 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001571 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001572 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001573 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001574 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001575 }
1576 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001577}
1578
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001579void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001580 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001581 uint32_t field_idx = it.GetMemberIndex();
1582 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001583 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001584 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001585}
1586
Ian Rogers0571d352011-11-03 19:51:38 -07001587void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1588 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001589 uint32_t dex_method_idx = it.GetMemberIndex();
1590 dst->SetDexMethodIndex(dex_method_idx);
1591 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001592 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001593
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001594
1595 StringPiece method_name(dex_file.GetMethodName(method_id));
1596 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001597 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1598 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001599
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001600 if (method_name == "finalize") {
1601 // Create the prototype for a signature of "()V"
1602 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1603 if (void_string_id != NULL) {
1604 const DexFile::TypeId* void_type_id =
1605 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1606 if (void_type_id != NULL) {
1607 std::vector<uint16_t> no_args;
1608 const DexFile::ProtoId* finalizer_proto =
1609 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1610 if (finalizer_proto != NULL) {
1611 // We have the prototype in the dex file
1612 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1613 klass->SetFinalizable();
1614 } else {
1615 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1616 // The Enum class declares a "final" finalize() method to prevent subclasses from
1617 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1618 // subclasses, so we exclude it here.
1619 // We also want to avoid setting the flag on Object, where we know that finalize() is
1620 // empty.
1621 if (klass_descriptor != "Ljava/lang/Object;" &&
1622 klass_descriptor != "Ljava/lang/Enum;") {
1623 klass->SetFinalizable();
1624 }
1625 }
1626 }
1627 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001628 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001629 }
Ian Rogers0571d352011-11-03 19:51:38 -07001630 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001631 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001632
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001633 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001634 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001635 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001636 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001637}
1638
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001639void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001640 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1641 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001642}
1643
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001644void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1645 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001646 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001647 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001648}
1649
Brian Carlstromaded5f72011-10-07 17:15:04 -07001650bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001651 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001652 for (size_t i = 0; i != dex_files_.size(); ++i) {
1653 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001654 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001655 }
1656 }
1657 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001658}
1659
Brian Carlstromaded5f72011-10-07 17:15:04 -07001660bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001661 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001662 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001663}
1664
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001665void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001666 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001667 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001668 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001669 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001670 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001671}
1672
Brian Carlstromaded5f72011-10-07 17:15:04 -07001673void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001674 {
1675 MutexLock mu(dex_lock_);
1676 if (IsDexFileRegisteredLocked(dex_file)) {
1677 return;
1678 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001679 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001680 // Don't alloc while holding the lock, since allocation may need to
1681 // suspend all threads and another thread may need the dex_lock_ to
1682 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001683 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001684 {
1685 MutexLock mu(dex_lock_);
1686 if (IsDexFileRegisteredLocked(dex_file)) {
1687 return;
1688 }
1689 RegisterDexFileLocked(dex_file, dex_cache);
1690 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001691}
1692
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001693void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001694 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001695 RegisterDexFileLocked(dex_file, dex_cache);
1696}
1697
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001698const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001699 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001700 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001701 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1702 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001703 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001704 }
1705 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001706 LOG(FATAL) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001707 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001708}
1709
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001710DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001711 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001712 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001713 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001714 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001715 }
1716 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001717 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001718 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001719}
1720
Ian Rogers19846512012-02-24 11:42:47 -08001721void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1722 MutexLock mu(dex_lock_);
1723 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1724 dex_caches_[i]->Fixup(resolution_method);
1725 }
1726}
1727
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001728Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1729 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001730 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001731 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001732 CHECK(primitive_class != NULL);
1733 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001734 primitive_class->SetPrimitiveType(type);
1735 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001736 Class* existing = InsertClass(descriptor, primitive_class, false);
1737 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001738 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001739}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001740
Brian Carlstrombe977852011-07-19 14:54:54 -07001741// Create an array class (i.e. the class object for the array, not the
1742// array itself). "descriptor" looks like "[C" or "[[[[B" or
1743// "[Ljava/lang/String;".
1744//
1745// If "descriptor" refers to an array of primitives, look up the
1746// primitive type's internally-generated class object.
1747//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001748// "class_loader" is the class loader of the class that's referring to
1749// us. It's used to ensure that we're looking for the element type in
1750// the right context. It does NOT become the class loader for the
1751// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001752//
1753// Returns NULL with an exception raised on failure.
Ian Rogers365c1022012-06-22 15:05:28 -07001754Class* ClassLinker::CreateArrayClass(const std::string& descriptor, ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001755 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001756
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001757 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001758 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001759 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001760 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001761 return NULL;
1762 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001763
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001764 // See if the component type is already loaded. Array classes are
1765 // always associated with the class loader of their underlying
1766 // element type -- an array of Strings goes with the loader for
1767 // java/lang/String -- so we need to look for it there. (The
1768 // caller should have checked for the existence of the class
1769 // before calling here, but they did so with *their* class loader,
1770 // not the component type's loader.)
1771 //
1772 // If we find it, the caller adds "loader" to the class' initiating
1773 // loader list, which should prevent us from going through this again.
1774 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001775 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001776 // are the same, because our caller (FindClass) just did the
1777 // lookup. (Even if we get this wrong we still have correct behavior,
1778 // because we effectively do this lookup again when we add the new
1779 // class to the hash table --- necessary because of possible races with
1780 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001781 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001782 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001783 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001784 return new_class;
1785 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001786 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001787
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001788 // Fill out the fields in the Class.
1789 //
1790 // It is possible to execute some methods against arrays, because
1791 // all arrays are subclasses of java_lang_Object_, so we need to set
1792 // up a vtable. We can just point at the one in java_lang_Object_.
1793 //
1794 // Array classes are simple enough that we don't need to do a full
1795 // link step.
1796
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001797 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001798 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001799 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001800 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001801 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001802 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001803 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001804 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001805 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001806 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001807 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001808 }
1809 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001810 if (new_class.get() == NULL) {
1811 new_class.reset(AllocClass(sizeof(Class)));
1812 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001813 return NULL;
1814 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001815 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001816 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001817 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001818 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001819 new_class->SetSuperClass(java_lang_Object);
1820 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001821 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001822 new_class->SetClassLoader(component_type->GetClassLoader());
1823 new_class->SetStatus(Class::kStatusInitialized);
1824 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001825 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001826
1827
1828 // All arrays have java/lang/Cloneable and java/io/Serializable as
1829 // interfaces. We need to set that up here, so that stuff like
1830 // "instanceof" works right.
1831 //
1832 // Note: The GC could run during the call to FindSystemClass,
1833 // so we need to make sure the class object is GC-valid while we're in
1834 // there. Do this by clearing the interface list so the GC will just
1835 // think that the entries are null.
1836
1837
1838 // Use the single, global copies of "interfaces" and "iftable"
1839 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001840 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001841 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001842
1843 // Inherit access flags from the component type. Arrays can't be
1844 // used as a superclass or interface, so we want to add "final"
1845 // and remove "interface".
1846 //
1847 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001848 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001849 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001850 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1851 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001852
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001853 Class* existing = InsertClass(descriptor, new_class.get(), false);
1854 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001855 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001856 }
1857 // Another thread must have loaded the class after we
1858 // started but before we finished. Abandon what we've
1859 // done.
1860 //
1861 // (Yes, this happens.)
1862
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001863 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001864}
1865
1866Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001867 switch (Primitive::GetType(type)) {
1868 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001869 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001870 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001871 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001872 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001873 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001874 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001875 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001876 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001877 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001878 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001879 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001880 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001881 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001882 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001883 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001884 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001885 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001886 case Primitive::kPrimNot:
1887 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001888 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001889 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001890 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001891 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001892}
1893
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001894Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001895 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001896 DexCache* dex_cache = klass->GetDexCache();
1897 std::string source;
1898 if (dex_cache != NULL) {
1899 source += " from ";
1900 source += dex_cache->GetLocation()->ToModifiedUtf8();
1901 }
1902 LOG(INFO) << "Loaded class " << descriptor << source;
1903 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001904 size_t hash = StringPieceHash()(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001905 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001906 Table& classes = image_class ? image_classes_ : classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001907 Class* existing = LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, classes);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001908#ifndef NDEBUG
1909 // Check we don't have the class in the other table in error
1910 Table& other_classes = image_class ? classes_ : image_classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001911 CHECK(LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001912#endif
1913 if (existing != NULL) {
1914 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001915 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001916 classes.insert(std::make_pair(hash, klass));
1917 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001918}
1919
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001920bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1921 size_t hash = Hash(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001922 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001923 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001924 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001925 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001926 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001927 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001928 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001929 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001930 classes_.erase(it);
1931 return true;
1932 }
1933 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001934 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001935 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001936 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001937 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001938 image_classes_.erase(it);
1939 return true;
1940 }
1941 }
1942 return false;
1943}
1944
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001945Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1946 size_t hash = Hash(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001947 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001948 // TODO: determine if its better to search classes_ or image_classes_ first
Elliott Hughesf8349362012-06-18 15:00:06 -07001949 Class* klass = LookupClassLocked(descriptor, class_loader, hash, classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001950 if (klass != NULL) {
1951 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001952 }
Elliott Hughesf8349362012-06-18 15:00:06 -07001953 return LookupClassLocked(descriptor, class_loader, hash, image_classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001954}
1955
Elliott Hughesf8349362012-06-18 15:00:06 -07001956Class* ClassLinker::LookupClassLocked(const char* descriptor, const ClassLoader* class_loader,
1957 size_t hash, const Table& classes) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001958 ClassHelper kh(NULL, this);
1959 typedef Table::const_iterator It; // TODO: C++0x auto
1960 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001961 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001962 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001963 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001964#ifndef NDEBUG
1965 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001966 Class* klass2 = it->second;
1967 kh.ChangeClass(klass2);
1968 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001969 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001970 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001971 }
1972#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001973 return klass;
1974 }
1975 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001976 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001977}
1978
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001979void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001980 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001981 size_t hash = Hash(descriptor);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001982 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001983 typedef Table::const_iterator It; // TODO: C++0x auto
1984 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001985 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001986 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001987 Class* klass = it->second;
1988 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001989 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001990 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001991 }
1992 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001993 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001994 Class* klass = it->second;
1995 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001996 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001997 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001998 }
1999 }
2000}
2001
TDYa1273db52852012-04-01 15:11:43 -07002002#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002003static void CheckMethodsHaveGcMaps(Class* klass)
2004 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08002005 if (!Runtime::Current()->IsStarted()) {
2006 return;
2007 }
2008 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2009 Method* method = klass->GetDirectMethod(i);
2010 if (!method->IsNative() && !method->IsAbstract()) {
2011 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
2012 }
2013 }
2014 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2015 Method* method = klass->GetVirtualMethod(i);
2016 if (!method->IsNative() && !method->IsAbstract()) {
2017 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
2018 }
2019 }
2020}
2021#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002022static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08002023}
2024#endif
2025
jeffhao98eacac2011-09-14 16:11:53 -07002026void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002027 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08002028 ObjectLock lock(klass);
2029
jeffhao98eacac2011-09-14 16:11:53 -07002030 if (klass->IsVerified()) {
2031 return;
2032 }
2033
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002034 // The class might already be erroneous if we attempted to verify a subclass
2035 if (klass->IsErroneous()) {
2036 ThrowEarlierClassFailure(klass);
2037 return;
2038 }
2039
jeffhaoa9b3bf42012-06-06 17:18:39 -07002040 CHECK(klass->GetStatus() == Class::kStatusResolved ||
2041 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07002042 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07002043
Ian Rogers1c5eb702012-02-01 09:18:34 -08002044 // Verify super class
2045 Class* super = klass->GetSuperClass();
2046 std::string error_msg;
2047 if (super != NULL) {
2048 // Acquire lock to prevent races on verifying the super class
2049 ObjectLock lock(super);
2050
2051 if (!super->IsVerified() && !super->IsErroneous()) {
2052 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2053 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002054 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08002055 error_msg = "Rejecting class ";
2056 error_msg += PrettyDescriptor(klass);
2057 error_msg += " that attempts to sub-class erroneous class ";
2058 error_msg += PrettyDescriptor(super);
2059 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2060 Thread* self = Thread::Current();
2061 SirtRef<Throwable> cause(self->GetException());
2062 if (cause.get() != NULL) {
2063 self->ClearException();
2064 }
2065 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2066 if (cause.get() != NULL) {
2067 self->GetException()->SetCause(cause.get());
2068 }
2069 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2070 klass->SetStatus(Class::kStatusError);
2071 return;
2072 }
2073 }
2074
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002075 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002076 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002077 Class::Status oat_file_class_status(Class::kStatusNotReady);
2078 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002079 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
2080 if (!preverified) {
2081 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2082 }
2083 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002084 if (!preverified && oat_file_class_status == Class::kStatusError) {
2085 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2086 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2087 }
Ian Rogers529781d2012-07-23 17:24:29 -07002088 if (!preverified && verifier_failure != verifier::MethodVerifier::kNoFailure) {
2089 LOG(WARNING) << "Soft verification failure in class " << PrettyDescriptor(klass)
2090 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2091 << " because: " << error_msg;
2092 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002093 Thread::Current()->AssertNoPendingException();
jeffhaof1e6b7c2012-06-05 18:33:30 -07002094 CHECK(verifier_failure == verifier::MethodVerifier::kNoFailure ||
2095 Runtime::Current()->IsCompiler());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002096 // Make sure all classes referenced by catch blocks are resolved
2097 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002098 klass->SetStatus(verifier_failure == verifier::MethodVerifier::kNoFailure ?
2099 Class::kStatusVerified : Class::kStatusRetryVerificationAtRuntime);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002100 // Sanity check that a verified class has GC maps on all methods
2101 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002102 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002103 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002104 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2105 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002106 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002107 self->AssertNoPendingException();
Ian Rogers1c5eb702012-02-01 09:18:34 -08002108 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2109 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002110 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002111 }
jeffhao98eacac2011-09-14 16:11:53 -07002112}
2113
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002114bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2115 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002116 if (!Runtime::Current()->IsStarted()) {
2117 return false;
2118 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002119 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002120 return false;
2121 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002122 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2123 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002124 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002125 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002126 const char* descriptor = ClassHelper(klass).GetDescriptor();
2127 uint32_t class_def_index;
2128 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002129 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002130 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002131 CHECK(oat_class.get() != NULL)
2132 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002133 oat_file_class_status = oat_class->GetStatus();
2134 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002135 return true;
2136 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002137 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002138 // Compile time verification failed with a soft error. Compile time verification can fail
2139 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002140 // class ... {
2141 // Foo x;
2142 // .... () {
2143 // if (...) {
2144 // v1 gets assigned a type of resolved class Foo
2145 // } else {
2146 // v1 gets assigned a type of unresolved class Bar
2147 // }
2148 // iput x = v1
2149 // } }
2150 // when we merge v1 following the if-the-else it results in Conflict
2151 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2152 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2153 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2154 // at compile time).
2155 return false;
2156 }
jeffhao1ac29442012-03-26 11:37:32 -07002157 if (oat_file_class_status == Class::kStatusError) {
2158 // Compile time verification failed with a hard error. This is caused by invalid instructions
2159 // in the class. These errors are unrecoverable.
2160 return false;
2161 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002162 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002163 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2164 // not loading the class.
2165 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2166 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002167 return false;
2168 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002169 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002170 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2171
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002172 return false;
2173}
2174
2175void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2176 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2177 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2178 }
2179 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2180 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2181 }
2182}
2183
2184void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2185 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2186 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2187 if (code_item == NULL) {
2188 return; // native or abstract method
2189 }
2190 if (code_item->tries_size_ == 0) {
2191 return; // nothing to process
2192 }
2193 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2194 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2195 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2196 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2197 CatchHandlerIterator iterator(handlers_ptr);
2198 for (; iterator.HasNext(); iterator.Next()) {
2199 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2200 // unresolved exception types will be ignored by exception delivery
2201 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2202 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2203 if (exception_type == NULL) {
2204 DCHECK(Thread::Current()->IsExceptionPending());
2205 Thread::Current()->ClearException();
2206 }
2207 }
2208 }
2209 handlers_ptr = iterator.EndDataPointer();
2210 }
2211}
2212
Ian Rogersc2b44472011-12-14 21:17:17 -08002213static void CheckProxyConstructor(Method* constructor);
2214static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2215
Jesse Wilson95caa792011-10-12 18:14:17 -04002216Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002217 ClassLoader* loader, ObjectArray<Method>* methods,
2218 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002219 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002220 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002221 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002222 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002223 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002224 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002225 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002226 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002227 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002228 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002229
2230 klass->SetStatus(Class::kStatusIdx);
2231
2232 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2233
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002234 // Instance fields are inherited, but we add a couple of static fields...
2235 klass->SetSFields(AllocObjectArray<Field>(2));
2236 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2237 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2238 SirtRef<Field> interfaces_sfield(AllocField());
2239 klass->SetStaticField(0, interfaces_sfield.get());
2240 interfaces_sfield->SetDexFieldIndex(0);
2241 interfaces_sfield->SetDeclaringClass(klass.get());
2242 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2243 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2244 SirtRef<Field> throws_sfield(AllocField());
2245 klass->SetStaticField(1, throws_sfield.get());
2246 throws_sfield->SetDexFieldIndex(1);
2247 throws_sfield->SetDeclaringClass(klass.get());
2248 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002249
Ian Rogers466bb252011-10-14 03:29:56 -07002250 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002251 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002252 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002253
Ian Rogers466bb252011-10-14 03:29:56 -07002254 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002255 size_t num_virtual_methods = methods->GetLength();
2256 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2257 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002258 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002259 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002260 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002261
2262 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2263 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2264 DCHECK(!Thread::Current()->IsExceptionPending());
2265
2266 // Link the fields and virtual methods, creating vtable and iftables
2267 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002268 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002269 return NULL;
2270 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002271 interfaces_sfield->SetObject(NULL, interfaces);
2272 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002273 klass->SetStatus(Class::kStatusInitialized);
2274
2275 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002276 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002277 CHECK(klass->GetIFields() == NULL);
2278 CheckProxyConstructor(klass->GetDirectMethod(0));
2279 for (size_t i = 0; i < num_virtual_methods; ++i) {
2280 SirtRef<Method> prototype(methods->Get(i));
2281 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2282 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002283
2284 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2285 name->ToModifiedUtf8().c_str()));
2286 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2287
2288 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2289 name->ToModifiedUtf8().c_str()));
2290 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002291
2292 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002293 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002294 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2295 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002296 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002297}
2298
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002299std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2300 DCHECK(proxy_class->IsProxyClass());
2301 String* name = proxy_class->GetName();
2302 DCHECK(name != NULL);
2303 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2304}
2305
Ian Rogers16f93672012-02-14 12:29:06 -08002306Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2307 DCHECK(proxy_class->IsProxyClass());
2308 DCHECK(proxy_method->IsProxyMethod());
2309 // Locate the dex cache of the original interface/Object
2310 DexCache* dex_cache = NULL;
2311 {
2312 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2313 MutexLock mu(dex_lock_);
2314 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2315 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2316 dex_cache = dex_caches_[i];
2317 break;
2318 }
2319 }
2320 }
2321 CHECK(dex_cache != NULL);
2322 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2323 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2324 CHECK(resolved_method != NULL);
2325 return resolved_method;
2326}
2327
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002328
2329Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002330 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002331 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002332 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002333 Method* proxy_constructor = proxy_direct_methods->Get(2);
2334 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2335 // code_ too)
2336 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2337 // Make this constructor public and fix the class to be our Proxy version
2338 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002339 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002340 return constructor;
2341}
2342
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002343static void CheckProxyConstructor(Method* constructor)
2344 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002345 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002346 MethodHelper mh(constructor);
2347 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002348 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002349 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002350}
2351
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002352Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2353 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2354 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002355 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2356 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002357 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002358 // as necessary
2359 Method* method = down_cast<Method*>(prototype->Clone());
2360
2361 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2362 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002363 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002364 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002365
Ian Rogers466bb252011-10-14 03:29:56 -07002366 // At runtime the method looks like a reference and argument saving method, clone the code
2367 // related parameters from this method.
2368 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2369 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2370 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2371 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002372#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002373 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002374#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002375 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2376 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002377#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002378
Ian Rogersc2b44472011-12-14 21:17:17 -08002379 return method;
2380}
Jesse Wilson95caa792011-10-12 18:14:17 -04002381
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002382static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype)
2383 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07002384 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002385 CHECK(!prototype->IsFinal());
2386 CHECK(method->IsFinal());
2387 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002388
2389 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2390 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2391 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2392 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2393 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2394 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2395 method->GetDexCacheInitializedStaticStorage());
2396 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2397
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002398 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002399 MethodHelper mh2(prototype.get());
2400 CHECK_STREQ(mh.GetName(), mh2.GetName());
2401 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002402 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002403 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002404}
2405
Ian Rogers0045a292012-03-31 21:08:41 -07002406bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002407 CHECK(klass->IsResolved() || klass->IsErroneous())
2408 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002409
Carl Shapirob5573532011-07-12 18:22:59 -07002410 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002411
Brian Carlstrom25c33252011-09-18 15:58:35 -07002412 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002413 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002414 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002415 ObjectLock lock(klass);
2416
Brian Carlstromd1422f82011-09-28 11:37:09 -07002417 if (klass->GetStatus() == Class::kStatusInitialized) {
2418 return true;
2419 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002420
Brian Carlstromd1422f82011-09-28 11:37:09 -07002421 if (klass->IsErroneous()) {
2422 ThrowEarlierClassFailure(klass);
2423 return false;
2424 }
2425
jeffhaoebe2e0f2012-06-06 15:19:40 -07002426 if (klass->GetStatus() == Class::kStatusResolved ||
2427 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002428 VerifyClass(klass);
2429 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002430 if (klass->GetStatus() == Class::kStatusError) {
2431 CHECK(self->IsExceptionPending());
2432 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002433 return false;
2434 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002435 }
2436
Brian Carlstrom25c33252011-09-18 15:58:35 -07002437 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2438 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002439 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002440 // don't bother going to kStatusInitializing. We return false so that
2441 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002442 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2443 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002444 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002445 }
2446
Brian Carlstromd1422f82011-09-28 11:37:09 -07002447 // If the class is kStatusInitializing, either this thread is
2448 // initializing higher up the stack or another thread has beat us
2449 // to initializing and we need to wait. Either way, this
2450 // invocation of InitializeClass will not be responsible for
2451 // running <clinit> and will return.
2452 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002453 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002454 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002455 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002456 return true;
2457 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002458 // No. That's fine. Wait for another thread to finish initializing.
2459 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002460 }
2461
2462 if (!ValidateSuperClassDescriptors(klass)) {
2463 klass->SetStatus(Class::kStatusError);
2464 return false;
2465 }
2466
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002467 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002468
Elliott Hughesdcc24742011-09-07 14:02:44 -07002469 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002470 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002471 }
2472
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002473 uint64_t t0 = NanoTime();
2474
Ian Rogers0045a292012-03-31 21:08:41 -07002475 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002476 // Super class initialization failed, this can be because we can't run
2477 // super-class class initializers in which case we'll be verified.
2478 // Otherwise this class is erroneous.
2479 if (!can_run_clinit) {
2480 CHECK(klass->IsVerified());
2481 } else {
2482 CHECK(klass->IsErroneous());
2483 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002484 return false;
2485 }
2486
Ian Rogers0045a292012-03-31 21:08:41 -07002487 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002488
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002489 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002490 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002491 }
2492
Ian Rogers19846512012-02-24 11:42:47 -08002493 FixupStaticTrampolines(klass);
2494
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002495 uint64_t t1 = NanoTime();
2496
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002497 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002498 {
2499 ObjectLock lock(klass);
2500
2501 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002502 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002503 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002504 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002505 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002506 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2507 RuntimeStats* thread_stats = self->GetStats();
2508 ++global_stats->class_init_count;
2509 ++thread_stats->class_init_count;
2510 global_stats->class_init_time_ns += (t1 - t0);
2511 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002512 // Set the class as initialized except if we can't initialize static fields and static field
2513 // initialization is necessary.
2514 if (!can_init_statics && has_static_field_initializers) {
2515 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2516 success = false;
2517 } else {
2518 klass->SetStatus(Class::kStatusInitialized);
2519 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002520 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002521 ClassHelper kh(klass);
2522 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002523 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002524 }
2525 lock.NotifyAll();
2526 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002527 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002528}
2529
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002530bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock)
2531 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002532 while (true) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002533 self->AssertNoPendingException();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002534 lock.Wait();
2535
2536 // When we wake up, repeat the test for init-in-progress. If
2537 // there's an exception pending (only possible if
2538 // "interruptShouldThrow" was set), bail out.
2539 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002540 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002541 klass->SetStatus(Class::kStatusError);
2542 return false;
2543 }
2544 // Spurious wakeup? Go back to waiting.
2545 if (klass->GetStatus() == Class::kStatusInitializing) {
2546 continue;
2547 }
2548 if (klass->IsErroneous()) {
2549 // The caller wants an exception, but it was thrown in a
2550 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002551 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002552 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002553 return false;
2554 }
2555 if (klass->IsInitialized()) {
2556 return true;
2557 }
2558 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2559 }
2560 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2561}
2562
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002563bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2564 if (klass->IsInterface()) {
2565 return true;
2566 }
2567 // begin with the methods local to the superclass
2568 if (klass->HasSuperClass() &&
2569 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2570 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002571 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2572 const Method* method = klass->GetVTable()->Get(i);
2573 if (method != super->GetVTable()->Get(i) &&
2574 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002575 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2576 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2577 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002578 return false;
2579 }
2580 }
2581 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002582 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2583 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2584 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002585 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2586 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002587 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002588 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2589 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002590 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2591 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2592 PrettyMethod(method).c_str(),
2593 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002594 return false;
2595 }
2596 }
2597 }
2598 }
2599 return true;
2600}
2601
Ian Rogers595799e2012-01-11 17:32:51 -08002602// Returns true if classes referenced by the signature of the method are the
2603// same classes in klass1 as they are in klass2.
2604bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2605 const Class* klass1,
2606 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002607 if (klass1 == klass2) {
2608 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002609 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002610 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002611 const DexFile::ProtoId& proto_id =
2612 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002613 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2614 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002615 if (descriptor == NULL) {
2616 break;
2617 }
2618 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2619 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002620 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002621 return false;
2622 }
2623 }
2624 }
2625 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002626 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002627 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002628 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002629 return false;
2630 }
2631 }
2632 return true;
2633}
2634
Ian Rogers595799e2012-01-11 17:32:51 -08002635// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2636bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2637 const Class* klass1,
2638 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002639 CHECK(descriptor != NULL);
2640 CHECK(klass1 != NULL);
2641 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002642 if (klass1 == klass2) {
2643 return true;
2644 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002645 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002646 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002647 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002648 }
Ian Rogers595799e2012-01-11 17:32:51 -08002649 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2650 if (found2 == NULL) {
2651 Thread::Current()->ClearException();
2652 }
2653 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002654}
2655
Ian Rogers0045a292012-03-31 21:08:41 -07002656bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002657 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002658 if (!klass->IsInterface() && klass->HasSuperClass()) {
2659 Class* super_class = klass->GetSuperClass();
2660 if (super_class->GetStatus() != Class::kStatusInitialized) {
2661 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002662 Thread* self = Thread::Current();
2663 klass->MonitorEnter(self);
Ian Rogers0045a292012-03-31 21:08:41 -07002664 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Elliott Hughes5f791332011-09-15 17:45:30 -07002665 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002666 // TODO: check for a pending exception
2667 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002668 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002669 // Don't set status to error when we can't run <clinit>.
2670 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2671 klass->SetStatus(Class::kStatusVerified);
2672 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002673 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002674 klass->SetStatus(Class::kStatusError);
2675 klass->NotifyAll();
2676 return false;
2677 }
2678 }
2679 }
2680 return true;
2681}
2682
Ian Rogers0045a292012-03-31 21:08:41 -07002683bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002684 CHECK(c != NULL);
2685 if (c->IsInitialized()) {
2686 return true;
2687 }
2688
Elliott Hughes5f791332011-09-15 17:45:30 -07002689 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002690 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002691 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002692 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002693 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002694 }
2695 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002696}
2697
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002698void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002699 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Ian Rogers365c1022012-06-22 15:05:28 -07002700 ClassLoader* cl = c->GetClassLoader();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002701 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002702 ClassDataItemIterator it(dex_file, class_data);
2703 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002704 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002705 }
2706}
2707
Ian Rogers0045a292012-03-31 21:08:41 -07002708bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002709 size_t num_static_fields = klass->NumStaticFields();
2710 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002711 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002712 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002713 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002714 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002715 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002716 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002717 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002718 ClassHelper kh(klass);
2719 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002720 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002721 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002722 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002723
Ian Rogers0571d352011-11-03 19:51:38 -07002724 if (it.HasNext()) {
2725 // 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 -07002726 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002727 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2728 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002729 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002730 }
Ian Rogers0045a292012-03-31 21:08:41 -07002731 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002732 }
Ian Rogers0045a292012-03-31 21:08:41 -07002733 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002734}
2735
Ian Rogersc2b44472011-12-14 21:17:17 -08002736bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002737 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002738 if (!LinkSuperClass(klass)) {
2739 return false;
2740 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002741 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002742 return false;
2743 }
2744 if (!LinkInstanceFields(klass)) {
2745 return false;
2746 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002747 if (!LinkStaticFields(klass)) {
2748 return false;
2749 }
2750 CreateReferenceInstanceOffsets(klass);
2751 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002752 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2753 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002754 return true;
2755}
2756
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002757bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002758 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002759 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2760 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002761 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002762 uint16_t super_class_idx = class_def->superclass_idx_;
2763 if (super_class_idx != DexFile::kDexNoIndex16) {
2764 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002765 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002766 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002767 return false;
2768 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002769 // Verify
2770 if (!klass->CanAccess(super_class)) {
2771 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2772 "Class %s extended by class %s is inaccessible",
2773 PrettyDescriptor(super_class).c_str(),
2774 PrettyDescriptor(klass.get()).c_str());
2775 return false;
2776 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002777 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002778 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002779 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2780 if (interfaces != NULL) {
2781 for (size_t i = 0; i < interfaces->Size(); i++) {
2782 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2783 Class* interface = ResolveType(dex_file, idx, klass.get());
2784 if (interface == NULL) {
2785 DCHECK(Thread::Current()->IsExceptionPending());
2786 return false;
2787 }
2788 // Verify
2789 if (!klass->CanAccess(interface)) {
2790 // TODO: the RI seemed to ignore this in my testing.
2791 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2792 "Interface %s implemented by class %s is inaccessible",
2793 PrettyDescriptor(interface).c_str(),
2794 PrettyDescriptor(klass.get()).c_str());
2795 return false;
2796 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002797 }
2798 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002799 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002800 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002801 return true;
2802}
2803
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002804bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002805 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002806 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002807 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002808 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002809 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002810 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002811 return false;
2812 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002813 return true;
2814 }
2815 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002816 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002817 return false;
2818 }
2819 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002820 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002821 Thread* self = Thread::Current();
2822 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002823 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002824 PrettyDescriptor(super).c_str(),
2825 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002826 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002827 return false;
2828 }
2829 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002830 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002831 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002832 PrettyDescriptor(super).c_str(),
2833 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002834 return false;
2835 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002836
2837 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2838 if (super->IsFinalizable()) {
2839 klass->SetFinalizable();
2840 }
2841
Elliott Hughes2da50362011-10-10 16:57:08 -07002842 // Inherit reference flags (if any) from the superclass.
2843 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2844 if (reference_flags != 0) {
2845 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2846 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002847 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002848 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002849 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002850 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002851 return false;
2852 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002853
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002854#ifndef NDEBUG
2855 // Ensure super classes are fully resolved prior to resolving fields..
2856 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002857 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002858 super = super->GetSuperClass();
2859 }
2860#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002861 return true;
2862}
2863
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002864// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002865bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002866 if (klass->IsInterface()) {
2867 // No vtable.
2868 size_t count = klass->NumVirtualMethods();
2869 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002870 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002871 return false;
2872 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002873 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002874 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002875 }
jeffhaobdb76512011-09-07 11:43:16 -07002876 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002877 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002878 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002879 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002880 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002881 }
2882 return true;
2883}
2884
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002885bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002886 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002887 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2888 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002889 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002890 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002891 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002892 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002893 MethodHelper local_mh(NULL, this);
2894 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002895 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002896 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002897 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002898 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002899 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002900 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002901 super_mh.ChangeMethod(super_method);
Elliott Hughes39717372012-07-13 16:21:23 -07002902 if (local_mh.HasSameNameAndSignature(&super_mh)) {
2903 if (klass->CanAccessMember(super_method->GetDeclaringClass(), super_method->GetAccessFlags())) {
2904 if (super_method->IsFinal()) {
2905 ThrowLinkageError("Method %s overrides final method in class %s",
2906 PrettyMethod(local_method).c_str(),
2907 super_mh.GetDeclaringClassDescriptor());
2908 return false;
2909 }
2910 vtable->Set(j, local_method);
2911 local_method->SetMethodIndex(j);
2912 break;
2913 } else {
2914 LOG(WARNING) << "Before Android 4.1, method " << PrettyMethod(local_method)
2915 << " would have incorrectly overridden the package-private method in "
2916 << PrettyDescriptor(super_mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002917 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002918 }
2919 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002920 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002921 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002922 vtable->Set(actual_count, local_method);
2923 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002924 actual_count += 1;
2925 }
2926 }
2927 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002928 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002929 return false;
2930 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002931 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002932 CHECK_LE(actual_count, max_count);
2933 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002934 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002935 }
Ian Rogers30fab402012-01-23 15:43:46 -08002936 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002937 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002938 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002939 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002940 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002941 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002942 return false;
2943 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002944 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002945 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002946 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2947 vtable->Set(i, virtual_method);
2948 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002949 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002950 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002951 }
2952 return true;
2953}
2954
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002955bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002956 size_t super_ifcount;
2957 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002958 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002959 } else {
2960 super_ifcount = 0;
2961 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002962 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002963 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07002964 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002965 ifcount += num_interfaces;
2966 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002967 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002968 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002969 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002970 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002971 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002972 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002973 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002974 return true;
2975 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002976 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002977 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002978 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2979 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002980 Class* super_interface = super_iftable->Get(i)->GetInterface();
2981 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002982 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002983 }
2984 // Flatten the interface inheritance hierarchy.
2985 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002986 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002987 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002988 DCHECK(interface != NULL);
2989 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002990 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002991 Thread* self = Thread::Current();
2992 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002993 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002994 PrettyDescriptor(klass.get()).c_str(),
2995 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002996 return false;
2997 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002998 // Check if interface is already in iftable
2999 bool duplicate = false;
3000 for (size_t j = 0; j < idx; j++) {
3001 Class* existing_interface = iftable->Get(j)->GetInterface();
3002 if (existing_interface == interface) {
3003 duplicate = true;
3004 break;
3005 }
3006 }
3007 if (!duplicate) {
3008 // Add this non-duplicate interface.
3009 iftable->Set(idx++, AllocInterfaceEntry(interface));
3010 // Add this interface's non-duplicate super-interfaces.
3011 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
3012 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
3013 bool super_duplicate = false;
3014 for (size_t k = 0; k < idx; k++) {
3015 Class* existing_interface = iftable->Get(k)->GetInterface();
3016 if (existing_interface == super_interface) {
3017 super_duplicate = true;
3018 break;
3019 }
3020 }
3021 if (!super_duplicate) {
3022 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
3023 }
3024 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003025 }
3026 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08003027 // Shrink iftable in case duplicates were found
3028 if (idx < ifcount) {
3029 iftable.reset(iftable->CopyOf(idx));
3030 ifcount = idx;
3031 } else {
3032 CHECK_EQ(idx, ifcount);
3033 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003034 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07003035
3036 // If we're an interface, we don't need the vtable pointers, so we're done.
3037 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003038 return true;
3039 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003040 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003041 MethodHelper vtable_mh(NULL, this);
3042 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003043 for (size_t i = 0; i < ifcount; ++i) {
3044 InterfaceEntry* interface_entry = iftable->Get(i);
3045 Class* interface = interface_entry->GetInterface();
3046 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
3047 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003048 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003049 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
3050 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003051 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003052 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07003053 // For each method listed in the interface's method list, find the
3054 // matching method in our class's method list. We want to favor the
3055 // subclass over the superclass, which just requires walking
3056 // back from the end of the vtable. (This only matters if the
3057 // superclass defines a private method and this class redefines
3058 // it -- otherwise it would use the same vtable slot. In .dex files
3059 // those don't end up in the virtual method table, so it shouldn't
3060 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003061 for (k = vtable->GetLength() - 1; k >= 0; --k) {
3062 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003063 vtable_mh.ChangeMethod(vtable_method);
3064 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07003065 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07003066 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003067 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003068 return false;
3069 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003070 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003071 break;
3072 }
3073 }
3074 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003075 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003076 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003077 Method* mir_method = miranda_list[mir];
3078 vtable_mh.ChangeMethod(mir_method);
3079 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003080 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003081 break;
3082 }
3083 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003084 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003085 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003086 miranda_method.reset(AllocMethod());
3087 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3088 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003089 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003090 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003091 }
3092 }
3093 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003094 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003095 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003096 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003097 klass->SetVirtualMethods((old_method_count == 0)
3098 ? AllocObjectArray<Method>(new_method_count)
3099 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003100
Ian Rogers30fab402012-01-23 15:43:46 -08003101 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3102 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003103 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003104 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003105 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003106 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003107 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003108 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003109 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3110 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3111 klass->SetVirtualMethod(old_method_count + i, method);
3112 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003113 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003114 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003115 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003116 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003117
3118 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3119 for (int i = 0; i < vtable->GetLength(); ++i) {
3120 CHECK(vtable->Get(i) != NULL);
3121 }
3122
3123// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3124
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003125 return true;
3126}
3127
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003128bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3129 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003130 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003131}
3132
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003133bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3134 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003135 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003136 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003137 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003138 return success;
3139}
3140
Brian Carlstromdbc05252011-09-09 01:59:59 -07003141struct LinkFieldsComparator {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003142 explicit LinkFieldsComparator(FieldHelper* fh)
3143 SHARED_LOCKS_REQUIRED(GlobalSynchronization::mutator_lock_)
3144 : fh_(fh) {}
3145 // No thread safety analysis as will be called from STL. Checked lock held in constructor.
3146 bool operator()(const Field* field1, const Field* field2) NO_THREAD_SAFETY_ANALYSIS {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003147 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003148 fh_->ChangeField(field1);
3149 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3150 fh_->ChangeField(field2);
3151 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003152 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3153 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3154 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3155 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003156 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3157 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3158 if (order1 != order2) {
3159 return order1 < order2;
3160 }
3161
3162 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003163 fh_->ChangeField(field1);
3164 StringPiece name1(fh_->GetName());
3165 fh_->ChangeField(field2);
3166 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003167 return name1 < name2;
3168 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003169
3170 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003171};
3172
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003173bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003174 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003175 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003176
3177 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003178 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003179
3180 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003181 size_t size;
3182 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003183 if (is_static) {
3184 size = klass->GetClassSize();
3185 field_offset = Class::FieldsOffset();
3186 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003187 Class* super_class = klass->GetSuperClass();
3188 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003189 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003190 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003191 }
3192 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003193 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003194
Brian Carlstromdbc05252011-09-09 01:59:59 -07003195 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003196
Brian Carlstromdbc05252011-09-09 01:59:59 -07003197 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003198 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003199 std::deque<Field*> grouped_and_sorted_fields;
3200 for (size_t i = 0; i < num_fields; i++) {
3201 grouped_and_sorted_fields.push_back(fields->Get(i));
3202 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003203 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003204 std::sort(grouped_and_sorted_fields.begin(),
3205 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003206 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003207
3208 // References should be at the front.
3209 size_t current_field = 0;
3210 size_t num_reference_fields = 0;
3211 for (; current_field < num_fields; current_field++) {
3212 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003213 fh.ChangeField(field);
3214 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003215 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003216 if (isPrimitive) {
3217 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003218 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003219 grouped_and_sorted_fields.pop_front();
3220 num_reference_fields++;
3221 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003222 field->SetOffset(field_offset);
3223 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003224 }
3225
3226 // Now we want to pack all of the double-wide fields together. If
3227 // we're not aligned, though, we want to shuffle one 32-bit field
3228 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003229 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003230 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3231 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003232 fh.ChangeField(field);
3233 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003234 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3235 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003236 continue;
3237 }
3238 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003239 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003240 // drop the consumed field
3241 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3242 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003243 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003244 // whether we found a 32-bit field for padding or not, we advance
3245 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003246 }
3247
3248 // Alignment is good, shuffle any double-wide fields forward, and
3249 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003250 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003251 while (!grouped_and_sorted_fields.empty()) {
3252 Field* field = grouped_and_sorted_fields.front();
3253 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003254 fh.ChangeField(field);
3255 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003256 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003257 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003258 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003259 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003260 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003261 ? sizeof(uint64_t)
3262 : sizeof(uint32_t)));
3263 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003264 }
3265
Elliott Hughesadb460d2011-10-05 17:02:34 -07003266 // 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 -08003267 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3268 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003269 // We know there are no non-reference fields in the Reference classes, and we know
3270 // that 'referent' is alphabetically last, so this is easy...
3271 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003272 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003273 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003274 --num_reference_fields;
3275 }
3276
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003277#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003278 // Make sure that all reference fields appear before
3279 // non-reference fields, and all double-wide fields are aligned.
3280 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003281 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003282 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003283 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003284 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003285 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003286 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003287 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3288 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003289 fh.ChangeField(field);
3290 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003291 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003292 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003293 is_primitive = true; // We lied above, so we have to expect a lie here.
3294 }
3295 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003296 if (!seen_non_ref) {
3297 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003298 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003299 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003300 } else {
3301 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003302 }
3303 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003304 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003305 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003306 }
3307#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003308 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003309 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003310 if (is_static) {
3311 klass->SetNumReferenceStaticFields(num_reference_fields);
3312 klass->SetClassSize(size);
3313 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003314 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003315 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003316 klass->SetObjectSize(size);
3317 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003318 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003319 return true;
3320}
3321
3322// Set the bitmap of reference offsets, refOffsets, from the ifields
3323// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003324void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003325 uint32_t reference_offsets = 0;
3326 Class* super_class = klass->GetSuperClass();
3327 if (super_class != NULL) {
3328 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003329 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003330 if (reference_offsets == CLASS_WALK_SUPER) {
3331 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003332 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003333 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003334 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003335 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003336}
3337
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003338void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003339 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003340}
3341
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003342void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003343 uint32_t reference_offsets) {
3344 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003345 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3346 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003347 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003348 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003349 // All of the fields that contain object references are guaranteed
3350 // to be at the beginning of the fields list.
3351 for (size_t i = 0; i < num_reference_fields; ++i) {
3352 // Note that byte_offset is the offset from the beginning of
3353 // object, not the offset into instance data
3354 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003355 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003356 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3357 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3358 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003359 CHECK_NE(new_bit, 0U);
3360 reference_offsets |= new_bit;
3361 } else {
3362 reference_offsets = CLASS_WALK_SUPER;
3363 break;
3364 }
3365 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003366 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003367 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003368 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003369 } else {
3370 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003371 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003372}
3373
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003374String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003375 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003376 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003377 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003378 if (resolved != NULL) {
3379 return resolved;
3380 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003381 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3382 int32_t utf16_length = dex_file.GetStringLength(string_id);
3383 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003384 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003385 dex_cache->SetResolvedString(string_idx, string);
3386 return string;
3387}
3388
3389Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003390 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003391 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003392 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003393 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003394 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003395 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003396 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003397 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003398 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003399 // TODO: we used to throw here if resolved's class loader was not the
3400 // boot class loader. This was to permit different classes with the
3401 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003402 dex_cache->SetResolvedType(type_idx, resolved);
3403 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003404 CHECK(Thread::Current()->IsExceptionPending())
3405 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003406 // Convert a ClassNotFoundException to a NoClassDefFoundError
3407 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3408 Thread::Current()->ClearException();
3409 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3410 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003411 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003412 }
3413 return resolved;
3414}
3415
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003416Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3417 uint32_t method_idx,
3418 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003419 ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003420 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003421 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003422 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3423 if (resolved != NULL) {
3424 return resolved;
3425 }
3426 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3427 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3428 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003429 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003430 return NULL;
3431 }
3432
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003433 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003434 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003435 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003436 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003437 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003438 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003439 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003440
3441 if (resolved == NULL) {
3442 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3443 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3444 if (is_direct) {
3445 resolved = klass->FindDirectMethod(name, signature);
3446 } else if (klass->IsInterface()) {
3447 resolved = klass->FindInterfaceMethod(name, signature);
3448 } else {
3449 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003450 // If a virtual method isn't found, search the direct methods. This can
3451 // happen when trying to access private methods directly, and allows the
3452 // proper exception to be thrown in the caller.
3453 if (resolved == NULL) {
3454 resolved = klass->FindDirectMethod(name, signature);
3455 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003456 }
3457 if (resolved == NULL) {
3458 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3459 return NULL;
3460 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003461 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003462 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003463 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003464}
3465
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003466Field* ClassLinker::ResolveField(const DexFile& dex_file,
3467 uint32_t field_idx,
3468 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003469 ClassLoader* class_loader,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003470 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003471 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003472 Field* resolved = dex_cache->GetResolvedField(field_idx);
3473 if (resolved != NULL) {
3474 return resolved;
3475 }
3476 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3477 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3478 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003479 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003480 return NULL;
3481 }
3482
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003483 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003484 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003485 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003486 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003487 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003488
3489 if (resolved == NULL) {
3490 const char* name = dex_file.GetFieldName(field_id);
3491 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3492 if (is_static) {
3493 resolved = klass->FindStaticField(name, type);
3494 } else {
3495 resolved = klass->FindInstanceField(name, type);
3496 }
3497 if (resolved == NULL) {
3498 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3499 return NULL;
3500 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003501 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003502 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003503 return resolved;
3504}
3505
3506Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3507 uint32_t field_idx,
3508 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003509 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003510 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003511 Field* resolved = dex_cache->GetResolvedField(field_idx);
3512 if (resolved != NULL) {
3513 return resolved;
3514 }
3515 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3516 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3517 if (klass == NULL) {
3518 DCHECK(Thread::Current()->IsExceptionPending());
3519 return NULL;
3520 }
3521
3522 const char* name = dex_file.GetFieldName(field_id);
3523 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3524 resolved = klass->FindField(name, type);
3525 if (resolved != NULL) {
3526 dex_cache->SetResolvedField(field_idx, resolved);
3527 } else {
3528 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003529 }
3530 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003531}
3532
Ian Rogers19846512012-02-24 11:42:47 -08003533const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003534 Class* declaring_class = referrer->GetDeclaringClass();
3535 DexCache* dex_cache = declaring_class->GetDexCache();
3536 const DexFile& dex_file = FindDexFile(dex_cache);
3537 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003538 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003539}
3540
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003541void ClassLinker::DumpAllClasses(int flags) const {
3542 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3543 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3544 std::vector<Class*> all_classes;
3545 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003546 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003547 typedef Table::const_iterator It; // TODO: C++0x auto
3548 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3549 all_classes.push_back(it->second);
3550 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003551 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3552 all_classes.push_back(it->second);
3553 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003554 }
3555
3556 for (size_t i = 0; i < all_classes.size(); ++i) {
3557 all_classes[i]->DumpClass(std::cerr, flags);
3558 }
3559}
3560
Elliott Hughescac6cc72011-11-03 20:31:21 -07003561void ClassLinker::DumpForSigQuit(std::ostream& os) const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003562 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -07003563 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3564 << classes_.size() << " allocated classes\n";
3565}
3566
Elliott Hughese27955c2011-08-26 15:21:24 -07003567size_t ClassLinker::NumLoadedClasses() const {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003568 MutexLock mu(*GlobalSynchronization::classlinker_classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003569 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003570}
3571
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003572pid_t ClassLinker::GetClassesLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003573 return GlobalSynchronization::classlinker_classes_lock_->GetExclusiveOwnerTid();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003574}
3575
3576pid_t ClassLinker::GetDexLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003577 return dex_lock_.GetExclusiveOwnerTid();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003578}
3579
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003580void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3581 DCHECK(!init_done_);
3582
3583 DCHECK(klass != NULL);
3584 DCHECK(klass->GetClassLoader() == NULL);
3585
3586 DCHECK(class_roots_ != NULL);
3587 DCHECK(class_roots_->Get(class_root) == NULL);
3588 class_roots_->Set(class_root, klass);
3589}
3590
Logan Chien0c717dd2012-03-28 18:31:07 +08003591void ClassLinker::RelocateExecutable() {
Elliott Hughesf8349362012-06-18 15:00:06 -07003592 MutexLock mu(dex_lock_);
Logan Chien0c717dd2012-03-28 18:31:07 +08003593 for (size_t i = 0; i < oat_files_.size(); ++i) {
3594 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3595 }
3596}
3597
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003598} // namespace art