blob: dfed6f7a9ba27efbb73742bcd4a0fd42d489832f [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
Ian Rogers365c1022012-06-22 15:05:28 -070048#include "scoped_jni_thread_state.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070049#include "ScopedLocalRef.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
Elliott Hughes0512f022012-03-15 22:10:52 -070061static void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
62static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070063 va_list args;
64 va_start(args, fmt);
65 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
66 va_end(args);
67}
68
Elliott Hughes0512f022012-03-15 22:10:52 -070069static void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
70static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070071 va_list args;
72 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070073 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070074 va_end(args);
75}
76
Elliott Hughes0512f022012-03-15 22:10:52 -070077static void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
78static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070079 va_list args;
80 va_start(args, fmt);
81 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
82 va_end(args);
83}
84
Elliott Hughes0512f022012-03-15 22:10:52 -070085static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
86 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080087 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070088 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080089 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080090 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080091 std::string location(kh.GetLocation());
92 if (!location.empty()) {
93 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070094 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070095 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070096}
97
Elliott Hughes0512f022012-03-15 22:10:52 -070098static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
99 const StringPiece& name) {
Ian Rogers9f1ab122011-12-12 08:52:43 -0800100 ClassHelper kh(c);
101 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -0800102 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -0800103 << " in class " << kh.GetDescriptor() << " or its superclasses";
104 std::string location(kh.GetLocation());
105 if (!location.empty()) {
106 msg << " (defined in " << location << ")";
107 }
108 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
109}
110
Elliott Hughes0512f022012-03-15 22:10:52 -0700111static void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
112static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800113 va_list args;
114 va_start(args, fmt);
115 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
116 va_end(args);
117}
118
Elliott Hughes0512f022012-03-15 22:10:52 -0700119static void ThrowEarlierClassFailure(Class* c) {
Elliott Hughes5c599942012-06-13 16:45:05 -0700120 // The class failed to initialize on a previous attempt, so we want to throw
121 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
122 // failed in verification, in which case v2 5.4.1 says we need to re-throw
123 // the previous error.
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700124 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
125
Elliott Hughes5c599942012-06-13 16:45:05 -0700126 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700127 if (c->GetVerifyErrorClass() != NULL) {
128 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800129 ClassHelper ve_ch(c->GetVerifyErrorClass());
130 std::string error_descriptor(ve_ch.GetDescriptor());
131 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700132 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800133 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700134 }
135}
136
Elliott Hughes0512f022012-03-15 22:10:52 -0700137static void WrapExceptionInInitializer() {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700138 Thread* self = Thread::Current();
139 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700140
141 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
142 CHECK(cause.get() != NULL);
143
144 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700145 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
146 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700147
Elliott Hughesa4f94742012-05-29 16:28:38 -0700148 // We only wrap non-Error exceptions; an Error can just be used as-is.
149 if (!is_error) {
150 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", NULL);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700151 }
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700152}
153
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800154static size_t Hash(const char* s) {
155 // This is the java.lang.String hashcode for convenience, not interoperability.
156 size_t hash = 0;
157 for (; *s != '\0'; ++s) {
158 hash = hash * 31 + *s;
159 }
160 return hash;
161}
162
Elliott Hughes418d20f2011-09-22 14:00:39 -0700163const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700164 "Ljava/lang/Class;",
165 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700166 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700167 "[Ljava/lang/Object;",
168 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700169 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700170 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700171 "Ljava/lang/reflect/Field;",
172 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700173 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700174 "Ljava/lang/ClassLoader;",
175 "Ldalvik/system/BaseDexClassLoader;",
176 "Ldalvik/system/PathClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800177 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800178 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700179 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700180 "Z",
181 "B",
182 "C",
183 "D",
184 "F",
185 "I",
186 "J",
187 "S",
188 "V",
189 "[Z",
190 "[B",
191 "[C",
192 "[D",
193 "[F",
194 "[I",
195 "[J",
196 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700197 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700198};
199
Brian Carlstroma004aa92012-02-08 18:05:09 -0800200ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
201 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700202 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800203 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800204 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700205 return class_linker.release();
206}
207
Brian Carlstroma004aa92012-02-08 18:05:09 -0800208ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800209 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700210 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700211 return class_linker.release();
212}
213
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800214ClassLinker::ClassLinker(InternTable* intern_table)
215 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700216 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700217 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700218 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700219 init_done_(false),
220 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700221 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700222}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700223
Brian Carlstroma004aa92012-02-08 18:05:09 -0800224void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
225 VLOG(startup) << "ClassLinker::Init";
226 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700227
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700228 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700229
Elliott Hughes30646832011-10-13 16:59:46 -0700230 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800231 Heap* heap = Runtime::Current()->GetHeap();
232 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700233 CHECK(java_lang_Class.get() != NULL);
234 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700235 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700236 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700237
Elliott Hughes418d20f2011-09-22 14:00:39 -0700238 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700239 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
240 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700241
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700242 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700243 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
244 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700245 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700246 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700247 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700248
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700249 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700250 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
251 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700252
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700253 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700254 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700255
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700256 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700257 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
258 char_array_class->SetComponentType(char_class.get());
259 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700260
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700261 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700262 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
263 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700264 java_lang_String->SetObjectSize(sizeof(String));
265 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400266
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700267 // Create storage for root classes, save away our work so far (requires
268 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700269 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700270 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700271 SetClassRoot(kJavaLangClass, java_lang_Class.get());
272 SetClassRoot(kJavaLangObject, java_lang_Object.get());
273 SetClassRoot(kClassArrayClass, class_array_class.get());
274 SetClassRoot(kObjectArrayClass, object_array_class.get());
275 SetClassRoot(kCharArrayClass, char_array_class.get());
276 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700277
278 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700279 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
280 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
281 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
282 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
283 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
284 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
285 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
286 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700287
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700288 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700289 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700290
291 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700292 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700293 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700294 IntArray::SetArrayClass(int_array_class.get());
295 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700296
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700297 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700298
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700299 // setup boot_class_path_ and register class_path now that we can
300 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800301 CHECK_NE(0U, boot_class_path.size());
302 for (size_t i = 0; i != boot_class_path.size(); ++i) {
303 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700304 CHECK(dex_file != NULL);
305 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700306 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700307
Elliott Hughes80609252011-09-23 17:24:51 -0700308 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700309 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700310 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700311 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700312 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700313 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
314
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700315 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
316 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700317 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700319 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700321
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700322 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700323 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700324 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700325 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700326 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700327 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700328
329 // now we can use FindSystemClass
330
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700331 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700332 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700333 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700334
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700335 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700336 java_lang_Object->SetStatus(Class::kStatusNotReady);
337 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700338 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700339 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
340 java_lang_String->SetStatus(Class::kStatusNotReady);
341 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700342 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700343 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
344
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700345 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700346 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
347 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
348
349 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
350 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
351
352 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700353 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700354
355 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
356 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
357
358 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700359 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700360
361 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
362 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
363
364 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
365 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
366
367 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
368 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
369
Elliott Hughes418d20f2011-09-22 14:00:39 -0700370 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700371 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700372
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700373 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700374 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700375
376 // Setup the single, global copies of "interfaces" and "iftable"
377 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
378 CHECK(java_lang_Cloneable != NULL);
379 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
380 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700381 // We assume that Cloneable/Serializable don't have superinterfaces --
382 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700383 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800384 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
385 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700386
Elliott Hughes418d20f2011-09-22 14:00:39 -0700387 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800388 ClassHelper kh(class_array_class.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -0700389 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
390 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800391 kh.ChangeClass(object_array_class.get());
Ian Rogersd24e2642012-06-06 21:21:43 -0700392 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
393 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700394 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700395 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700396 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700397 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700398
Elliott Hughes80609252011-09-23 17:24:51 -0700399 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
400 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700401 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700402
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700403 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700404 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700405 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700406
407 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700408 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700409 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700410
Ian Rogers466bb252011-10-14 03:29:56 -0700411 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
412
413 // Create java.lang.reflect.Proxy root
414 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
415 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
416
Brian Carlstrom1f870082011-08-23 16:02:11 -0700417 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700418 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
419 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700420 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700421 java_lang_ref_FinalizerReference->SetAccessFlags(
422 java_lang_ref_FinalizerReference->GetAccessFlags() |
423 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700424 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700425 java_lang_ref_PhantomReference->SetAccessFlags(
426 java_lang_ref_PhantomReference->GetAccessFlags() |
427 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700428 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700429 java_lang_ref_SoftReference->SetAccessFlags(
430 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700431 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700432 java_lang_ref_WeakReference->SetAccessFlags(
433 java_lang_ref_WeakReference->GetAccessFlags() |
434 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700435
Brian Carlstromaded5f72011-10-07 17:15:04 -0700436 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700438 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700439 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
440
441 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
442 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
443 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
444
445 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
446 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
447 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
448 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
449
jeffhao8cd6dda2012-02-22 10:15:34 -0800450 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
451 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800452 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
453 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800454 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700455 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
456 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700457 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700458
Brian Carlstroma663ea52011-08-19 23:33:41 -0700459 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700460
Brian Carlstroma004aa92012-02-08 18:05:09 -0800461 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700462}
463
464void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800465 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700466
467 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700468 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700469 // as the types of the field can't be resolved prior to the runtime being
470 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700471 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700472 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700473 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
474
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800475 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
476
Brian Carlstrom16192862011-09-12 17:50:06 -0700477 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800478 FieldHelper fh(pendingNext, this);
479 CHECK_STREQ(fh.GetName(), "pendingNext");
480 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
481 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700482
483 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800484 fh.ChangeField(queue);
485 CHECK_STREQ(fh.GetName(), "queue");
486 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
487 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700488
489 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800490 fh.ChangeField(queueNext);
491 CHECK_STREQ(fh.GetName(), "queueNext");
492 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
493 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700494
495 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800496 fh.ChangeField(referent);
497 CHECK_STREQ(fh.GetName(), "referent");
498 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
499 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700500
501 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800502 fh.ChangeField(zombie);
503 CHECK_STREQ(fh.GetName(), "zombie");
504 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
505 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700506
Elliott Hughesa4f94742012-05-29 16:28:38 -0700507 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800508 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700509 queue->GetOffset(),
510 queueNext->GetOffset(),
511 pendingNext->GetOffset(),
512 zombie->GetOffset());
513
Brian Carlstroma663ea52011-08-19 23:33:41 -0700514 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700515 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700516 ClassRoot class_root = static_cast<ClassRoot>(i);
517 Class* klass = GetClassRoot(class_root);
518 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700519 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700520 // note SetClassRoot does additional validation.
521 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700522 }
523
Elliott Hughes92f14b22011-10-06 12:29:54 -0700524 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700525
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700526 // disable the slow paths in FindClass and CreatePrimitiveClass now
527 // that Object, Class, and Object[] are setup
528 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700529
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800530 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700531}
532
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700533void ClassLinker::RunRootClinits() {
534 Thread* self = Thread::Current();
535 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
536 Class* c = GetClassRoot(ClassRoot(i));
537 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700538 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700539 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700540 }
541 }
542}
543
Brian Carlstromd601af82012-01-06 10:15:19 -0800544bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
545 int oat_fd,
546 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800547 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700548 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800549 const char* dex2oat = dex2oat_string.c_str();
550
Brian Carlstroma004aa92012-02-08 18:05:09 -0800551 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800552
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800553 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800554 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700555 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800556 const char* boot_image_option = boot_image_option_string.c_str();
557
558 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800559 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800560 const char* dex_file_option = dex_file_option_string.c_str();
561
Brian Carlstromd601af82012-01-06 10:15:19 -0800562 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800563 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800564 const char* oat_fd_option = oat_fd_option_string.c_str();
565
Brian Carlstroma004aa92012-02-08 18:05:09 -0800566 std::string oat_location_option_string("--oat-location=");
567 oat_location_option_string += oat_cache_filename;
568 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800569
jeffhao262bf462011-10-20 18:36:32 -0700570 // fork and exec dex2oat
571 pid_t pid = fork();
572 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800573 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800574
575 // change process groups, so we don't get reaped by ProcessManager
576 setpgid(0, 0);
577
jeffhao10037c82012-01-23 15:06:23 -0800578 VLOG(class_linker) << dex2oat
579 << " --runtime-arg -Xms64m"
580 << " --runtime-arg -Xmx64m"
581 << " --runtime-arg -classpath"
582 << " --runtime-arg " << class_path
583 << " " << boot_image_option
584 << " " << dex_file_option
585 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800586 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800587
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800588 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700589 "--runtime-arg", "-Xms64m",
590 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500591 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800592 "--runtime-arg", class_path,
593 boot_image_option,
594 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800595 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800596 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700597 NULL);
598
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800599 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800600 return false;
jeffhao262bf462011-10-20 18:36:32 -0700601 } else {
602 // wait for dex2oat to finish
603 int status;
604 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
605 if (got_pid != pid) {
606 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800607 return false;
jeffhao262bf462011-10-20 18:36:32 -0700608 }
609 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800610 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
611 return false;
jeffhao262bf462011-10-20 18:36:32 -0700612 }
613 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800614 return true;
jeffhao262bf462011-10-20 18:36:32 -0700615}
616
Brian Carlstrom866c8622012-01-06 16:35:13 -0800617void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
618 MutexLock mu(dex_lock_);
619 RegisterOatFileLocked(oat_file);
620}
621
622void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
623 dex_lock_.AssertHeld();
624 oat_files_.push_back(&oat_file);
625}
626
Ian Rogers30fab402012-01-23 15:43:46 -0800627OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700628 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700629 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700630 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800631 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
632 // check the down cast
633 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700634 std::string oat_filename;
635 oat_filename += runtime->GetHostPrefix();
636 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800637 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
638 image_header.GetOatBegin(),
639 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800640 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700641 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700642 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700643 return NULL;
644 }
645 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
646 uint32_t image_oat_checksum = image_header.GetOatChecksum();
647 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800648 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700649 << " to expected oat checksum " << std::hex << oat_checksum
650 << " in image";
651 return NULL;
652 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800653 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800654 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700655 return oat_file;
656}
657
Brian Carlstromae826982011-11-09 01:33:42 -0800658const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800659 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800660}
661
Brian Carlstroma004aa92012-02-08 18:05:09 -0800662const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700663 MutexLock mu(dex_lock_);
Brian Carlstromae826982011-11-09 01:33:42 -0800664 for (size_t i = 0; i < oat_files_.size(); i++) {
665 const OatFile* oat_file = oat_files_[i];
666 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800667 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800668 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800669 return oat_file;
670 }
671 }
672 return NULL;
673}
674
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800675static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
676 uint32_t dex_location_checksum,
677 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800678 UniquePtr<OatFile> oat_file(
679 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800680 if (oat_file.get() == NULL) {
681 return NULL;
682 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700683 Runtime* runtime = Runtime::Current();
684 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
685 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
686 return NULL;
687 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800688 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
689 if (oat_dex_file == NULL) {
690 return NULL;
691 }
692 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
693 return NULL;
694 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700695 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800696 return oat_dex_file->OpenDexFile();
697}
698
699const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
700 const std::string& oat_location) {
701 uint32_t dex_location_checksum;
702 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
703 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
704 return NULL;
705 }
706
707 // Check if we already have an up-to-date output file
708 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
709 dex_location_checksum,
710 oat_location);
711 if (dex_file != NULL) {
712 return dex_file;
713 }
714
715 // Generate the output oat file for the dex file
716 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
717 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
718 if (file.get() == NULL) {
719 LOG(ERROR) << "Failed to create oat file: " << oat_location;
720 return NULL;
721 }
722 if (!class_linker->GenerateOatFile(dex_location, file->Fd(), oat_location)) {
723 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
724 return NULL;
725 }
726 // Open the oat from file descriptor we passed to GenerateOatFile
727 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
728 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
729 return NULL;
730 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800731 const OatFile* oat_file =
732 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800733 if (oat_file == NULL) {
734 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
735 return NULL;
736 }
737 class_linker->RegisterOatFile(*oat_file);
738 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
739 if (oat_dex_file == NULL) {
740 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
741 return NULL;
742 }
743 return oat_dex_file->OpenDexFile();
744}
745
Brian Carlstromafe25512012-06-27 17:02:58 -0700746bool ClassLinker::VerifyOatFileChecksums(const OatFile* oat_file,
747 const std::string& dex_location,
748 uint32_t dex_location_checksum) {
749 Runtime* runtime = Runtime::Current();
750 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
751 uint32_t image_checksum = image_header.GetOatChecksum();
752 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700753
Brian Carlstromafe25512012-06-27 17:02:58 -0700754 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
755 if (oat_dex_file == NULL) {
756 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
757 << " does not contain contents for " << dex_location;
758 std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles();
759 for (size_t i = 0; i < oat_dex_files.size(); i++) {
760 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
761 LOG(ERROR) << ".oat file " << oat_file->GetLocation()
762 << " contains contents for " << oat_dex_file->GetDexFileLocation();
763 }
764 return false;
765 }
766 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700767
Brian Carlstromafe25512012-06-27 17:02:58 -0700768 if (image_check && dex_check) {
769 return true;
770 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700771
Brian Carlstromafe25512012-06-27 17:02:58 -0700772 if (!image_check) {
773 std::string image_file(image_header.GetImageRoot(
774 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
775 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
776 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
777 << ") mismatch with " << image_file
778 << " (" << std::hex << image_checksum << ")";
779 }
780 if (!dex_check) {
781 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
782 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
783 << ") mismatch with " << dex_location
784 << " (" << std::hex << dex_location_checksum << ")";
785 }
786 return false;
787}
788
789const DexFile* ClassLinker::VerifyAndOpenDexFileFromOatFile(const OatFile* oat_file,
790 const std::string& dex_location,
791 uint32_t dex_location_checksum) {
792 bool verified = VerifyOatFileChecksums(oat_file, dex_location, dex_location_checksum);
793 if (!verified) {
794 return NULL;
795 }
796 RegisterOatFileLocked(*oat_file);
797 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700798}
799
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800800const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700801 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800802
Brian Carlstroma004aa92012-02-08 18:05:09 -0800803 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800804 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800805 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800806 }
807
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700808 // Look for an existing file next to dex. for example, for
809 // /foo/bar/baz.jar, look for /foo/bar/baz.jar.oat.
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800810 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800811 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800812 if (oat_file != NULL) {
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700813 uint32_t dex_location_checksum;
814 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
815 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
816 // This is the common case in user builds for jar's and apk's in the /system directory.
817 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
818 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
819 RegisterOatFileLocked(*oat_file);
820 return oat_dex_file->OpenDexFile();
821 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700822 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
823 dex_location,
824 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700825 if (dex_file != NULL) {
826 return dex_file;
827 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800828 }
829 // Look for an existing file in the art-cache, validating the result if found
830 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
831 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
832 oat_file = FindOatFileFromOatLocation(cache_location);
833 if (oat_file != NULL) {
834 uint32_t dex_location_checksum;
835 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
836 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
837 return NULL;
838 }
Brian Carlstromafe25512012-06-27 17:02:58 -0700839 const DexFile* dex_file = VerifyAndOpenDexFileFromOatFile(oat_file,
840 dex_location,
841 dex_location_checksum);
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700842 if (dex_file != NULL) {
843 return dex_file;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700844 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800845 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700846 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800847 }
jeffhao262bf462011-10-20 18:36:32 -0700848 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800849 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
850
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800851 // Try to generate oat file if it wasn't found or was obsolete.
852 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
853 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700854}
855
Brian Carlstromae826982011-11-09 01:33:42 -0800856const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700857 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700858 for (size_t i = 0; i < oat_files_.size(); i++) {
859 const OatFile* oat_file = oat_files_[i];
860 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800861 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700862 return oat_file;
863 }
864 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700865 return NULL;
866}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700867
Brian Carlstromae826982011-11-09 01:33:42 -0800868const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800869 MutexLock mu(dex_lock_);
870 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
871 if (oat_file != NULL) {
872 return oat_file;
873 }
874
Logan Chien0c717dd2012-03-28 18:31:07 +0800875 oat_file = OatFile::Open(oat_location, oat_location, NULL,
876 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700877 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800878 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700879 }
Brian Carlstromae826982011-11-09 01:33:42 -0800880 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700881 return oat_file;
882}
883
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700884void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800885 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700886 CHECK(!init_done_);
887
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800888 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700889 ImageSpace* space = heap->GetImageSpace();
890 OatFile* oat_file = OpenOat(space);
891 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700892 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
Elliott Hughes74847412012-06-20 18:10:21 -0700893 CHECK(oat_file->GetOatHeader().GetImageFileLocation().empty());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700894 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
895 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700896
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700897 // Special case of setting up the String class early so that we can test arbitrary objects
898 // as being Strings or not
899 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
900 ->AsObjectArray<Class>()->Get(kJavaLangString);
901 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800902
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700903 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
904 static_cast<uint32_t>(dex_caches->GetLength()));
905 for (int i = 0; i < dex_caches->GetLength(); i++) {
906 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
907 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
908 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
909 const DexFile* dex_file = oat_dex_file->OpenDexFile();
910 if (dex_file == NULL) {
911 LOG(FATAL) << "Failed to open dex file " << dex_file_location
912 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700913 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700914
915 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
916
917 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700918 }
919
Brian Carlstroma663ea52011-08-19 23:33:41 -0700920 // reinit clases_ table
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700921 const Spaces& vec = heap->GetSpaces();
922 for (Spaces::const_iterator cur = vec.begin(); cur != vec.end(); ++cur) {
923 (*cur)->GetLiveBitmap()->Walk(InitFromImageCallback, this);
924 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700925
926 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800927 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700928 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700929 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700930
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800931 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700932 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
933 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800934 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700935 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700936 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700937 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
938 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
939 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
940 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
941 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
942 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
943 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
944 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700945 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Ian Rogers5167c972012-02-03 10:41:20 -0800946 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700947 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700948
949 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700950
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800951 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700952}
953
Brian Carlstrom78128a62011-09-15 17:21:19 -0700954void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700955 DCHECK(obj != NULL);
956 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700957 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700958
Elliott Hughesdbb40792011-11-18 17:05:22 -0800959 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700960 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700961 return;
962 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700963 if (obj->IsClass()) {
964 // restore class to ClassLinker::classes_ table
965 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800966 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800967 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
968 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700969 return;
970 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700971}
972
973// Keep in sync with InitCallback. Anything we visit, we need to
974// reinit references to when reinitializing a ClassLinker from a
975// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700976void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
977 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700978
Elliott Hughesf8349362012-06-18 15:00:06 -0700979 {
980 MutexLock mu(dex_lock_);
981 for (size_t i = 0; i < dex_caches_.size(); i++) {
982 visitor(dex_caches_[i], arg);
983 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700984 }
985
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700986 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700987 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700988 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700989 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700990 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700991 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700992
993 // We deliberately ignore the class roots in the image since we
994 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700995 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700996
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700997 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700998}
999
Elliott Hughesa2155262011-11-16 16:26:58 -08001000void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
1001 MutexLock mu(classes_lock_);
1002 typedef Table::const_iterator It; // TODO: C++0x auto
1003 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
1004 if (!visitor(it->second, arg)) {
1005 return;
1006 }
1007 }
1008 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
1009 if (!visitor(it->second, arg)) {
1010 return;
1011 }
1012 }
1013}
1014
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001015ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001016 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001017 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -07001018 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001019 BooleanArray::ResetArrayClass();
1020 ByteArray::ResetArrayClass();
1021 CharArray::ResetArrayClass();
1022 DoubleArray::ResetArrayClass();
1023 FloatArray::ResetArrayClass();
1024 IntArray::ResetArrayClass();
1025 LongArray::ResetArrayClass();
1026 ShortArray::ResetArrayClass();
1027 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001028 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001029 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001030 STLDeleteElements(&boot_class_path_);
1031 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001032}
1033
1034DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001035 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1036 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001037 return NULL;
1038 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001039 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1040 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001041 return NULL;
1042 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001043 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1044 if (strings.get() == NULL) {
1045 return NULL;
1046 }
1047 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1048 if (types.get() == NULL) {
1049 return NULL;
1050 }
1051 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1052 if (methods.get() == NULL) {
1053 return NULL;
1054 }
1055 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1056 if (fields.get() == NULL) {
1057 return NULL;
1058 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001059 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1060 if (initialized_static_storage.get() == NULL) {
1061 return NULL;
1062 }
1063
1064 dex_cache->Init(location.get(),
1065 strings.get(),
1066 types.get(),
1067 methods.get(),
1068 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001069 initialized_static_storage.get());
1070 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001071}
1072
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001073InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1074 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001075 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1076 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001077 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001078 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001079}
1080
Brian Carlstrom4873d462011-08-21 15:23:39 -07001081Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1082 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001083 Heap* heap = Runtime::Current()->GetHeap();
1084 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001085 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001086 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001087 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001088}
1089
Brian Carlstrom4873d462011-08-21 15:23:39 -07001090Class* ClassLinker::AllocClass(size_t class_size) {
1091 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001092}
1093
Jesse Wilson35baaab2011-08-10 16:18:03 -04001094Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001095 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001096}
1097
1098Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001099 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001100}
1101
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001102ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1103 return ObjectArray<StackTraceElement>::Alloc(
1104 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1105 length);
1106}
1107
Elliott Hughes5c599942012-06-13 16:45:05 -07001108static Class* EnsureResolved(Class* klass) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001109 DCHECK(klass != NULL);
1110 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001111 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001112 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001113 ObjectLock lock(klass);
1114 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001115 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001116 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001117 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001118 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001119 return NULL;
1120 }
1121 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001122 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001123 lock.Wait();
1124 }
1125 }
1126 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001127 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001128 return NULL;
1129 }
1130 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001131 CHECK(klass->IsResolved()) << PrettyClass(klass);
1132 CHECK(!self->IsExceptionPending())
1133 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1134 return klass;
1135}
1136
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001137Class* ClassLinker::FindSystemClass(const char* descriptor) {
1138 return FindClass(descriptor, NULL);
1139}
1140
Ian Rogers365c1022012-06-22 15:05:28 -07001141Class* ClassLinker::FindClass(const char* descriptor, ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001142 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001143 Thread* self = Thread::Current();
1144 DCHECK(self != NULL);
1145 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001146 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001147 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1148 // for primitive classes that aren't backed by dex files.
1149 return FindPrimitiveClass(descriptor[0]);
1150 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001151 // Find the class in the loaded classes table.
1152 Class* klass = LookupClass(descriptor, class_loader);
1153 if (klass != NULL) {
1154 return EnsureResolved(klass);
1155 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001156 // Class is not yet loaded.
1157 if (descriptor[0] == '[') {
1158 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001159
Jesse Wilson47daf872011-11-23 11:42:45 -05001160 } else if (class_loader == NULL) {
1161 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1162 if (pair.second != NULL) {
1163 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1164 }
1165
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001166 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001167 // first try the boot class path
1168 Class* system_class = FindSystemClass(descriptor);
1169 if (system_class != NULL) {
1170 return system_class;
1171 }
1172 CHECK(self->IsExceptionPending());
1173 self->ClearException();
1174
1175 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001176 const std::vector<const DexFile*>& class_path
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001177 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001178 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001179 if (pair.second != NULL) {
1180 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001181 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001182
1183 } else {
Ian Rogers365c1022012-06-22 15:05:28 -07001184 ScopedJniThreadState ts(self->GetJniEnv());
1185 ScopedLocalRef<jobject> class_loader_object(ts.Env(),
1186 ts.AddLocalReference<jobject>(class_loader));
Elliott Hughes95572412011-12-13 18:14:20 -08001187 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers365c1022012-06-22 15:05:28 -07001188 ScopedLocalRef<jobject> result(ts.Env(), NULL);
1189 {
1190 ScopedThreadStateChange tsc(self, kNative);
1191 ScopedLocalRef<jobject> class_name_object(ts.Env(),
1192 ts.Env()->NewStringUTF(class_name_string.c_str()));
1193 if (class_name_object.get() == NULL) {
1194 return NULL;
1195 }
1196 CHECK(class_loader_object.get() != NULL);
1197 result.reset(ts.Env()->CallObjectMethod(class_loader_object.get(),
1198 WellKnownClasses::java_lang_ClassLoader_loadClass,
1199 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05001200 }
Ian Rogers365c1022012-06-22 15:05:28 -07001201 if (ts.Env()->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001202 // If the ClassLoader threw, pass that exception up.
1203 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001204 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001205 // broken loader - throw NPE to be compatible with Dalvik
1206 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1207 class_name_string.c_str());
1208 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001209 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001210 // success, return Class*
Ian Rogers365c1022012-06-22 15:05:28 -07001211 return ts.Decode<Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001212 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001213 }
1214
Elliott Hughes82914b62012-04-09 15:56:29 -07001215 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001216 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001217}
1218
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001219Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Ian Rogers365c1022012-06-22 15:05:28 -07001220 ClassLoader* class_loader,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001221 const DexFile& dex_file,
1222 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001223 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001224 // Load the class from the dex file.
1225 if (!init_done_) {
1226 // finish up init of hand crafted class_roots_
1227 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001228 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001229 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001230 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001231 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001232 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001233 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001234 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001235 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001236 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001237 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001238 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001239 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001240 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001241 }
1242 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001243 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001244 }
1245 klass->SetDexCache(FindDexCache(dex_file));
1246 LoadClass(dex_file, dex_class_def, klass, class_loader);
1247 // Check for a pending exception during load
1248 Thread* self = Thread::Current();
1249 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001250 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001251 return NULL;
1252 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001253 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001254 klass->SetClinitThreadId(self->GetTid());
1255 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001256 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1257 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001258 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001259 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001260 }
1261 // Finish loading (if necessary) by finding parents
1262 CHECK(!klass->IsLoaded());
1263 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1264 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001265 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001266 lock.NotifyAll();
1267 return NULL;
1268 }
1269 CHECK(klass->IsLoaded());
1270 // Link the class (if necessary)
1271 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001272 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001273 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001274 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001275 lock.NotifyAll();
1276 return NULL;
1277 }
1278 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001279
1280 /*
1281 * We send CLASS_PREPARE events to the debugger from here. The
1282 * definition of "preparation" is creating the static fields for a
1283 * class and initializing them to the standard default values, but not
1284 * executing any code (that comes later, during "initialization").
1285 *
1286 * We did the static preparation in LinkClass.
1287 *
1288 * The class has been prepared and resolved but possibly not yet verified
1289 * at this point.
1290 */
1291 Dbg::PostClassPrepare(klass.get());
1292
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001293 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001294}
1295
Brian Carlstrom4873d462011-08-21 15:23:39 -07001296// Precomputes size that will be needed for Class, matching LinkStaticFields
1297size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1298 const DexFile::ClassDef& dex_class_def) {
1299 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001300 size_t num_ref = 0;
1301 size_t num_32 = 0;
1302 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001303 if (class_data != NULL) {
1304 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1305 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001306 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001307 char c = descriptor[0];
1308 if (c == 'L' || c == '[') {
1309 num_ref++;
1310 } else if (c == 'J' || c == 'D') {
1311 num_64++;
1312 } else {
1313 num_32++;
1314 }
1315 }
1316 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001317 // start with generic class data
1318 size_t size = sizeof(Class);
1319 // follow with reference fields which must be contiguous at start
1320 size += (num_ref * sizeof(uint32_t));
1321 // if there are 64-bit fields to add, make sure they are aligned
1322 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1323 if (num_32 != 0) {
1324 // use an available 32-bit field for padding
1325 num_32--;
1326 }
1327 size += sizeof(uint32_t); // either way, we are adding a word
1328 DCHECK_EQ(size, RoundUp(size, 8));
1329 }
1330 // tack on any 64-bit fields now that alignment is assured
1331 size += (num_64 * sizeof(uint64_t));
1332 // tack on any remaining 32-bit fields
1333 size += (num_32 * sizeof(uint32_t));
1334 return size;
1335}
1336
Ian Rogers19846512012-02-24 11:42:47 -08001337const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1338 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001339 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1340 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1341 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1342 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1343 uint32_t class_def_index;
1344 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1345 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1346 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1347 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1348 return oat_class;
1349}
1350
TDYa12785321912012-04-01 15:24:56 -07001351const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001352 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001353 // method for direct methods (or virtual methods made direct).
1354 Class* declaring_class = method->GetDeclaringClass();
1355 size_t oat_method_index;
1356 if (method->IsStatic() || method->IsDirect()) {
1357 // Simple case where the oat method index was stashed at load time.
1358 oat_method_index = method->GetMethodIndex();
1359 } else {
1360 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1361 // by search for its position in the declared virtual methods.
1362 oat_method_index = declaring_class->NumDirectMethods();
1363 size_t end = declaring_class->NumVirtualMethods();
1364 bool found = false;
1365 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001366 if (declaring_class->GetVirtualMethod(i) == method) {
1367 found = true;
1368 break;
1369 }
Ian Rogersf320b632012-03-13 18:47:47 -07001370 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001371 }
1372 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1373 }
1374 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001375 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001376 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001377 return oat_class->GetOatMethod(oat_method_index);
1378}
1379
1380// Special case to get oat code without overwriting a trampoline.
1381const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001382 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001383 return GetOatMethodFor(method).GetCode();
1384}
1385
Ian Rogers19846512012-02-24 11:42:47 -08001386void ClassLinker::FixupStaticTrampolines(Class* klass) {
1387 ClassHelper kh(klass);
1388 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1389 CHECK(dex_class_def != NULL);
1390 const DexFile& dex_file = kh.GetDexFile();
1391 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1392 if (class_data == NULL) {
1393 return; // no fields or methods - for example a marker interface
1394 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001395 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001396 // OAT file unavailable
1397 return;
1398 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001399 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1400 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001401 ClassDataItemIterator it(dex_file, class_data);
1402 // Skip fields
1403 while (it.HasNextStaticField()) {
1404 it.Next();
1405 }
1406 while (it.HasNextInstanceField()) {
1407 it.Next();
1408 }
1409 size_t method_index = 0;
1410 // Link the code of methods skipped by LinkCode
1411 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1412 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1413 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001414 if (Runtime::Current()->IsMethodTracingActive()) {
1415 Trace* tracer = Runtime::Current()->GetTracer();
1416 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1417 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1418 tracer->ResetSavedCode(method);
1419 method->SetCode(code);
1420 tracer->SaveAndUpdateCode(method);
1421 }
1422 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001423 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1424 CHECK(code != NULL);
1425 method->SetCode(code);
1426 }
1427 method_index++;
1428 }
1429}
1430
Elliott Hughes5c599942012-06-13 16:45:05 -07001431static void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001432 // Every kind of method should at least get an invoke stub from the oat_method.
1433 // non-abstract methods also get their code pointers.
1434 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001435 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001436
Ian Rogers19846512012-02-24 11:42:47 -08001437 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001438 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001439 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001440 return;
1441 }
Ian Rogers19846512012-02-24 11:42:47 -08001442
1443 if (method->IsStatic() && !method->IsConstructor()) {
1444 // For static methods excluding the class initializer, install the trampoline
1445 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001446 }
1447 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001448 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001449 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001450 }
1451
1452 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001453 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001454 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001455 }
1456}
1457
Brian Carlstromf615a612011-07-23 12:50:34 -07001458void ClassLinker::LoadClass(const DexFile& dex_file,
1459 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001460 SirtRef<Class>& klass,
Ian Rogers365c1022012-06-22 15:05:28 -07001461 ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001462 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001463 CHECK(klass->GetDexCache() != NULL);
1464 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001465 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001466 CHECK(descriptor != NULL);
1467
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001468 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001469 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001470 // Make sure that none of our runtime-only flags are set.
1471 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001472 klass->SetAccessFlags(access_flags);
1473 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001474 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001475 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001476
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001477 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001478
Ian Rogers0571d352011-11-03 19:51:38 -07001479 // Load fields fields.
1480 const byte* class_data = dex_file.GetClassData(dex_class_def);
1481 if (class_data == NULL) {
1482 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001483 }
Ian Rogers0571d352011-11-03 19:51:38 -07001484 ClassDataItemIterator it(dex_file, class_data);
1485 if (it.NumStaticFields() != 0) {
1486 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1487 }
1488 if (it.NumInstanceFields() != 0) {
1489 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1490 }
1491 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1492 SirtRef<Field> sfield(AllocField());
1493 klass->SetStaticField(i, sfield.get());
1494 LoadField(dex_file, it, klass, sfield);
1495 }
1496 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1497 SirtRef<Field> ifield(AllocField());
1498 klass->SetInstanceField(i, ifield.get());
1499 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001500 }
1501
Brian Carlstromf5822582012-03-19 22:34:31 -07001502 UniquePtr<const OatFile::OatClass> oat_class;
1503 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1504 oat_class.reset(GetOatClass(dex_file, descriptor));
1505 }
Ian Rogers19846512012-02-24 11:42:47 -08001506
Ian Rogers0571d352011-11-03 19:51:38 -07001507 // Load methods.
1508 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001509 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001510 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001511 }
Ian Rogers0571d352011-11-03 19:51:38 -07001512 if (it.NumVirtualMethods() != 0) {
1513 // TODO: append direct methods to class object
1514 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001515 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001516 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001517 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1518 SirtRef<Method> method(AllocMethod());
1519 klass->SetDirectMethod(i, method.get());
1520 LoadMethod(dex_file, it, klass, method);
1521 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001522 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001523 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001524 method->SetMethodIndex(class_def_method_index);
1525 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001526 }
1527 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1528 SirtRef<Method> method(AllocMethod());
1529 klass->SetVirtualMethod(i, method.get());
1530 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001531 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001532 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001533 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001534 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001535 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001536 }
1537 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001538}
1539
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001540void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001541 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001542 uint32_t field_idx = it.GetMemberIndex();
1543 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001544 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001545 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001546}
1547
Ian Rogers0571d352011-11-03 19:51:38 -07001548void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1549 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001550 uint32_t dex_method_idx = it.GetMemberIndex();
1551 dst->SetDexMethodIndex(dex_method_idx);
1552 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001553 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001554
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001555
1556 StringPiece method_name(dex_file.GetMethodName(method_id));
1557 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001558 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1559 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001560
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001561 if (method_name == "finalize") {
1562 // Create the prototype for a signature of "()V"
1563 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1564 if (void_string_id != NULL) {
1565 const DexFile::TypeId* void_type_id =
1566 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1567 if (void_type_id != NULL) {
1568 std::vector<uint16_t> no_args;
1569 const DexFile::ProtoId* finalizer_proto =
1570 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1571 if (finalizer_proto != NULL) {
1572 // We have the prototype in the dex file
1573 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1574 klass->SetFinalizable();
1575 } else {
1576 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1577 // The Enum class declares a "final" finalize() method to prevent subclasses from
1578 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1579 // subclasses, so we exclude it here.
1580 // We also want to avoid setting the flag on Object, where we know that finalize() is
1581 // empty.
1582 if (klass_descriptor != "Ljava/lang/Object;" &&
1583 klass_descriptor != "Ljava/lang/Enum;") {
1584 klass->SetFinalizable();
1585 }
1586 }
1587 }
1588 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001589 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001590 }
Ian Rogers0571d352011-11-03 19:51:38 -07001591 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001592 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001593
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001594 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001595 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001596 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001597 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001598}
1599
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001600void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001601 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1602 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001603}
1604
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001605void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1606 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001607 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001608 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001609}
1610
Brian Carlstromaded5f72011-10-07 17:15:04 -07001611bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001612 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001613 for (size_t i = 0; i != dex_files_.size(); ++i) {
1614 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001615 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001616 }
1617 }
1618 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001619}
1620
Brian Carlstromaded5f72011-10-07 17:15:04 -07001621bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001622 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001623 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001624}
1625
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001626void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001627 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001628 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001629 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001630 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001631 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001632}
1633
Brian Carlstromaded5f72011-10-07 17:15:04 -07001634void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001635 {
1636 MutexLock mu(dex_lock_);
1637 if (IsDexFileRegisteredLocked(dex_file)) {
1638 return;
1639 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001640 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001641 // Don't alloc while holding the lock, since allocation may need to
1642 // suspend all threads and another thread may need the dex_lock_ to
1643 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001644 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001645 {
1646 MutexLock mu(dex_lock_);
1647 if (IsDexFileRegisteredLocked(dex_file)) {
1648 return;
1649 }
1650 RegisterDexFileLocked(dex_file, dex_cache);
1651 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001652}
1653
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001654void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001655 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001656 RegisterDexFileLocked(dex_file, dex_cache);
1657}
1658
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001659const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001660 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001661 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001662 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1663 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001664 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001665 }
1666 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001667 LOG(FATAL) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001668 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001669}
1670
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001671DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001672 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001673 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001674 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001675 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001676 }
1677 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001678 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001679 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001680}
1681
Ian Rogers19846512012-02-24 11:42:47 -08001682void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1683 MutexLock mu(dex_lock_);
1684 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1685 dex_caches_[i]->Fixup(resolution_method);
1686 }
1687}
1688
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001689Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1690 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001691 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001692 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001693 CHECK(primitive_class != NULL);
1694 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001695 primitive_class->SetPrimitiveType(type);
1696 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001697 Class* existing = InsertClass(descriptor, primitive_class, false);
1698 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001699 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001700}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001701
Brian Carlstrombe977852011-07-19 14:54:54 -07001702// Create an array class (i.e. the class object for the array, not the
1703// array itself). "descriptor" looks like "[C" or "[[[[B" or
1704// "[Ljava/lang/String;".
1705//
1706// If "descriptor" refers to an array of primitives, look up the
1707// primitive type's internally-generated class object.
1708//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001709// "class_loader" is the class loader of the class that's referring to
1710// us. It's used to ensure that we're looking for the element type in
1711// the right context. It does NOT become the class loader for the
1712// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001713//
1714// Returns NULL with an exception raised on failure.
Ian Rogers365c1022012-06-22 15:05:28 -07001715Class* ClassLinker::CreateArrayClass(const std::string& descriptor, ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001716 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001717
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001718 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001719 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001720 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001721 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001722 return NULL;
1723 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001724
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001725 // See if the component type is already loaded. Array classes are
1726 // always associated with the class loader of their underlying
1727 // element type -- an array of Strings goes with the loader for
1728 // java/lang/String -- so we need to look for it there. (The
1729 // caller should have checked for the existence of the class
1730 // before calling here, but they did so with *their* class loader,
1731 // not the component type's loader.)
1732 //
1733 // If we find it, the caller adds "loader" to the class' initiating
1734 // loader list, which should prevent us from going through this again.
1735 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001736 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001737 // are the same, because our caller (FindClass) just did the
1738 // lookup. (Even if we get this wrong we still have correct behavior,
1739 // because we effectively do this lookup again when we add the new
1740 // class to the hash table --- necessary because of possible races with
1741 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001742 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001743 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001744 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001745 return new_class;
1746 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001747 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001748
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001749 // Fill out the fields in the Class.
1750 //
1751 // It is possible to execute some methods against arrays, because
1752 // all arrays are subclasses of java_lang_Object_, so we need to set
1753 // up a vtable. We can just point at the one in java_lang_Object_.
1754 //
1755 // Array classes are simple enough that we don't need to do a full
1756 // link step.
1757
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001758 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001759 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001760 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001761 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001762 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001763 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001764 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001765 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001766 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001767 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001768 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001769 }
1770 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001771 if (new_class.get() == NULL) {
1772 new_class.reset(AllocClass(sizeof(Class)));
1773 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001774 return NULL;
1775 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001776 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001777 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001778 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001779 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001780 new_class->SetSuperClass(java_lang_Object);
1781 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001782 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001783 new_class->SetClassLoader(component_type->GetClassLoader());
1784 new_class->SetStatus(Class::kStatusInitialized);
1785 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001786 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001787
1788
1789 // All arrays have java/lang/Cloneable and java/io/Serializable as
1790 // interfaces. We need to set that up here, so that stuff like
1791 // "instanceof" works right.
1792 //
1793 // Note: The GC could run during the call to FindSystemClass,
1794 // so we need to make sure the class object is GC-valid while we're in
1795 // there. Do this by clearing the interface list so the GC will just
1796 // think that the entries are null.
1797
1798
1799 // Use the single, global copies of "interfaces" and "iftable"
1800 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001801 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001802 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001803
1804 // Inherit access flags from the component type. Arrays can't be
1805 // used as a superclass or interface, so we want to add "final"
1806 // and remove "interface".
1807 //
1808 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001809 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001810 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001811 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1812 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001813
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001814 Class* existing = InsertClass(descriptor, new_class.get(), false);
1815 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001816 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001817 }
1818 // Another thread must have loaded the class after we
1819 // started but before we finished. Abandon what we've
1820 // done.
1821 //
1822 // (Yes, this happens.)
1823
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001824 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001825}
1826
1827Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001828 switch (Primitive::GetType(type)) {
1829 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001830 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001831 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001832 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001833 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001834 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001835 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001836 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001837 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001838 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001839 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001840 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001841 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001842 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001843 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001844 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001845 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001846 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001847 case Primitive::kPrimNot:
1848 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001849 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001850 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001851 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001852 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001853}
1854
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001855Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001856 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001857 DexCache* dex_cache = klass->GetDexCache();
1858 std::string source;
1859 if (dex_cache != NULL) {
1860 source += " from ";
1861 source += dex_cache->GetLocation()->ToModifiedUtf8();
1862 }
1863 LOG(INFO) << "Loaded class " << descriptor << source;
1864 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001865 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001866 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001867 Table& classes = image_class ? image_classes_ : classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001868 Class* existing = LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, classes);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001869#ifndef NDEBUG
1870 // Check we don't have the class in the other table in error
1871 Table& other_classes = image_class ? classes_ : image_classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001872 CHECK(LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001873#endif
1874 if (existing != NULL) {
1875 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001876 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001877 classes.insert(std::make_pair(hash, klass));
1878 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001879}
1880
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001881bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1882 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001883 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001884 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001885 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001886 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001887 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001888 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001889 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001890 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001891 classes_.erase(it);
1892 return true;
1893 }
1894 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001895 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001896 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001897 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001898 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001899 image_classes_.erase(it);
1900 return true;
1901 }
1902 }
1903 return false;
1904}
1905
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001906Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1907 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001908 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001909 // TODO: determine if its better to search classes_ or image_classes_ first
Elliott Hughesf8349362012-06-18 15:00:06 -07001910 Class* klass = LookupClassLocked(descriptor, class_loader, hash, classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001911 if (klass != NULL) {
1912 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001913 }
Elliott Hughesf8349362012-06-18 15:00:06 -07001914 return LookupClassLocked(descriptor, class_loader, hash, image_classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001915}
1916
Elliott Hughesf8349362012-06-18 15:00:06 -07001917Class* ClassLinker::LookupClassLocked(const char* descriptor, const ClassLoader* class_loader,
1918 size_t hash, const Table& classes) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001919 ClassHelper kh(NULL, this);
1920 typedef Table::const_iterator It; // TODO: C++0x auto
1921 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001922 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001923 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001924 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001925#ifndef NDEBUG
1926 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001927 Class* klass2 = it->second;
1928 kh.ChangeClass(klass2);
1929 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001930 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001931 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001932 }
1933#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001934 return klass;
1935 }
1936 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001937 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001938}
1939
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001940void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001941 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001942 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001943 MutexLock mu(classes_lock_);
1944 typedef Table::const_iterator It; // TODO: C++0x auto
1945 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001946 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001947 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001948 Class* klass = it->second;
1949 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001950 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001951 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001952 }
1953 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001954 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001955 Class* klass = it->second;
1956 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001957 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001958 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001959 }
1960 }
1961}
1962
TDYa1273db52852012-04-01 15:11:43 -07001963#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogersc20a83e2012-01-18 18:15:32 -08001964static void CheckMethodsHaveGcMaps(Class* klass) {
1965 if (!Runtime::Current()->IsStarted()) {
1966 return;
1967 }
1968 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1969 Method* method = klass->GetDirectMethod(i);
1970 if (!method->IsNative() && !method->IsAbstract()) {
1971 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1972 }
1973 }
1974 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1975 Method* method = klass->GetVirtualMethod(i);
1976 if (!method->IsNative() && !method->IsAbstract()) {
1977 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1978 }
1979 }
1980}
1981#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001982static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08001983}
1984#endif
1985
jeffhao98eacac2011-09-14 16:11:53 -07001986void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001987 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08001988 ObjectLock lock(klass);
1989
jeffhao98eacac2011-09-14 16:11:53 -07001990 if (klass->IsVerified()) {
1991 return;
1992 }
1993
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001994 // The class might already be erroneous if we attempted to verify a subclass
1995 if (klass->IsErroneous()) {
1996 ThrowEarlierClassFailure(klass);
1997 return;
1998 }
1999
jeffhaoa9b3bf42012-06-06 17:18:39 -07002000 CHECK(klass->GetStatus() == Class::kStatusResolved ||
2001 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07002002 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07002003
Ian Rogers1c5eb702012-02-01 09:18:34 -08002004 // Verify super class
2005 Class* super = klass->GetSuperClass();
2006 std::string error_msg;
2007 if (super != NULL) {
2008 // Acquire lock to prevent races on verifying the super class
2009 ObjectLock lock(super);
2010
2011 if (!super->IsVerified() && !super->IsErroneous()) {
2012 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2013 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002014 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08002015 error_msg = "Rejecting class ";
2016 error_msg += PrettyDescriptor(klass);
2017 error_msg += " that attempts to sub-class erroneous class ";
2018 error_msg += PrettyDescriptor(super);
2019 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2020 Thread* self = Thread::Current();
2021 SirtRef<Throwable> cause(self->GetException());
2022 if (cause.get() != NULL) {
2023 self->ClearException();
2024 }
2025 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2026 if (cause.get() != NULL) {
2027 self->GetException()->SetCause(cause.get());
2028 }
2029 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2030 klass->SetStatus(Class::kStatusError);
2031 return;
2032 }
2033 }
2034
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002035 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002036 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002037 Class::Status oat_file_class_status(Class::kStatusNotReady);
2038 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002039 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
2040 if (!preverified) {
2041 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2042 }
2043 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002044 if (!preverified && oat_file_class_status == Class::kStatusError) {
2045 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2046 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2047 }
Ian Rogersc4762272012-02-01 15:55:55 -08002048 DCHECK(!Thread::Current()->IsExceptionPending());
jeffhaof1e6b7c2012-06-05 18:33:30 -07002049 CHECK(verifier_failure == verifier::MethodVerifier::kNoFailure ||
2050 Runtime::Current()->IsCompiler());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002051 // Make sure all classes referenced by catch blocks are resolved
2052 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002053 klass->SetStatus(verifier_failure == verifier::MethodVerifier::kNoFailure ?
2054 Class::kStatusVerified : Class::kStatusRetryVerificationAtRuntime);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002055 // Sanity check that a verified class has GC maps on all methods
2056 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002057 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002058 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002059 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2060 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002061 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002062 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002063 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2064 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002065 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002066 }
jeffhao98eacac2011-09-14 16:11:53 -07002067}
2068
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002069bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2070 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002071 if (!Runtime::Current()->IsStarted()) {
2072 return false;
2073 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002074 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002075 return false;
2076 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002077 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2078 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002079 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002080 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002081 const char* descriptor = ClassHelper(klass).GetDescriptor();
2082 uint32_t class_def_index;
2083 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002084 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002085 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002086 CHECK(oat_class.get() != NULL)
2087 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002088 oat_file_class_status = oat_class->GetStatus();
2089 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002090 return true;
2091 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002092 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002093 // Compile time verification failed with a soft error. Compile time verification can fail
2094 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002095 // class ... {
2096 // Foo x;
2097 // .... () {
2098 // if (...) {
2099 // v1 gets assigned a type of resolved class Foo
2100 // } else {
2101 // v1 gets assigned a type of unresolved class Bar
2102 // }
2103 // iput x = v1
2104 // } }
2105 // when we merge v1 following the if-the-else it results in Conflict
2106 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2107 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2108 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2109 // at compile time).
2110 return false;
2111 }
jeffhao1ac29442012-03-26 11:37:32 -07002112 if (oat_file_class_status == Class::kStatusError) {
2113 // Compile time verification failed with a hard error. This is caused by invalid instructions
2114 // in the class. These errors are unrecoverable.
2115 return false;
2116 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002117 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002118 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2119 // not loading the class.
2120 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2121 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002122 return false;
2123 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002124 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002125 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2126
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002127 return false;
2128}
2129
2130void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2131 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2132 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2133 }
2134 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2135 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2136 }
2137}
2138
2139void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2140 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2141 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2142 if (code_item == NULL) {
2143 return; // native or abstract method
2144 }
2145 if (code_item->tries_size_ == 0) {
2146 return; // nothing to process
2147 }
2148 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2149 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2150 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2151 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2152 CatchHandlerIterator iterator(handlers_ptr);
2153 for (; iterator.HasNext(); iterator.Next()) {
2154 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2155 // unresolved exception types will be ignored by exception delivery
2156 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2157 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2158 if (exception_type == NULL) {
2159 DCHECK(Thread::Current()->IsExceptionPending());
2160 Thread::Current()->ClearException();
2161 }
2162 }
2163 }
2164 handlers_ptr = iterator.EndDataPointer();
2165 }
2166}
2167
Ian Rogersc2b44472011-12-14 21:17:17 -08002168static void CheckProxyConstructor(Method* constructor);
2169static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2170
Jesse Wilson95caa792011-10-12 18:14:17 -04002171Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002172 ClassLoader* loader, ObjectArray<Method>* methods,
2173 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002174 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002175 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002176 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002177 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002178 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002179 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002180 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002181 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002182 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002183 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002184
2185 klass->SetStatus(Class::kStatusIdx);
2186
2187 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2188
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002189 // Instance fields are inherited, but we add a couple of static fields...
2190 klass->SetSFields(AllocObjectArray<Field>(2));
2191 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2192 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2193 SirtRef<Field> interfaces_sfield(AllocField());
2194 klass->SetStaticField(0, interfaces_sfield.get());
2195 interfaces_sfield->SetDexFieldIndex(0);
2196 interfaces_sfield->SetDeclaringClass(klass.get());
2197 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2198 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2199 SirtRef<Field> throws_sfield(AllocField());
2200 klass->SetStaticField(1, throws_sfield.get());
2201 throws_sfield->SetDexFieldIndex(1);
2202 throws_sfield->SetDeclaringClass(klass.get());
2203 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002204
Ian Rogers466bb252011-10-14 03:29:56 -07002205 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002206 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002207 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002208
Ian Rogers466bb252011-10-14 03:29:56 -07002209 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002210 size_t num_virtual_methods = methods->GetLength();
2211 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2212 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002213 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002214 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002215 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002216
2217 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2218 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2219 DCHECK(!Thread::Current()->IsExceptionPending());
2220
2221 // Link the fields and virtual methods, creating vtable and iftables
2222 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002223 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002224 return NULL;
2225 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002226 interfaces_sfield->SetObject(NULL, interfaces);
2227 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002228 klass->SetStatus(Class::kStatusInitialized);
2229
2230 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002231 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002232 CHECK(klass->GetIFields() == NULL);
2233 CheckProxyConstructor(klass->GetDirectMethod(0));
2234 for (size_t i = 0; i < num_virtual_methods; ++i) {
2235 SirtRef<Method> prototype(methods->Get(i));
2236 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2237 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002238
2239 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2240 name->ToModifiedUtf8().c_str()));
2241 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2242
2243 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2244 name->ToModifiedUtf8().c_str()));
2245 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002246
2247 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002248 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002249 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2250 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002251 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002252}
2253
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002254std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2255 DCHECK(proxy_class->IsProxyClass());
2256 String* name = proxy_class->GetName();
2257 DCHECK(name != NULL);
2258 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2259}
2260
Ian Rogers16f93672012-02-14 12:29:06 -08002261Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2262 DCHECK(proxy_class->IsProxyClass());
2263 DCHECK(proxy_method->IsProxyMethod());
2264 // Locate the dex cache of the original interface/Object
2265 DexCache* dex_cache = NULL;
2266 {
2267 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2268 MutexLock mu(dex_lock_);
2269 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2270 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2271 dex_cache = dex_caches_[i];
2272 break;
2273 }
2274 }
2275 }
2276 CHECK(dex_cache != NULL);
2277 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2278 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2279 CHECK(resolved_method != NULL);
2280 return resolved_method;
2281}
2282
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002283
2284Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002285 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002286 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002287 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002288 Method* proxy_constructor = proxy_direct_methods->Get(2);
2289 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2290 // code_ too)
2291 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2292 // Make this constructor public and fix the class to be our Proxy version
2293 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002294 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002295 return constructor;
2296}
2297
2298static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002299 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002300 MethodHelper mh(constructor);
2301 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002302 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002303 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002304}
2305
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002306Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2307 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2308 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002309 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2310 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002311 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002312 // as necessary
2313 Method* method = down_cast<Method*>(prototype->Clone());
2314
2315 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2316 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002317 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002318 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002319
Ian Rogers466bb252011-10-14 03:29:56 -07002320 // At runtime the method looks like a reference and argument saving method, clone the code
2321 // related parameters from this method.
2322 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2323 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2324 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2325 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002326#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002327 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002328#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002329 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2330 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002331#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002332
Ian Rogersc2b44472011-12-14 21:17:17 -08002333 return method;
2334}
Jesse Wilson95caa792011-10-12 18:14:17 -04002335
Ian Rogersc2b44472011-12-14 21:17:17 -08002336static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002337 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002338 CHECK(!prototype->IsFinal());
2339 CHECK(method->IsFinal());
2340 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002341
2342 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2343 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2344 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2345 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2346 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2347 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2348 method->GetDexCacheInitializedStaticStorage());
2349 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2350
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002351 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002352 MethodHelper mh2(prototype.get());
2353 CHECK_STREQ(mh.GetName(), mh2.GetName());
2354 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002355 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002356 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002357}
2358
Ian Rogers0045a292012-03-31 21:08:41 -07002359bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002360 CHECK(klass->IsResolved() || klass->IsErroneous())
2361 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002362
Carl Shapirob5573532011-07-12 18:22:59 -07002363 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002364
Brian Carlstrom25c33252011-09-18 15:58:35 -07002365 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002366 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002367 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002368 ObjectLock lock(klass);
2369
Brian Carlstromd1422f82011-09-28 11:37:09 -07002370 if (klass->GetStatus() == Class::kStatusInitialized) {
2371 return true;
2372 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002373
Brian Carlstromd1422f82011-09-28 11:37:09 -07002374 if (klass->IsErroneous()) {
2375 ThrowEarlierClassFailure(klass);
2376 return false;
2377 }
2378
jeffhaoebe2e0f2012-06-06 15:19:40 -07002379 if (klass->GetStatus() == Class::kStatusResolved ||
2380 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002381 VerifyClass(klass);
2382 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002383 if (klass->GetStatus() == Class::kStatusError) {
2384 CHECK(self->IsExceptionPending());
2385 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002386 return false;
2387 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002388 }
2389
Brian Carlstrom25c33252011-09-18 15:58:35 -07002390 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2391 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002392 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002393 // don't bother going to kStatusInitializing. We return false so that
2394 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002395 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2396 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002397 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002398 }
2399
Brian Carlstromd1422f82011-09-28 11:37:09 -07002400 // If the class is kStatusInitializing, either this thread is
2401 // initializing higher up the stack or another thread has beat us
2402 // to initializing and we need to wait. Either way, this
2403 // invocation of InitializeClass will not be responsible for
2404 // running <clinit> and will return.
2405 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002406 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002407 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002408 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002409 return true;
2410 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002411 // No. That's fine. Wait for another thread to finish initializing.
2412 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002413 }
2414
2415 if (!ValidateSuperClassDescriptors(klass)) {
2416 klass->SetStatus(Class::kStatusError);
2417 return false;
2418 }
2419
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002420 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002421
Elliott Hughesdcc24742011-09-07 14:02:44 -07002422 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002423 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002424 }
2425
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002426 uint64_t t0 = NanoTime();
2427
Ian Rogers0045a292012-03-31 21:08:41 -07002428 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002429 // Super class initialization failed, this can be because we can't run
2430 // super-class class initializers in which case we'll be verified.
2431 // Otherwise this class is erroneous.
2432 if (!can_run_clinit) {
2433 CHECK(klass->IsVerified());
2434 } else {
2435 CHECK(klass->IsErroneous());
2436 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002437 return false;
2438 }
2439
Ian Rogers0045a292012-03-31 21:08:41 -07002440 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002441
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002442 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002443 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002444 }
2445
Ian Rogers19846512012-02-24 11:42:47 -08002446 FixupStaticTrampolines(klass);
2447
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002448 uint64_t t1 = NanoTime();
2449
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002450 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002451 {
2452 ObjectLock lock(klass);
2453
2454 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002455 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002456 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002457 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002458 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002459 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2460 RuntimeStats* thread_stats = self->GetStats();
2461 ++global_stats->class_init_count;
2462 ++thread_stats->class_init_count;
2463 global_stats->class_init_time_ns += (t1 - t0);
2464 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002465 // Set the class as initialized except if we can't initialize static fields and static field
2466 // initialization is necessary.
2467 if (!can_init_statics && has_static_field_initializers) {
2468 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2469 success = false;
2470 } else {
2471 klass->SetStatus(Class::kStatusInitialized);
2472 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002473 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002474 ClassHelper kh(klass);
2475 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002476 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002477 }
2478 lock.NotifyAll();
2479 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002480 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002481}
2482
Brian Carlstromd1422f82011-09-28 11:37:09 -07002483bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2484 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002485 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002486 lock.Wait();
2487
2488 // When we wake up, repeat the test for init-in-progress. If
2489 // there's an exception pending (only possible if
2490 // "interruptShouldThrow" was set), bail out.
2491 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002492 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002493 klass->SetStatus(Class::kStatusError);
2494 return false;
2495 }
2496 // Spurious wakeup? Go back to waiting.
2497 if (klass->GetStatus() == Class::kStatusInitializing) {
2498 continue;
2499 }
2500 if (klass->IsErroneous()) {
2501 // The caller wants an exception, but it was thrown in a
2502 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002503 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002504 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002505 return false;
2506 }
2507 if (klass->IsInitialized()) {
2508 return true;
2509 }
2510 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2511 }
2512 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2513}
2514
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002515bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2516 if (klass->IsInterface()) {
2517 return true;
2518 }
2519 // begin with the methods local to the superclass
2520 if (klass->HasSuperClass() &&
2521 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2522 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002523 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2524 const Method* method = klass->GetVTable()->Get(i);
2525 if (method != super->GetVTable()->Get(i) &&
2526 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002527 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2528 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2529 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002530 return false;
2531 }
2532 }
2533 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002534 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2535 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2536 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002537 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2538 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002539 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002540 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2541 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002542 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2543 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2544 PrettyMethod(method).c_str(),
2545 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002546 return false;
2547 }
2548 }
2549 }
2550 }
2551 return true;
2552}
2553
Ian Rogers595799e2012-01-11 17:32:51 -08002554// Returns true if classes referenced by the signature of the method are the
2555// same classes in klass1 as they are in klass2.
2556bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2557 const Class* klass1,
2558 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002559 if (klass1 == klass2) {
2560 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002561 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002562 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002563 const DexFile::ProtoId& proto_id =
2564 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002565 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2566 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002567 if (descriptor == NULL) {
2568 break;
2569 }
2570 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2571 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002572 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002573 return false;
2574 }
2575 }
2576 }
2577 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002578 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002579 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002580 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002581 return false;
2582 }
2583 }
2584 return true;
2585}
2586
Ian Rogers595799e2012-01-11 17:32:51 -08002587// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2588bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2589 const Class* klass1,
2590 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002591 CHECK(descriptor != NULL);
2592 CHECK(klass1 != NULL);
2593 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002594 if (klass1 == klass2) {
2595 return true;
2596 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002597 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002598 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002599 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002600 }
Ian Rogers595799e2012-01-11 17:32:51 -08002601 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2602 if (found2 == NULL) {
2603 Thread::Current()->ClearException();
2604 }
2605 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002606}
2607
Ian Rogers0045a292012-03-31 21:08:41 -07002608bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002609 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002610 if (!klass->IsInterface() && klass->HasSuperClass()) {
2611 Class* super_class = klass->GetSuperClass();
2612 if (super_class->GetStatus() != Class::kStatusInitialized) {
2613 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002614 Thread* self = Thread::Current();
2615 klass->MonitorEnter(self);
Ian Rogers0045a292012-03-31 21:08:41 -07002616 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Elliott Hughes5f791332011-09-15 17:45:30 -07002617 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002618 // TODO: check for a pending exception
2619 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002620 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002621 // Don't set status to error when we can't run <clinit>.
2622 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2623 klass->SetStatus(Class::kStatusVerified);
2624 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002625 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002626 klass->SetStatus(Class::kStatusError);
2627 klass->NotifyAll();
2628 return false;
2629 }
2630 }
2631 }
2632 return true;
2633}
2634
Ian Rogers0045a292012-03-31 21:08:41 -07002635bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002636 CHECK(c != NULL);
2637 if (c->IsInitialized()) {
2638 return true;
2639 }
2640
Elliott Hughes5f791332011-09-15 17:45:30 -07002641 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002642 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002643 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002644 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002645 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002646 }
2647 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002648}
2649
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002650void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002651 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Ian Rogers365c1022012-06-22 15:05:28 -07002652 ClassLoader* cl = c->GetClassLoader();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002653 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002654 ClassDataItemIterator it(dex_file, class_data);
2655 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002656 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002657 }
2658}
2659
Ian Rogers0045a292012-03-31 21:08:41 -07002660bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002661 size_t num_static_fields = klass->NumStaticFields();
2662 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002663 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002664 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002665 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002666 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002667 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002668 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002669 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002670 ClassHelper kh(klass);
2671 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002672 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002673 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002674 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002675
Ian Rogers0571d352011-11-03 19:51:38 -07002676 if (it.HasNext()) {
2677 // 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 -07002678 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002679 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2680 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002681 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002682 }
Ian Rogers0045a292012-03-31 21:08:41 -07002683 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002684 }
Ian Rogers0045a292012-03-31 21:08:41 -07002685 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002686}
2687
Ian Rogersc2b44472011-12-14 21:17:17 -08002688bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002689 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002690 if (!LinkSuperClass(klass)) {
2691 return false;
2692 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002693 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002694 return false;
2695 }
2696 if (!LinkInstanceFields(klass)) {
2697 return false;
2698 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002699 if (!LinkStaticFields(klass)) {
2700 return false;
2701 }
2702 CreateReferenceInstanceOffsets(klass);
2703 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002704 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2705 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002706 return true;
2707}
2708
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002709bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002710 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002711 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2712 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002713 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002714 uint16_t super_class_idx = class_def->superclass_idx_;
2715 if (super_class_idx != DexFile::kDexNoIndex16) {
2716 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002717 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002718 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002719 return false;
2720 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002721 // Verify
2722 if (!klass->CanAccess(super_class)) {
2723 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2724 "Class %s extended by class %s is inaccessible",
2725 PrettyDescriptor(super_class).c_str(),
2726 PrettyDescriptor(klass.get()).c_str());
2727 return false;
2728 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002729 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002730 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002731 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2732 if (interfaces != NULL) {
2733 for (size_t i = 0; i < interfaces->Size(); i++) {
2734 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2735 Class* interface = ResolveType(dex_file, idx, klass.get());
2736 if (interface == NULL) {
2737 DCHECK(Thread::Current()->IsExceptionPending());
2738 return false;
2739 }
2740 // Verify
2741 if (!klass->CanAccess(interface)) {
2742 // TODO: the RI seemed to ignore this in my testing.
2743 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2744 "Interface %s implemented by class %s is inaccessible",
2745 PrettyDescriptor(interface).c_str(),
2746 PrettyDescriptor(klass.get()).c_str());
2747 return false;
2748 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002749 }
2750 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002751 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002752 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002753 return true;
2754}
2755
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002756bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002757 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002758 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002759 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002760 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002761 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002762 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002763 return false;
2764 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002765 return true;
2766 }
2767 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002768 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002769 return false;
2770 }
2771 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002772 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002773 Thread* self = Thread::Current();
2774 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002775 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002776 PrettyDescriptor(super).c_str(),
2777 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002778 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002779 return false;
2780 }
2781 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002782 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002783 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002784 PrettyDescriptor(super).c_str(),
2785 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002786 return false;
2787 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002788
2789 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2790 if (super->IsFinalizable()) {
2791 klass->SetFinalizable();
2792 }
2793
Elliott Hughes2da50362011-10-10 16:57:08 -07002794 // Inherit reference flags (if any) from the superclass.
2795 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2796 if (reference_flags != 0) {
2797 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2798 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002799 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002800 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002801 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002802 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002803 return false;
2804 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002805
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002806#ifndef NDEBUG
2807 // Ensure super classes are fully resolved prior to resolving fields..
2808 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002809 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002810 super = super->GetSuperClass();
2811 }
2812#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002813 return true;
2814}
2815
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002816// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002817bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002818 if (klass->IsInterface()) {
2819 // No vtable.
2820 size_t count = klass->NumVirtualMethods();
2821 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002822 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002823 return false;
2824 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002825 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002826 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002827 }
jeffhaobdb76512011-09-07 11:43:16 -07002828 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002829 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002830 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002831 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002832 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002833 }
2834 return true;
2835}
2836
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002837bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002838 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002839 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2840 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002841 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002842 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002843 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002844 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002845 MethodHelper local_mh(NULL, this);
2846 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002847 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002848 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002849 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002850 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002851 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002852 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002853 super_mh.ChangeMethod(super_method);
Elliott Hughes26c5e152012-07-11 11:47:22 -07002854 if (local_mh.HasSameNameAndSignature(&super_mh) &&
2855 klass->CanAccessMember(super_method->GetDeclaringClass(), super_method->GetAccessFlags())) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002856 // Verify
2857 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002858 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002859 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002860 PrettyDescriptor(klass.get()).c_str(),
2861 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002862 return false;
2863 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002864 vtable->Set(j, local_method);
2865 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002866 break;
2867 }
2868 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002869 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002870 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002871 vtable->Set(actual_count, local_method);
2872 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002873 actual_count += 1;
2874 }
2875 }
2876 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002877 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002878 return false;
2879 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002880 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002881 CHECK_LE(actual_count, max_count);
2882 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002883 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002884 }
Ian Rogers30fab402012-01-23 15:43:46 -08002885 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002886 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002887 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002888 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002889 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002890 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002891 return false;
2892 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002893 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002894 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002895 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2896 vtable->Set(i, virtual_method);
2897 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002898 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002899 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002900 }
2901 return true;
2902}
2903
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002904bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002905 size_t super_ifcount;
2906 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002907 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002908 } else {
2909 super_ifcount = 0;
2910 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002911 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002912 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07002913 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002914 ifcount += num_interfaces;
2915 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002916 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002917 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002918 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002919 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002920 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002921 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002922 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002923 return true;
2924 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002925 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002926 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002927 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2928 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002929 Class* super_interface = super_iftable->Get(i)->GetInterface();
2930 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002931 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002932 }
2933 // Flatten the interface inheritance hierarchy.
2934 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002935 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002936 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002937 DCHECK(interface != NULL);
2938 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002939 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002940 Thread* self = Thread::Current();
2941 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002942 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002943 PrettyDescriptor(klass.get()).c_str(),
2944 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002945 return false;
2946 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002947 // Check if interface is already in iftable
2948 bool duplicate = false;
2949 for (size_t j = 0; j < idx; j++) {
2950 Class* existing_interface = iftable->Get(j)->GetInterface();
2951 if (existing_interface == interface) {
2952 duplicate = true;
2953 break;
2954 }
2955 }
2956 if (!duplicate) {
2957 // Add this non-duplicate interface.
2958 iftable->Set(idx++, AllocInterfaceEntry(interface));
2959 // Add this interface's non-duplicate super-interfaces.
2960 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2961 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2962 bool super_duplicate = false;
2963 for (size_t k = 0; k < idx; k++) {
2964 Class* existing_interface = iftable->Get(k)->GetInterface();
2965 if (existing_interface == super_interface) {
2966 super_duplicate = true;
2967 break;
2968 }
2969 }
2970 if (!super_duplicate) {
2971 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2972 }
2973 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002974 }
2975 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002976 // Shrink iftable in case duplicates were found
2977 if (idx < ifcount) {
2978 iftable.reset(iftable->CopyOf(idx));
2979 ifcount = idx;
2980 } else {
2981 CHECK_EQ(idx, ifcount);
2982 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002983 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002984
2985 // If we're an interface, we don't need the vtable pointers, so we're done.
2986 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002987 return true;
2988 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002989 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002990 MethodHelper vtable_mh(NULL, this);
2991 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002992 for (size_t i = 0; i < ifcount; ++i) {
2993 InterfaceEntry* interface_entry = iftable->Get(i);
2994 Class* interface = interface_entry->GetInterface();
2995 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2996 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002997 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002998 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2999 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003000 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003001 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07003002 // For each method listed in the interface's method list, find the
3003 // matching method in our class's method list. We want to favor the
3004 // subclass over the superclass, which just requires walking
3005 // back from the end of the vtable. (This only matters if the
3006 // superclass defines a private method and this class redefines
3007 // it -- otherwise it would use the same vtable slot. In .dex files
3008 // those don't end up in the virtual method table, so it shouldn't
3009 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003010 for (k = vtable->GetLength() - 1; k >= 0; --k) {
3011 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003012 vtable_mh.ChangeMethod(vtable_method);
3013 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07003014 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07003015 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003016 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003017 return false;
3018 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003019 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003020 break;
3021 }
3022 }
3023 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003024 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003025 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003026 Method* mir_method = miranda_list[mir];
3027 vtable_mh.ChangeMethod(mir_method);
3028 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003029 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003030 break;
3031 }
3032 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003033 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003034 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003035 miranda_method.reset(AllocMethod());
3036 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3037 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003038 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003039 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003040 }
3041 }
3042 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003043 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003044 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003045 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003046 klass->SetVirtualMethods((old_method_count == 0)
3047 ? AllocObjectArray<Method>(new_method_count)
3048 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003049
Ian Rogers30fab402012-01-23 15:43:46 -08003050 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3051 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003052 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003053 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003054 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003055 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003056 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003057 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003058 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3059 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3060 klass->SetVirtualMethod(old_method_count + i, method);
3061 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003062 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003063 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003064 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003065 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003066
3067 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3068 for (int i = 0; i < vtable->GetLength(); ++i) {
3069 CHECK(vtable->Get(i) != NULL);
3070 }
3071
3072// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3073
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003074 return true;
3075}
3076
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003077bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3078 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003079 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003080}
3081
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003082bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3083 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003084 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003085 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003086 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003087 return success;
3088}
3089
Brian Carlstromdbc05252011-09-09 01:59:59 -07003090struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003091 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003092 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003093 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003094 fh_->ChangeField(field1);
3095 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3096 fh_->ChangeField(field2);
3097 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003098 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3099 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3100 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3101 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003102 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3103 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3104 if (order1 != order2) {
3105 return order1 < order2;
3106 }
3107
3108 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003109 fh_->ChangeField(field1);
3110 StringPiece name1(fh_->GetName());
3111 fh_->ChangeField(field2);
3112 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003113 return name1 < name2;
3114 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003115
3116 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003117};
3118
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003119bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003120 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003121 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003122
3123 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003124 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003125
3126 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003127 size_t size;
3128 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003129 if (is_static) {
3130 size = klass->GetClassSize();
3131 field_offset = Class::FieldsOffset();
3132 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003133 Class* super_class = klass->GetSuperClass();
3134 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003135 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003136 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003137 }
3138 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003139 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003140
Brian Carlstromdbc05252011-09-09 01:59:59 -07003141 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003142
Brian Carlstromdbc05252011-09-09 01:59:59 -07003143 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003144 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003145 std::deque<Field*> grouped_and_sorted_fields;
3146 for (size_t i = 0; i < num_fields; i++) {
3147 grouped_and_sorted_fields.push_back(fields->Get(i));
3148 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003149 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003150 std::sort(grouped_and_sorted_fields.begin(),
3151 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003152 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003153
3154 // References should be at the front.
3155 size_t current_field = 0;
3156 size_t num_reference_fields = 0;
3157 for (; current_field < num_fields; current_field++) {
3158 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003159 fh.ChangeField(field);
3160 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003161 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003162 if (isPrimitive) {
3163 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003164 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003165 grouped_and_sorted_fields.pop_front();
3166 num_reference_fields++;
3167 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003168 field->SetOffset(field_offset);
3169 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003170 }
3171
3172 // Now we want to pack all of the double-wide fields together. If
3173 // we're not aligned, though, we want to shuffle one 32-bit field
3174 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003175 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003176 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3177 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003178 fh.ChangeField(field);
3179 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003180 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3181 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003182 continue;
3183 }
3184 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003185 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003186 // drop the consumed field
3187 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3188 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003189 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003190 // whether we found a 32-bit field for padding or not, we advance
3191 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003192 }
3193
3194 // Alignment is good, shuffle any double-wide fields forward, and
3195 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003196 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003197 while (!grouped_and_sorted_fields.empty()) {
3198 Field* field = grouped_and_sorted_fields.front();
3199 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003200 fh.ChangeField(field);
3201 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003202 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003203 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003204 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003205 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003206 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003207 ? sizeof(uint64_t)
3208 : sizeof(uint32_t)));
3209 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003210 }
3211
Elliott Hughesadb460d2011-10-05 17:02:34 -07003212 // 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 -08003213 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3214 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003215 // We know there are no non-reference fields in the Reference classes, and we know
3216 // that 'referent' is alphabetically last, so this is easy...
3217 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003218 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003219 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003220 --num_reference_fields;
3221 }
3222
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003223#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003224 // Make sure that all reference fields appear before
3225 // non-reference fields, and all double-wide fields are aligned.
3226 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003227 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003228 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003229 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003230 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003231 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003232 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003233 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3234 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003235 fh.ChangeField(field);
3236 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003237 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003238 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003239 is_primitive = true; // We lied above, so we have to expect a lie here.
3240 }
3241 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003242 if (!seen_non_ref) {
3243 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003244 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003245 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003246 } else {
3247 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003248 }
3249 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003250 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003251 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003252 }
3253#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003254 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003255 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003256 if (is_static) {
3257 klass->SetNumReferenceStaticFields(num_reference_fields);
3258 klass->SetClassSize(size);
3259 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003260 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003261 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003262 klass->SetObjectSize(size);
3263 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003264 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003265 return true;
3266}
3267
3268// Set the bitmap of reference offsets, refOffsets, from the ifields
3269// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003270void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003271 uint32_t reference_offsets = 0;
3272 Class* super_class = klass->GetSuperClass();
3273 if (super_class != NULL) {
3274 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003275 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003276 if (reference_offsets == CLASS_WALK_SUPER) {
3277 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003278 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003279 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003280 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003281 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003282}
3283
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003284void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003285 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003286}
3287
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003288void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003289 uint32_t reference_offsets) {
3290 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003291 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3292 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003293 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003294 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003295 // All of the fields that contain object references are guaranteed
3296 // to be at the beginning of the fields list.
3297 for (size_t i = 0; i < num_reference_fields; ++i) {
3298 // Note that byte_offset is the offset from the beginning of
3299 // object, not the offset into instance data
3300 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003301 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003302 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3303 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3304 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003305 CHECK_NE(new_bit, 0U);
3306 reference_offsets |= new_bit;
3307 } else {
3308 reference_offsets = CLASS_WALK_SUPER;
3309 break;
3310 }
3311 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003312 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003313 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003314 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003315 } else {
3316 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003317 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003318}
3319
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003320String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003321 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003322 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003323 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003324 if (resolved != NULL) {
3325 return resolved;
3326 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003327 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3328 int32_t utf16_length = dex_file.GetStringLength(string_id);
3329 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003330 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003331 dex_cache->SetResolvedString(string_idx, string);
3332 return string;
3333}
3334
3335Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003336 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003337 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003338 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003339 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003340 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003341 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003342 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003343 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003344 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003345 // TODO: we used to throw here if resolved's class loader was not the
3346 // boot class loader. This was to permit different classes with the
3347 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003348 dex_cache->SetResolvedType(type_idx, resolved);
3349 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003350 CHECK(Thread::Current()->IsExceptionPending())
3351 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003352 // Convert a ClassNotFoundException to a NoClassDefFoundError
3353 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3354 Thread::Current()->ClearException();
3355 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3356 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003357 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003358 }
3359 return resolved;
3360}
3361
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003362Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3363 uint32_t method_idx,
3364 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003365 ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003366 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003367 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003368 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3369 if (resolved != NULL) {
3370 return resolved;
3371 }
3372 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3373 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3374 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003375 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003376 return NULL;
3377 }
3378
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003379 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003380 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003381 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003382 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003383 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003384 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003385 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003386
3387 if (resolved == NULL) {
3388 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3389 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3390 if (is_direct) {
3391 resolved = klass->FindDirectMethod(name, signature);
3392 } else if (klass->IsInterface()) {
3393 resolved = klass->FindInterfaceMethod(name, signature);
3394 } else {
3395 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003396 // If a virtual method isn't found, search the direct methods. This can
3397 // happen when trying to access private methods directly, and allows the
3398 // proper exception to be thrown in the caller.
3399 if (resolved == NULL) {
3400 resolved = klass->FindDirectMethod(name, signature);
3401 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003402 }
3403 if (resolved == NULL) {
3404 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3405 return NULL;
3406 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003407 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003408 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003409 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003410}
3411
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003412Field* ClassLinker::ResolveField(const DexFile& dex_file,
3413 uint32_t field_idx,
3414 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003415 ClassLoader* class_loader,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003416 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003417 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003418 Field* resolved = dex_cache->GetResolvedField(field_idx);
3419 if (resolved != NULL) {
3420 return resolved;
3421 }
3422 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3423 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3424 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003425 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003426 return NULL;
3427 }
3428
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003429 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003430 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003431 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003432 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003433 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003434
3435 if (resolved == NULL) {
3436 const char* name = dex_file.GetFieldName(field_id);
3437 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3438 if (is_static) {
3439 resolved = klass->FindStaticField(name, type);
3440 } else {
3441 resolved = klass->FindInstanceField(name, type);
3442 }
3443 if (resolved == NULL) {
3444 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3445 return NULL;
3446 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003447 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003448 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003449 return resolved;
3450}
3451
3452Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3453 uint32_t field_idx,
3454 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003455 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003456 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003457 Field* resolved = dex_cache->GetResolvedField(field_idx);
3458 if (resolved != NULL) {
3459 return resolved;
3460 }
3461 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3462 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3463 if (klass == NULL) {
3464 DCHECK(Thread::Current()->IsExceptionPending());
3465 return NULL;
3466 }
3467
3468 const char* name = dex_file.GetFieldName(field_id);
3469 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3470 resolved = klass->FindField(name, type);
3471 if (resolved != NULL) {
3472 dex_cache->SetResolvedField(field_idx, resolved);
3473 } else {
3474 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003475 }
3476 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003477}
3478
Ian Rogers19846512012-02-24 11:42:47 -08003479const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003480 Class* declaring_class = referrer->GetDeclaringClass();
3481 DexCache* dex_cache = declaring_class->GetDexCache();
3482 const DexFile& dex_file = FindDexFile(dex_cache);
3483 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003484 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003485}
3486
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003487void ClassLinker::DumpAllClasses(int flags) const {
3488 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3489 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3490 std::vector<Class*> all_classes;
3491 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003492 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003493 typedef Table::const_iterator It; // TODO: C++0x auto
3494 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3495 all_classes.push_back(it->second);
3496 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003497 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3498 all_classes.push_back(it->second);
3499 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003500 }
3501
3502 for (size_t i = 0; i < all_classes.size(); ++i) {
3503 all_classes[i]->DumpClass(std::cerr, flags);
3504 }
3505}
3506
Elliott Hughescac6cc72011-11-03 20:31:21 -07003507void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3508 MutexLock mu(classes_lock_);
3509 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3510 << classes_.size() << " allocated classes\n";
3511}
3512
Elliott Hughese27955c2011-08-26 15:21:24 -07003513size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003514 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003515 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003516}
3517
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003518pid_t ClassLinker::GetClassesLockOwner() {
3519 return classes_lock_.GetOwner();
3520}
3521
3522pid_t ClassLinker::GetDexLockOwner() {
3523 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003524}
3525
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003526void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3527 DCHECK(!init_done_);
3528
3529 DCHECK(klass != NULL);
3530 DCHECK(klass->GetClassLoader() == NULL);
3531
3532 DCHECK(class_roots_ != NULL);
3533 DCHECK(class_roots_->Get(class_root) == NULL);
3534 class_roots_->Set(class_root, klass);
3535}
3536
Logan Chien0c717dd2012-03-28 18:31:07 +08003537void ClassLinker::RelocateExecutable() {
Elliott Hughesf8349362012-06-18 15:00:06 -07003538 MutexLock mu(dex_lock_);
Logan Chien0c717dd2012-03-28 18:31:07 +08003539 for (size_t i = 0; i < oat_files_.size(); ++i) {
3540 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3541 }
3542}
3543
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003544} // namespace art