blob: 96baf59c6a266c1e682aed3442b5a62ede1b8a85 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Brian Carlstromd601af82012-01-06 10:15:19 -080019#include <fcntl.h>
20#include <sys/file.h>
21#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080022#include <sys/types.h>
23#include <sys/wait.h>
24
Brian Carlstromdbc05252011-09-09 01:59:59 -070025#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070026#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070028#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080032#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070033#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070034#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070036#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070037#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070038#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070039#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070040#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080041#include "object_utils.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080042#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070043#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070044#include "runtime_support.h"
TDYa1275bb86012012-04-11 05:57:28 -070045#if defined(ART_USE_LLVM_COMPILER)
46#include "compiler_llvm/runtime_support_llvm.h"
47#endif
Elliott Hughes4d0207c2011-10-03 19:14:34 -070048#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070049#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070050#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070051#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070052#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070053#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070054#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070055#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070056
57namespace art {
58
Elliott Hughes0512f022012-03-15 22:10:52 -070059static void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
60static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070061 va_list args;
62 va_start(args, fmt);
63 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
64 va_end(args);
65}
66
Elliott Hughes0512f022012-03-15 22:10:52 -070067static void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
68static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070069 va_list args;
70 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070071 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070072 va_end(args);
73}
74
Elliott Hughes0512f022012-03-15 22:10:52 -070075static void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
76static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070077 va_list args;
78 va_start(args, fmt);
79 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
80 va_end(args);
81}
82
Elliott Hughes0512f022012-03-15 22:10:52 -070083static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
84 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080085 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070086 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080087 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080088 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080089 std::string location(kh.GetLocation());
90 if (!location.empty()) {
91 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070092 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070093 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070094}
95
Elliott Hughes0512f022012-03-15 22:10:52 -070096static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
97 const StringPiece& name) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080098 ClassHelper kh(c);
99 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -0800100 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -0800101 << " in class " << kh.GetDescriptor() << " or its superclasses";
102 std::string location(kh.GetLocation());
103 if (!location.empty()) {
104 msg << " (defined in " << location << ")";
105 }
106 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
107}
108
Elliott Hughes0512f022012-03-15 22:10:52 -0700109static void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
110static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800111 va_list args;
112 va_start(args, fmt);
113 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
114 va_end(args);
115}
116
Elliott Hughes0512f022012-03-15 22:10:52 -0700117static void ThrowEarlierClassFailure(Class* c) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700118 /*
119 * The class failed to initialize on a previous attempt, so we want to throw
120 * a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
121 * failed in verification, in which case v2 5.4.1 says we need to re-throw
122 * the previous error.
123 */
124 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
125
Brian Carlstrom4d9716c2012-01-30 01:49:33 -0800126 CHECK(c->IsErroneous()) << PrettyClass(c);
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) {
Brian Carlstromae826982011-11-09 01:33:42 -0800663 for (size_t i = 0; i < oat_files_.size(); i++) {
664 const OatFile* oat_file = oat_files_[i];
665 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800666 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800667 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800668 return oat_file;
669 }
670 }
671 return NULL;
672}
673
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800674static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
675 uint32_t dex_location_checksum,
676 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800677 UniquePtr<OatFile> oat_file(
678 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800679 if (oat_file.get() == NULL) {
680 return NULL;
681 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700682 Runtime* runtime = Runtime::Current();
683 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
684 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
685 return NULL;
686 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800687 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
688 if (oat_dex_file == NULL) {
689 return NULL;
690 }
691 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
692 return NULL;
693 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700694 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800695 return oat_dex_file->OpenDexFile();
696}
697
698const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
699 const std::string& oat_location) {
700 uint32_t dex_location_checksum;
701 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
702 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
703 return NULL;
704 }
705
706 // Check if we already have an up-to-date output file
707 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
708 dex_location_checksum,
709 oat_location);
710 if (dex_file != NULL) {
711 return dex_file;
712 }
713
714 // Generate the output oat file for the dex file
715 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
716 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
717 if (file.get() == NULL) {
718 LOG(ERROR) << "Failed to create oat file: " << oat_location;
719 return NULL;
720 }
721 if (!class_linker->GenerateOatFile(dex_location, file->Fd(), oat_location)) {
722 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
723 return NULL;
724 }
725 // Open the oat from file descriptor we passed to GenerateOatFile
726 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
727 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
728 return NULL;
729 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800730 const OatFile* oat_file =
731 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800732 if (oat_file == NULL) {
733 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
734 return NULL;
735 }
736 class_linker->RegisterOatFile(*oat_file);
737 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
738 if (oat_dex_file == NULL) {
739 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
740 return NULL;
741 }
742 return oat_dex_file->OpenDexFile();
743}
744
745const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700746 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800747
Brian Carlstroma004aa92012-02-08 18:05:09 -0800748 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800749 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800750 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800751 }
752
Brian Carlstroma004aa92012-02-08 18:05:09 -0800753 // Look for an existing file next to dex, assuming its up-to-date if found
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800754 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800755 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800756 if (oat_file != NULL) {
757 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800758 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
jeffhao27cac652012-06-12 17:34:50 -0700759 RegisterOatFileLocked(*oat_file);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800760 return oat_dex_file->OpenDexFile();
761 }
762 // Look for an existing file in the art-cache, validating the result if found
763 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
764 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
765 oat_file = FindOatFileFromOatLocation(cache_location);
766 if (oat_file != NULL) {
767 uint32_t dex_location_checksum;
768 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
769 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
770 return NULL;
771 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700772
773 Runtime* runtime = Runtime::Current();
774 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
775 uint32_t image_checksum = image_header.GetOatChecksum();
776 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
777
Brian Carlstroma004aa92012-02-08 18:05:09 -0800778 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
779 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700780 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
781
782 if (image_check && dex_check) {
jeffhao27cac652012-06-12 17:34:50 -0700783 RegisterOatFileLocked(*oat_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800784 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700785 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700786 if (!image_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700787 std::string image_file(image_header.GetImageRoot(
788 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
789 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
790 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
791 << ") mismatch with " << image_file
792 << " (" << std::hex << image_checksum << ")--- regenerating";
793 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700794 if (!dex_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700795 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
796 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
797 << ") mismatch with " << dex_location
798 << " (" << std::hex << dex_location_checksum << ")--- regenerating";
799 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800800 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700801 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800802 }
jeffhao262bf462011-10-20 18:36:32 -0700803 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800804 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
805
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800806 // Try to generate oat file if it wasn't found or was obsolete.
807 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
808 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700809}
810
Brian Carlstromae826982011-11-09 01:33:42 -0800811const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700812 for (size_t i = 0; i < oat_files_.size(); i++) {
813 const OatFile* oat_file = oat_files_[i];
814 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800815 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700816 return oat_file;
817 }
818 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700819 return NULL;
820}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700821
Brian Carlstromae826982011-11-09 01:33:42 -0800822const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800823 MutexLock mu(dex_lock_);
824 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
825 if (oat_file != NULL) {
826 return oat_file;
827 }
828
Logan Chien0c717dd2012-03-28 18:31:07 +0800829 oat_file = OatFile::Open(oat_location, oat_location, NULL,
830 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700831 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800832 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700833 }
Brian Carlstromae826982011-11-09 01:33:42 -0800834 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700835 return oat_file;
836}
837
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700838void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800839 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700840 CHECK(!init_done_);
841
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800842 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700843 ImageSpace* space = heap->GetImageSpace();
844 OatFile* oat_file = OpenOat(space);
845 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700846 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
847 CHECK(oat_file->GetOatHeader().GetImageFileLocation() == "");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700848 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
849 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700850
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700851 // Special case of setting up the String class early so that we can test arbitrary objects
852 // as being Strings or not
853 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
854 ->AsObjectArray<Class>()->Get(kJavaLangString);
855 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800856
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700857 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
858 static_cast<uint32_t>(dex_caches->GetLength()));
859 for (int i = 0; i < dex_caches->GetLength(); i++) {
860 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
861 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
862 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
863 const DexFile* dex_file = oat_dex_file->OpenDexFile();
864 if (dex_file == NULL) {
865 LOG(FATAL) << "Failed to open dex file " << dex_file_location
866 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700867 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700868
869 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
870
871 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700872 }
873
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800874 HeapBitmap* heap_bitmap = heap->GetLiveBits();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700875 DCHECK(heap_bitmap != NULL);
876
Brian Carlstroma663ea52011-08-19 23:33:41 -0700877 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700878 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700879
880 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800881 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700882 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700883 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700884
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800885 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700886 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
887 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800888 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700889 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700890 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700891 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
892 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
893 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
894 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
895 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
896 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
897 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
898 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700899 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Ian Rogers5167c972012-02-03 10:41:20 -0800900 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700901 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700902
903 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700904
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800905 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700906}
907
Brian Carlstrom78128a62011-09-15 17:21:19 -0700908void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700909 DCHECK(obj != NULL);
910 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700911 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700912
Elliott Hughesdbb40792011-11-18 17:05:22 -0800913 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700914 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700915 return;
916 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700917 if (obj->IsClass()) {
918 // restore class to ClassLinker::classes_ table
919 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800920 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800921 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
922 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700923 return;
924 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700925}
926
927// Keep in sync with InitCallback. Anything we visit, we need to
928// reinit references to when reinitializing a ClassLinker from a
929// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700930void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
931 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700932
933 for (size_t i = 0; i < dex_caches_.size(); i++) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700934 visitor(dex_caches_[i], arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700935 }
936
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700937 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700938 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700939 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700940 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700941 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700942 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700943
944 // We deliberately ignore the class roots in the image since we
945 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700946 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700947
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700948 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700949}
950
Elliott Hughesa2155262011-11-16 16:26:58 -0800951void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
952 MutexLock mu(classes_lock_);
953 typedef Table::const_iterator It; // TODO: C++0x auto
954 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
955 if (!visitor(it->second, arg)) {
956 return;
957 }
958 }
959 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
960 if (!visitor(it->second, arg)) {
961 return;
962 }
963 }
964}
965
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700966ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700967 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700968 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700969 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700970 BooleanArray::ResetArrayClass();
971 ByteArray::ResetArrayClass();
972 CharArray::ResetArrayClass();
973 DoubleArray::ResetArrayClass();
974 FloatArray::ResetArrayClass();
975 IntArray::ResetArrayClass();
976 LongArray::ResetArrayClass();
977 ShortArray::ResetArrayClass();
978 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -0800979 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700980 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700981 STLDeleteElements(&boot_class_path_);
982 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700983}
984
985DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700986 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
987 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700988 return NULL;
989 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700990 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
991 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700992 return NULL;
993 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700994 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
995 if (strings.get() == NULL) {
996 return NULL;
997 }
998 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
999 if (types.get() == NULL) {
1000 return NULL;
1001 }
1002 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1003 if (methods.get() == NULL) {
1004 return NULL;
1005 }
1006 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1007 if (fields.get() == NULL) {
1008 return NULL;
1009 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001010 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1011 if (initialized_static_storage.get() == NULL) {
1012 return NULL;
1013 }
1014
1015 dex_cache->Init(location.get(),
1016 strings.get(),
1017 types.get(),
1018 methods.get(),
1019 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001020 initialized_static_storage.get());
1021 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001022}
1023
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001024InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1025 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001026 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1027 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001028 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001029 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001030}
1031
Brian Carlstrom4873d462011-08-21 15:23:39 -07001032Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1033 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001034 Heap* heap = Runtime::Current()->GetHeap();
1035 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001036 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001037 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001038 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001039}
1040
Brian Carlstrom4873d462011-08-21 15:23:39 -07001041Class* ClassLinker::AllocClass(size_t class_size) {
1042 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001043}
1044
Jesse Wilson35baaab2011-08-10 16:18:03 -04001045Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001046 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001047}
1048
1049Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001050 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001051}
1052
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001053ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1054 return ObjectArray<StackTraceElement>::Alloc(
1055 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1056 length);
1057}
1058
Brian Carlstromaded5f72011-10-07 17:15:04 -07001059Class* EnsureResolved(Class* klass) {
1060 DCHECK(klass != NULL);
1061 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001062 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001063 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001064 ObjectLock lock(klass);
1065 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001066 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001067 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001068 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001069 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001070 return NULL;
1071 }
1072 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001073 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001074 lock.Wait();
1075 }
1076 }
1077 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001078 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001079 return NULL;
1080 }
1081 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001082 CHECK(klass->IsResolved()) << PrettyClass(klass);
1083 CHECK(!self->IsExceptionPending())
1084 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1085 return klass;
1086}
1087
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001088Class* ClassLinker::FindSystemClass(const char* descriptor) {
1089 return FindClass(descriptor, NULL);
1090}
1091
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001092Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001093 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001094 Thread* self = Thread::Current();
1095 DCHECK(self != NULL);
1096 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001097 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001098 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1099 // for primitive classes that aren't backed by dex files.
1100 return FindPrimitiveClass(descriptor[0]);
1101 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001102 // Find the class in the loaded classes table.
1103 Class* klass = LookupClass(descriptor, class_loader);
1104 if (klass != NULL) {
1105 return EnsureResolved(klass);
1106 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001107 // Class is not yet loaded.
1108 if (descriptor[0] == '[') {
1109 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001110
Jesse Wilson47daf872011-11-23 11:42:45 -05001111 } else if (class_loader == NULL) {
1112 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1113 if (pair.second != NULL) {
1114 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1115 }
1116
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001117 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001118 // first try the boot class path
1119 Class* system_class = FindSystemClass(descriptor);
1120 if (system_class != NULL) {
1121 return system_class;
1122 }
1123 CHECK(self->IsExceptionPending());
1124 self->ClearException();
1125
1126 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001127 const std::vector<const DexFile*>& class_path
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001128 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001129 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001130 if (pair.second != NULL) {
1131 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001132 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001133
1134 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001135 std::string class_name_string(DescriptorToDot(descriptor));
Elliott Hughes34e06962012-04-09 13:55:55 -07001136 ScopedThreadStateChange tsc(self, kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001137 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001138 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1139 if (class_name_object.get() == NULL) {
1140 return NULL;
1141 }
1142 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Elliott Hughes9c750f92012-04-05 12:07:59 -07001143 CHECK(class_loader_object.get() != NULL);
Elliott Hughesa4f94742012-05-29 16:28:38 -07001144 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(),
1145 WellKnownClasses::java_lang_ClassLoader_loadClass,
Ian Rogers761bfa82012-01-11 10:14:05 -08001146 class_name_object.get()));
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001147 if (env->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001148 // If the ClassLoader threw, pass that exception up.
1149 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001150 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001151 // broken loader - throw NPE to be compatible with Dalvik
1152 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1153 class_name_string.c_str());
1154 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001155 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001156 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001157 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001158 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001159 }
1160
Elliott Hughes82914b62012-04-09 15:56:29 -07001161 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001162 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001163}
1164
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001165Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001166 const ClassLoader* class_loader,
1167 const DexFile& dex_file,
1168 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001169 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001170 // Load the class from the dex file.
1171 if (!init_done_) {
1172 // finish up init of hand crafted class_roots_
1173 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001174 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001175 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001176 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001177 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001178 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001179 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001180 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001181 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001182 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001183 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001184 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001185 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001186 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001187 }
1188 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001189 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001190 }
1191 klass->SetDexCache(FindDexCache(dex_file));
1192 LoadClass(dex_file, dex_class_def, klass, class_loader);
1193 // Check for a pending exception during load
1194 Thread* self = Thread::Current();
1195 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001196 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001197 return NULL;
1198 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001199 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001200 klass->SetClinitThreadId(self->GetTid());
1201 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001202 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1203 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001204 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001205 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001206 }
1207 // Finish loading (if necessary) by finding parents
1208 CHECK(!klass->IsLoaded());
1209 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1210 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001211 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001212 lock.NotifyAll();
1213 return NULL;
1214 }
1215 CHECK(klass->IsLoaded());
1216 // Link the class (if necessary)
1217 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001218 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001219 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001220 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001221 lock.NotifyAll();
1222 return NULL;
1223 }
1224 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001225
1226 /*
1227 * We send CLASS_PREPARE events to the debugger from here. The
1228 * definition of "preparation" is creating the static fields for a
1229 * class and initializing them to the standard default values, but not
1230 * executing any code (that comes later, during "initialization").
1231 *
1232 * We did the static preparation in LinkClass.
1233 *
1234 * The class has been prepared and resolved but possibly not yet verified
1235 * at this point.
1236 */
1237 Dbg::PostClassPrepare(klass.get());
1238
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001239 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001240}
1241
Brian Carlstrom4873d462011-08-21 15:23:39 -07001242// Precomputes size that will be needed for Class, matching LinkStaticFields
1243size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1244 const DexFile::ClassDef& dex_class_def) {
1245 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001246 size_t num_ref = 0;
1247 size_t num_32 = 0;
1248 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001249 if (class_data != NULL) {
1250 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1251 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001252 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001253 char c = descriptor[0];
1254 if (c == 'L' || c == '[') {
1255 num_ref++;
1256 } else if (c == 'J' || c == 'D') {
1257 num_64++;
1258 } else {
1259 num_32++;
1260 }
1261 }
1262 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001263 // start with generic class data
1264 size_t size = sizeof(Class);
1265 // follow with reference fields which must be contiguous at start
1266 size += (num_ref * sizeof(uint32_t));
1267 // if there are 64-bit fields to add, make sure they are aligned
1268 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1269 if (num_32 != 0) {
1270 // use an available 32-bit field for padding
1271 num_32--;
1272 }
1273 size += sizeof(uint32_t); // either way, we are adding a word
1274 DCHECK_EQ(size, RoundUp(size, 8));
1275 }
1276 // tack on any 64-bit fields now that alignment is assured
1277 size += (num_64 * sizeof(uint64_t));
1278 // tack on any remaining 32-bit fields
1279 size += (num_32 * sizeof(uint32_t));
1280 return size;
1281}
1282
Ian Rogers19846512012-02-24 11:42:47 -08001283const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1284 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001285 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1286 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1287 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1288 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1289 uint32_t class_def_index;
1290 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1291 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1292 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1293 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1294 return oat_class;
1295}
1296
TDYa12785321912012-04-01 15:24:56 -07001297const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001298 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001299 // method for direct methods (or virtual methods made direct).
1300 Class* declaring_class = method->GetDeclaringClass();
1301 size_t oat_method_index;
1302 if (method->IsStatic() || method->IsDirect()) {
1303 // Simple case where the oat method index was stashed at load time.
1304 oat_method_index = method->GetMethodIndex();
1305 } else {
1306 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1307 // by search for its position in the declared virtual methods.
1308 oat_method_index = declaring_class->NumDirectMethods();
1309 size_t end = declaring_class->NumVirtualMethods();
1310 bool found = false;
1311 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001312 if (declaring_class->GetVirtualMethod(i) == method) {
1313 found = true;
1314 break;
1315 }
Ian Rogersf320b632012-03-13 18:47:47 -07001316 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001317 }
1318 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1319 }
1320 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001321 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001322 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001323 return oat_class->GetOatMethod(oat_method_index);
1324}
1325
1326// Special case to get oat code without overwriting a trampoline.
1327const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001328 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001329 return GetOatMethodFor(method).GetCode();
1330}
1331
1332void ClassLinker::LinkOatCodeFor(Method* method) {
1333 Class* declaring_class = method->GetDeclaringClass();
1334 ClassHelper kh(declaring_class);
1335 const OatFile* oat_file = FindOpenedOatFileForDexFile(kh.GetDexFile());
1336 if (oat_file != NULL) {
1337 // NOTE: We have to check the availability of OatFile first. Because
1338 // GetOatMethodFor(...) will try to find the OatFile and there's
1339 // an assert in GetOatMethodFor(...). Besides, due to the return
1340 // type of OatClass::GetOatMethod(...), we can't return a failure value
1341 // back.
1342
1343 // TODO: Remove this workaround.
TDYa12705fe3b62012-04-21 00:28:54 -07001344 OatFile::OatMethod oat_method = GetOatMethodFor(method);
1345 if (method->GetCode() == NULL) {
1346 method->SetCode(oat_method.GetCode());
1347 }
1348 if (method->GetInvokeStub() == NULL) {
1349 method->SetInvokeStub(oat_method.GetInvokeStub());
1350 }
TDYa12785321912012-04-01 15:24:56 -07001351 }
Ian Rogers19846512012-02-24 11:42:47 -08001352}
1353
1354void ClassLinker::FixupStaticTrampolines(Class* klass) {
1355 ClassHelper kh(klass);
1356 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1357 CHECK(dex_class_def != NULL);
1358 const DexFile& dex_file = kh.GetDexFile();
1359 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1360 if (class_data == NULL) {
1361 return; // no fields or methods - for example a marker interface
1362 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001363 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001364 // OAT file unavailable
1365 return;
1366 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001367 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1368 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001369 ClassDataItemIterator it(dex_file, class_data);
1370 // Skip fields
1371 while (it.HasNextStaticField()) {
1372 it.Next();
1373 }
1374 while (it.HasNextInstanceField()) {
1375 it.Next();
1376 }
1377 size_t method_index = 0;
1378 // Link the code of methods skipped by LinkCode
1379 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1380 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1381 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001382 if (Runtime::Current()->IsMethodTracingActive()) {
1383 Trace* tracer = Runtime::Current()->GetTracer();
1384 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1385 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1386 tracer->ResetSavedCode(method);
1387 method->SetCode(code);
1388 tracer->SaveAndUpdateCode(method);
1389 }
1390 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001391 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1392 CHECK(code != NULL);
1393 method->SetCode(code);
1394 }
1395 method_index++;
1396 }
1397}
1398
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001399void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001400 // Every kind of method should at least get an invoke stub from the oat_method.
1401 // non-abstract methods also get their code pointers.
1402 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001403 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001404
Ian Rogers19846512012-02-24 11:42:47 -08001405 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001406 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001407 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001408 return;
1409 }
Ian Rogers19846512012-02-24 11:42:47 -08001410
1411 if (method->IsStatic() && !method->IsConstructor()) {
1412 // For static methods excluding the class initializer, install the trampoline
1413 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001414 }
1415 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001416 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001417 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001418 }
1419
1420 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001421 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001422 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001423 }
1424}
1425
Brian Carlstromf615a612011-07-23 12:50:34 -07001426void ClassLinker::LoadClass(const DexFile& dex_file,
1427 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001428 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001429 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001430 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001431 CHECK(klass->GetDexCache() != NULL);
1432 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001433 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001434 CHECK(descriptor != NULL);
1435
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001436 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001437 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001438 // Make sure that none of our runtime-only flags are set.
1439 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001440 klass->SetAccessFlags(access_flags);
1441 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001442 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001443 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001444
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001445 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001446
Ian Rogers0571d352011-11-03 19:51:38 -07001447 // Load fields fields.
1448 const byte* class_data = dex_file.GetClassData(dex_class_def);
1449 if (class_data == NULL) {
1450 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001451 }
Ian Rogers0571d352011-11-03 19:51:38 -07001452 ClassDataItemIterator it(dex_file, class_data);
1453 if (it.NumStaticFields() != 0) {
1454 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1455 }
1456 if (it.NumInstanceFields() != 0) {
1457 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1458 }
1459 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1460 SirtRef<Field> sfield(AllocField());
1461 klass->SetStaticField(i, sfield.get());
1462 LoadField(dex_file, it, klass, sfield);
1463 }
1464 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1465 SirtRef<Field> ifield(AllocField());
1466 klass->SetInstanceField(i, ifield.get());
1467 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001468 }
1469
Brian Carlstromf5822582012-03-19 22:34:31 -07001470 UniquePtr<const OatFile::OatClass> oat_class;
1471 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1472 oat_class.reset(GetOatClass(dex_file, descriptor));
1473 }
Ian Rogers19846512012-02-24 11:42:47 -08001474
Ian Rogers0571d352011-11-03 19:51:38 -07001475 // Load methods.
1476 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001477 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001478 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001479 }
Ian Rogers0571d352011-11-03 19:51:38 -07001480 if (it.NumVirtualMethods() != 0) {
1481 // TODO: append direct methods to class object
1482 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001483 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001484 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001485 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1486 SirtRef<Method> method(AllocMethod());
1487 klass->SetDirectMethod(i, method.get());
1488 LoadMethod(dex_file, it, klass, method);
1489 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001490 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001491 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001492 method->SetMethodIndex(class_def_method_index);
1493 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001494 }
1495 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1496 SirtRef<Method> method(AllocMethod());
1497 klass->SetVirtualMethod(i, method.get());
1498 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001499 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001500 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001501 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001502 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001503 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001504 }
1505 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001506}
1507
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001508void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001509 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001510 uint32_t field_idx = it.GetMemberIndex();
1511 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001512 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001513 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001514}
1515
Ian Rogers0571d352011-11-03 19:51:38 -07001516void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1517 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001518 uint32_t dex_method_idx = it.GetMemberIndex();
1519 dst->SetDexMethodIndex(dex_method_idx);
1520 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001521 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001522
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001523
1524 StringPiece method_name(dex_file.GetMethodName(method_id));
1525 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001526 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1527 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001528
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001529 if (method_name == "finalize") {
1530 // Create the prototype for a signature of "()V"
1531 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1532 if (void_string_id != NULL) {
1533 const DexFile::TypeId* void_type_id =
1534 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1535 if (void_type_id != NULL) {
1536 std::vector<uint16_t> no_args;
1537 const DexFile::ProtoId* finalizer_proto =
1538 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1539 if (finalizer_proto != NULL) {
1540 // We have the prototype in the dex file
1541 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1542 klass->SetFinalizable();
1543 } else {
1544 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1545 // The Enum class declares a "final" finalize() method to prevent subclasses from
1546 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1547 // subclasses, so we exclude it here.
1548 // We also want to avoid setting the flag on Object, where we know that finalize() is
1549 // empty.
1550 if (klass_descriptor != "Ljava/lang/Object;" &&
1551 klass_descriptor != "Ljava/lang/Enum;") {
1552 klass->SetFinalizable();
1553 }
1554 }
1555 }
1556 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001557 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001558 }
Ian Rogers0571d352011-11-03 19:51:38 -07001559 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001560 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001561
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001562 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001563 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001564 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001565 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001566}
1567
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001568void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001569 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1570 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001571}
1572
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001573void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1574 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001575 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001576 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001577}
1578
Brian Carlstromaded5f72011-10-07 17:15:04 -07001579bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001580 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001581 for (size_t i = 0; i != dex_files_.size(); ++i) {
1582 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001583 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001584 }
1585 }
1586 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001587}
1588
Brian Carlstromaded5f72011-10-07 17:15:04 -07001589bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001590 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001591 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001592}
1593
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001594void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001595 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001596 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001597 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001598 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001599 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001600}
1601
Brian Carlstromaded5f72011-10-07 17:15:04 -07001602void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001603 {
1604 MutexLock mu(dex_lock_);
1605 if (IsDexFileRegisteredLocked(dex_file)) {
1606 return;
1607 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001608 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001609 // Don't alloc while holding the lock, since allocation may need to
1610 // suspend all threads and another thread may need the dex_lock_ to
1611 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001612 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001613 {
1614 MutexLock mu(dex_lock_);
1615 if (IsDexFileRegisteredLocked(dex_file)) {
1616 return;
1617 }
1618 RegisterDexFileLocked(dex_file, dex_cache);
1619 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001620}
1621
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001622void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001623 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001624 RegisterDexFileLocked(dex_file, dex_cache);
1625}
1626
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001627const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001628 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001629 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001630 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1631 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001632 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001633 }
1634 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001635 LOG(FATAL) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001636 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001637}
1638
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001639DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001640 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001641 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001642 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001643 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001644 }
1645 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001646 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001647 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001648}
1649
Ian Rogers19846512012-02-24 11:42:47 -08001650void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1651 MutexLock mu(dex_lock_);
1652 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1653 dex_caches_[i]->Fixup(resolution_method);
1654 }
1655}
1656
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001657Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1658 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001659 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001660 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001661 CHECK(primitive_class != NULL);
1662 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001663 primitive_class->SetPrimitiveType(type);
1664 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001665 Class* existing = InsertClass(descriptor, primitive_class, false);
1666 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001667 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001668}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001669
Brian Carlstrombe977852011-07-19 14:54:54 -07001670// Create an array class (i.e. the class object for the array, not the
1671// array itself). "descriptor" looks like "[C" or "[[[[B" or
1672// "[Ljava/lang/String;".
1673//
1674// If "descriptor" refers to an array of primitives, look up the
1675// primitive type's internally-generated class object.
1676//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001677// "class_loader" is the class loader of the class that's referring to
1678// us. It's used to ensure that we're looking for the element type in
1679// the right context. It does NOT become the class loader for the
1680// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001681//
1682// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001683Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001684 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001685
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001686 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001687 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001688 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001689 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001690 return NULL;
1691 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001692
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001693 // See if the component type is already loaded. Array classes are
1694 // always associated with the class loader of their underlying
1695 // element type -- an array of Strings goes with the loader for
1696 // java/lang/String -- so we need to look for it there. (The
1697 // caller should have checked for the existence of the class
1698 // before calling here, but they did so with *their* class loader,
1699 // not the component type's loader.)
1700 //
1701 // If we find it, the caller adds "loader" to the class' initiating
1702 // loader list, which should prevent us from going through this again.
1703 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001704 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001705 // are the same, because our caller (FindClass) just did the
1706 // lookup. (Even if we get this wrong we still have correct behavior,
1707 // because we effectively do this lookup again when we add the new
1708 // class to the hash table --- necessary because of possible races with
1709 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001710 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001711 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001712 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001713 return new_class;
1714 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001715 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001716
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001717 // Fill out the fields in the Class.
1718 //
1719 // It is possible to execute some methods against arrays, because
1720 // all arrays are subclasses of java_lang_Object_, so we need to set
1721 // up a vtable. We can just point at the one in java_lang_Object_.
1722 //
1723 // Array classes are simple enough that we don't need to do a full
1724 // link step.
1725
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001726 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001727 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001728 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001729 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001730 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001731 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001732 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001733 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001734 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001735 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001736 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001737 }
1738 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001739 if (new_class.get() == NULL) {
1740 new_class.reset(AllocClass(sizeof(Class)));
1741 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001742 return NULL;
1743 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001744 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001745 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001746 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001747 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001748 new_class->SetSuperClass(java_lang_Object);
1749 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001750 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001751 new_class->SetClassLoader(component_type->GetClassLoader());
1752 new_class->SetStatus(Class::kStatusInitialized);
1753 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001754 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001755
1756
1757 // All arrays have java/lang/Cloneable and java/io/Serializable as
1758 // interfaces. We need to set that up here, so that stuff like
1759 // "instanceof" works right.
1760 //
1761 // Note: The GC could run during the call to FindSystemClass,
1762 // so we need to make sure the class object is GC-valid while we're in
1763 // there. Do this by clearing the interface list so the GC will just
1764 // think that the entries are null.
1765
1766
1767 // Use the single, global copies of "interfaces" and "iftable"
1768 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001769 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001770 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001771
1772 // Inherit access flags from the component type. Arrays can't be
1773 // used as a superclass or interface, so we want to add "final"
1774 // and remove "interface".
1775 //
1776 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001777 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001778 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001779 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1780 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001781
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001782 Class* existing = InsertClass(descriptor, new_class.get(), false);
1783 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001784 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001785 }
1786 // Another thread must have loaded the class after we
1787 // started but before we finished. Abandon what we've
1788 // done.
1789 //
1790 // (Yes, this happens.)
1791
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001792 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001793}
1794
1795Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001796 switch (Primitive::GetType(type)) {
1797 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001798 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001799 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001800 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001801 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001802 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001803 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001804 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001805 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001806 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001807 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001808 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001809 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001810 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001811 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001812 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001813 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001814 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001815 case Primitive::kPrimNot:
1816 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001817 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001818 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001819 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001820 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001821}
1822
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001823Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001824 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001825 DexCache* dex_cache = klass->GetDexCache();
1826 std::string source;
1827 if (dex_cache != NULL) {
1828 source += " from ";
1829 source += dex_cache->GetLocation()->ToModifiedUtf8();
1830 }
1831 LOG(INFO) << "Loaded class " << descriptor << source;
1832 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001833 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001834 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001835 Table& classes = image_class ? image_classes_ : classes_;
1836 Class* existing = LookupClass(descriptor.data(), klass->GetClassLoader(), hash, classes);
1837#ifndef NDEBUG
1838 // Check we don't have the class in the other table in error
1839 Table& other_classes = image_class ? classes_ : image_classes_;
1840 CHECK(LookupClass(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
1841#endif
1842 if (existing != NULL) {
1843 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001844 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001845 classes.insert(std::make_pair(hash, klass));
1846 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001847}
1848
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001849bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1850 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001851 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001852 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001853 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001854 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001855 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001856 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001857 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001858 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001859 classes_.erase(it);
1860 return true;
1861 }
1862 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001863 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001864 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001865 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001866 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001867 image_classes_.erase(it);
1868 return true;
1869 }
1870 }
1871 return false;
1872}
1873
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001874Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1875 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001876 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001877 // TODO: determine if its better to search classes_ or image_classes_ first
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001878 Class* klass = LookupClass(descriptor, class_loader, hash, classes_);
1879 if (klass != NULL) {
1880 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001881 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001882 return LookupClass(descriptor, class_loader, hash, image_classes_);
1883}
1884
1885Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader,
1886 size_t hash, const Table& classes) {
1887 ClassHelper kh(NULL, this);
1888 typedef Table::const_iterator It; // TODO: C++0x auto
1889 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001890 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001891 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001892 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001893#ifndef NDEBUG
1894 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001895 Class* klass2 = it->second;
1896 kh.ChangeClass(klass2);
1897 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001898 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001899 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001900 }
1901#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001902 return klass;
1903 }
1904 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001905 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001906}
1907
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001908void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001909 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001910 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001911 MutexLock mu(classes_lock_);
1912 typedef Table::const_iterator It; // TODO: C++0x auto
1913 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001914 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001915 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001916 Class* klass = it->second;
1917 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001918 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001919 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001920 }
1921 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001922 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001923 Class* klass = it->second;
1924 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001925 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001926 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001927 }
1928 }
1929}
1930
TDYa1273db52852012-04-01 15:11:43 -07001931#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogersc20a83e2012-01-18 18:15:32 -08001932static void CheckMethodsHaveGcMaps(Class* klass) {
1933 if (!Runtime::Current()->IsStarted()) {
1934 return;
1935 }
1936 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1937 Method* method = klass->GetDirectMethod(i);
1938 if (!method->IsNative() && !method->IsAbstract()) {
1939 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1940 }
1941 }
1942 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1943 Method* method = klass->GetVirtualMethod(i);
1944 if (!method->IsNative() && !method->IsAbstract()) {
1945 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1946 }
1947 }
1948}
1949#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001950static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08001951}
1952#endif
1953
jeffhao98eacac2011-09-14 16:11:53 -07001954void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001955 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08001956 ObjectLock lock(klass);
1957
jeffhao98eacac2011-09-14 16:11:53 -07001958 if (klass->IsVerified()) {
1959 return;
1960 }
1961
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001962 // The class might already be erroneous if we attempted to verify a subclass
1963 if (klass->IsErroneous()) {
1964 ThrowEarlierClassFailure(klass);
1965 return;
1966 }
1967
jeffhaoa9b3bf42012-06-06 17:18:39 -07001968 CHECK(klass->GetStatus() == Class::kStatusResolved ||
1969 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001970 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001971
Ian Rogers1c5eb702012-02-01 09:18:34 -08001972 // Verify super class
1973 Class* super = klass->GetSuperClass();
1974 std::string error_msg;
1975 if (super != NULL) {
1976 // Acquire lock to prevent races on verifying the super class
1977 ObjectLock lock(super);
1978
1979 if (!super->IsVerified() && !super->IsErroneous()) {
1980 Runtime::Current()->GetClassLinker()->VerifyClass(super);
1981 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07001982 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08001983 error_msg = "Rejecting class ";
1984 error_msg += PrettyDescriptor(klass);
1985 error_msg += " that attempts to sub-class erroneous class ";
1986 error_msg += PrettyDescriptor(super);
1987 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
1988 Thread* self = Thread::Current();
1989 SirtRef<Throwable> cause(self->GetException());
1990 if (cause.get() != NULL) {
1991 self->ClearException();
1992 }
1993 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
1994 if (cause.get() != NULL) {
1995 self->GetException()->SetCause(cause.get());
1996 }
1997 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
1998 klass->SetStatus(Class::kStatusError);
1999 return;
2000 }
2001 }
2002
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002003 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002004 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002005 Class::Status oat_file_class_status(Class::kStatusNotReady);
2006 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002007 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
2008 if (!preverified) {
2009 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2010 }
2011 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002012 if (!preverified && oat_file_class_status == Class::kStatusError) {
2013 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2014 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2015 }
Ian Rogersc4762272012-02-01 15:55:55 -08002016 DCHECK(!Thread::Current()->IsExceptionPending());
jeffhaof1e6b7c2012-06-05 18:33:30 -07002017 CHECK(verifier_failure == verifier::MethodVerifier::kNoFailure ||
2018 Runtime::Current()->IsCompiler());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002019 // Make sure all classes referenced by catch blocks are resolved
2020 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002021 klass->SetStatus(verifier_failure == verifier::MethodVerifier::kNoFailure ?
2022 Class::kStatusVerified : Class::kStatusRetryVerificationAtRuntime);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002023 // Sanity check that a verified class has GC maps on all methods
2024 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002025 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002026 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002027 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2028 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002029 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002030 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002031 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2032 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002033 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002034 }
jeffhao98eacac2011-09-14 16:11:53 -07002035}
2036
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002037bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2038 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002039 if (!Runtime::Current()->IsStarted()) {
2040 return false;
2041 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002042 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002043 return false;
2044 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002045 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2046 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002047 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002048 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002049 const char* descriptor = ClassHelper(klass).GetDescriptor();
2050 uint32_t class_def_index;
2051 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002052 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002053 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002054 CHECK(oat_class.get() != NULL)
2055 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002056 oat_file_class_status = oat_class->GetStatus();
2057 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002058 return true;
2059 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002060 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002061 // Compile time verification failed with a soft error. Compile time verification can fail
2062 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002063 // class ... {
2064 // Foo x;
2065 // .... () {
2066 // if (...) {
2067 // v1 gets assigned a type of resolved class Foo
2068 // } else {
2069 // v1 gets assigned a type of unresolved class Bar
2070 // }
2071 // iput x = v1
2072 // } }
2073 // when we merge v1 following the if-the-else it results in Conflict
2074 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2075 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2076 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2077 // at compile time).
2078 return false;
2079 }
jeffhao1ac29442012-03-26 11:37:32 -07002080 if (oat_file_class_status == Class::kStatusError) {
2081 // Compile time verification failed with a hard error. This is caused by invalid instructions
2082 // in the class. These errors are unrecoverable.
2083 return false;
2084 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002085 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002086 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2087 // not loading the class.
2088 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2089 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002090 return false;
2091 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002092 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002093 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2094
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002095 return false;
2096}
2097
2098void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2099 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2100 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2101 }
2102 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2103 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2104 }
2105}
2106
2107void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2108 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2109 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2110 if (code_item == NULL) {
2111 return; // native or abstract method
2112 }
2113 if (code_item->tries_size_ == 0) {
2114 return; // nothing to process
2115 }
2116 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2117 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2118 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2119 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2120 CatchHandlerIterator iterator(handlers_ptr);
2121 for (; iterator.HasNext(); iterator.Next()) {
2122 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2123 // unresolved exception types will be ignored by exception delivery
2124 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2125 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2126 if (exception_type == NULL) {
2127 DCHECK(Thread::Current()->IsExceptionPending());
2128 Thread::Current()->ClearException();
2129 }
2130 }
2131 }
2132 handlers_ptr = iterator.EndDataPointer();
2133 }
2134}
2135
Ian Rogersc2b44472011-12-14 21:17:17 -08002136static void CheckProxyConstructor(Method* constructor);
2137static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2138
Jesse Wilson95caa792011-10-12 18:14:17 -04002139Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002140 ClassLoader* loader, ObjectArray<Method>* methods,
2141 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002142 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002143 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002144 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002145 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002146 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002147 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002148 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002149 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002150 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002151 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002152
2153 klass->SetStatus(Class::kStatusIdx);
2154
2155 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2156
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002157 // Instance fields are inherited, but we add a couple of static fields...
2158 klass->SetSFields(AllocObjectArray<Field>(2));
2159 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2160 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2161 SirtRef<Field> interfaces_sfield(AllocField());
2162 klass->SetStaticField(0, interfaces_sfield.get());
2163 interfaces_sfield->SetDexFieldIndex(0);
2164 interfaces_sfield->SetDeclaringClass(klass.get());
2165 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2166 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2167 SirtRef<Field> throws_sfield(AllocField());
2168 klass->SetStaticField(1, throws_sfield.get());
2169 throws_sfield->SetDexFieldIndex(1);
2170 throws_sfield->SetDeclaringClass(klass.get());
2171 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002172
Ian Rogers466bb252011-10-14 03:29:56 -07002173 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002174 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002175 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002176
Ian Rogers466bb252011-10-14 03:29:56 -07002177 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002178 size_t num_virtual_methods = methods->GetLength();
2179 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2180 for (size_t i = 0; i < num_virtual_methods; ++i) {
TDYa127f4404052012-04-11 08:53:03 -07002181#if defined(ART_USE_LLVM_COMPILER)
2182 Method* method = methods->Get(i);
2183 // Ensure link.
2184 // TODO: Remove this after fixing the link problem by in-place linking.
2185 if (method->GetCode() == NULL || method->GetInvokeStub() == NULL) {
2186 Runtime::Current()->GetClassLinker()->LinkOatCodeFor(methods->Get(i));
2187 }
2188#endif
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002189 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002190 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002191 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002192
2193 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2194 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2195 DCHECK(!Thread::Current()->IsExceptionPending());
2196
2197 // Link the fields and virtual methods, creating vtable and iftables
2198 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002199 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002200 return NULL;
2201 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002202 interfaces_sfield->SetObject(NULL, interfaces);
2203 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002204 klass->SetStatus(Class::kStatusInitialized);
2205
2206 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002207 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002208 CHECK(klass->GetIFields() == NULL);
2209 CheckProxyConstructor(klass->GetDirectMethod(0));
2210 for (size_t i = 0; i < num_virtual_methods; ++i) {
2211 SirtRef<Method> prototype(methods->Get(i));
2212 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2213 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002214
2215 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2216 name->ToModifiedUtf8().c_str()));
2217 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2218
2219 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2220 name->ToModifiedUtf8().c_str()));
2221 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002222
2223 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002224 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002225 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2226 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002227 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002228}
2229
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002230std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2231 DCHECK(proxy_class->IsProxyClass());
2232 String* name = proxy_class->GetName();
2233 DCHECK(name != NULL);
2234 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2235}
2236
Ian Rogers16f93672012-02-14 12:29:06 -08002237Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2238 DCHECK(proxy_class->IsProxyClass());
2239 DCHECK(proxy_method->IsProxyMethod());
2240 // Locate the dex cache of the original interface/Object
2241 DexCache* dex_cache = NULL;
2242 {
2243 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2244 MutexLock mu(dex_lock_);
2245 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2246 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2247 dex_cache = dex_caches_[i];
2248 break;
2249 }
2250 }
2251 }
2252 CHECK(dex_cache != NULL);
2253 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2254 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2255 CHECK(resolved_method != NULL);
2256 return resolved_method;
2257}
2258
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002259
2260Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002261 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002262 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002263 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002264 Method* proxy_constructor = proxy_direct_methods->Get(2);
TDYa1275bb86012012-04-11 05:57:28 -07002265#if defined(ART_USE_LLVM_COMPILER)
2266 // Ensure link.
2267 // TODO: Remove this after fixing the link problem by in-place linking.
2268 art_fix_stub_from_code(proxy_constructor);
2269#endif
Ian Rogers466bb252011-10-14 03:29:56 -07002270 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2271 // code_ too)
2272 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2273 // Make this constructor public and fix the class to be our Proxy version
2274 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002275 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002276 return constructor;
2277}
2278
2279static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002280 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002281 MethodHelper mh(constructor);
2282 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002283 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002284 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002285}
2286
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002287Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2288 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2289 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002290 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2291 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002292 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002293 // as necessary
2294 Method* method = down_cast<Method*>(prototype->Clone());
2295
2296 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2297 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002298 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002299 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002300
Ian Rogers466bb252011-10-14 03:29:56 -07002301 // At runtime the method looks like a reference and argument saving method, clone the code
2302 // related parameters from this method.
2303 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2304 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2305 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2306 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002307#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002308 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002309#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002310 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2311 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002312#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002313
Ian Rogersc2b44472011-12-14 21:17:17 -08002314 return method;
2315}
Jesse Wilson95caa792011-10-12 18:14:17 -04002316
Ian Rogersc2b44472011-12-14 21:17:17 -08002317static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002318 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002319 CHECK(!prototype->IsFinal());
2320 CHECK(method->IsFinal());
2321 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002322
2323 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2324 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2325 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2326 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2327 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2328 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2329 method->GetDexCacheInitializedStaticStorage());
2330 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2331
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002332 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002333 MethodHelper mh2(prototype.get());
2334 CHECK_STREQ(mh.GetName(), mh2.GetName());
2335 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002336 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002337 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002338}
2339
Ian Rogers0045a292012-03-31 21:08:41 -07002340bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002341 CHECK(klass->IsResolved() || klass->IsErroneous())
2342 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002343
Carl Shapirob5573532011-07-12 18:22:59 -07002344 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002345
Brian Carlstrom25c33252011-09-18 15:58:35 -07002346 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002347 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002348 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002349 ObjectLock lock(klass);
2350
Brian Carlstromd1422f82011-09-28 11:37:09 -07002351 if (klass->GetStatus() == Class::kStatusInitialized) {
2352 return true;
2353 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002354
Brian Carlstromd1422f82011-09-28 11:37:09 -07002355 if (klass->IsErroneous()) {
2356 ThrowEarlierClassFailure(klass);
2357 return false;
2358 }
2359
jeffhaoebe2e0f2012-06-06 15:19:40 -07002360 if (klass->GetStatus() == Class::kStatusResolved ||
2361 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002362 VerifyClass(klass);
2363 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002364 if (klass->GetStatus() == Class::kStatusError) {
2365 CHECK(self->IsExceptionPending());
2366 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002367 return false;
2368 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002369 }
2370
Brian Carlstrom25c33252011-09-18 15:58:35 -07002371 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2372 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002373 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002374 // don't bother going to kStatusInitializing. We return false so that
2375 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002376 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2377 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002378 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002379 }
2380
Brian Carlstromd1422f82011-09-28 11:37:09 -07002381 // If the class is kStatusInitializing, either this thread is
2382 // initializing higher up the stack or another thread has beat us
2383 // to initializing and we need to wait. Either way, this
2384 // invocation of InitializeClass will not be responsible for
2385 // running <clinit> and will return.
2386 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002387 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002388 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002389 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002390 return true;
2391 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002392 // No. That's fine. Wait for another thread to finish initializing.
2393 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002394 }
2395
2396 if (!ValidateSuperClassDescriptors(klass)) {
2397 klass->SetStatus(Class::kStatusError);
2398 return false;
2399 }
2400
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002401 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002402
Elliott Hughesdcc24742011-09-07 14:02:44 -07002403 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002404 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002405 }
2406
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002407 uint64_t t0 = NanoTime();
2408
Ian Rogers0045a292012-03-31 21:08:41 -07002409 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002410 // Super class initialization failed, this can be because we can't run
2411 // super-class class initializers in which case we'll be verified.
2412 // Otherwise this class is erroneous.
2413 if (!can_run_clinit) {
2414 CHECK(klass->IsVerified());
2415 } else {
2416 CHECK(klass->IsErroneous());
2417 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002418 return false;
2419 }
2420
Ian Rogers0045a292012-03-31 21:08:41 -07002421 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002422
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002423 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002424 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002425 }
2426
Ian Rogers19846512012-02-24 11:42:47 -08002427 FixupStaticTrampolines(klass);
2428
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002429 uint64_t t1 = NanoTime();
2430
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002431 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002432 {
2433 ObjectLock lock(klass);
2434
2435 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002436 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002437 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002438 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002439 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002440 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2441 RuntimeStats* thread_stats = self->GetStats();
2442 ++global_stats->class_init_count;
2443 ++thread_stats->class_init_count;
2444 global_stats->class_init_time_ns += (t1 - t0);
2445 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002446 // Set the class as initialized except if we can't initialize static fields and static field
2447 // initialization is necessary.
2448 if (!can_init_statics && has_static_field_initializers) {
2449 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2450 success = false;
2451 } else {
2452 klass->SetStatus(Class::kStatusInitialized);
2453 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002454 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002455 ClassHelper kh(klass);
2456 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002457 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002458 }
2459 lock.NotifyAll();
2460 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002461 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002462}
2463
Brian Carlstromd1422f82011-09-28 11:37:09 -07002464bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2465 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002466 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002467 lock.Wait();
2468
2469 // When we wake up, repeat the test for init-in-progress. If
2470 // there's an exception pending (only possible if
2471 // "interruptShouldThrow" was set), bail out.
2472 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002473 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002474 klass->SetStatus(Class::kStatusError);
2475 return false;
2476 }
2477 // Spurious wakeup? Go back to waiting.
2478 if (klass->GetStatus() == Class::kStatusInitializing) {
2479 continue;
2480 }
2481 if (klass->IsErroneous()) {
2482 // The caller wants an exception, but it was thrown in a
2483 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002484 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002485 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002486 return false;
2487 }
2488 if (klass->IsInitialized()) {
2489 return true;
2490 }
2491 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2492 }
2493 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2494}
2495
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002496bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2497 if (klass->IsInterface()) {
2498 return true;
2499 }
2500 // begin with the methods local to the superclass
2501 if (klass->HasSuperClass() &&
2502 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2503 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002504 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2505 const Method* method = klass->GetVTable()->Get(i);
2506 if (method != super->GetVTable()->Get(i) &&
2507 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002508 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2509 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2510 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002511 return false;
2512 }
2513 }
2514 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002515 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2516 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2517 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002518 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2519 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002520 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002521 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2522 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002523 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2524 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2525 PrettyMethod(method).c_str(),
2526 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002527 return false;
2528 }
2529 }
2530 }
2531 }
2532 return true;
2533}
2534
Ian Rogers595799e2012-01-11 17:32:51 -08002535// Returns true if classes referenced by the signature of the method are the
2536// same classes in klass1 as they are in klass2.
2537bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2538 const Class* klass1,
2539 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002540 if (klass1 == klass2) {
2541 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002542 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002543 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002544 const DexFile::ProtoId& proto_id =
2545 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002546 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2547 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002548 if (descriptor == NULL) {
2549 break;
2550 }
2551 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2552 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002553 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002554 return false;
2555 }
2556 }
2557 }
2558 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002559 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002560 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002561 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002562 return false;
2563 }
2564 }
2565 return true;
2566}
2567
Ian Rogers595799e2012-01-11 17:32:51 -08002568// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2569bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2570 const Class* klass1,
2571 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002572 CHECK(descriptor != NULL);
2573 CHECK(klass1 != NULL);
2574 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002575 if (klass1 == klass2) {
2576 return true;
2577 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002578 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002579 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002580 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002581 }
Ian Rogers595799e2012-01-11 17:32:51 -08002582 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2583 if (found2 == NULL) {
2584 Thread::Current()->ClearException();
2585 }
2586 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002587}
2588
Ian Rogers0045a292012-03-31 21:08:41 -07002589bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002590 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002591 if (!klass->IsInterface() && klass->HasSuperClass()) {
2592 Class* super_class = klass->GetSuperClass();
2593 if (super_class->GetStatus() != Class::kStatusInitialized) {
2594 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002595 Thread* self = Thread::Current();
2596 klass->MonitorEnter(self);
Ian Rogers0045a292012-03-31 21:08:41 -07002597 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Elliott Hughes5f791332011-09-15 17:45:30 -07002598 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002599 // TODO: check for a pending exception
2600 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002601 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002602 // Don't set status to error when we can't run <clinit>.
2603 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2604 klass->SetStatus(Class::kStatusVerified);
2605 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002606 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002607 klass->SetStatus(Class::kStatusError);
2608 klass->NotifyAll();
2609 return false;
2610 }
2611 }
2612 }
2613 return true;
2614}
2615
Ian Rogers0045a292012-03-31 21:08:41 -07002616bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002617 CHECK(c != NULL);
2618 if (c->IsInitialized()) {
2619 return true;
2620 }
2621
Elliott Hughes5f791332011-09-15 17:45:30 -07002622 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002623 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002624 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002625 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002626 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002627 }
2628 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002629}
2630
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002631void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002632 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002633 const ClassLoader* cl = c->GetClassLoader();
2634 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002635 ClassDataItemIterator it(dex_file, class_data);
2636 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002637 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002638 }
2639}
2640
Ian Rogers0045a292012-03-31 21:08:41 -07002641bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002642 size_t num_static_fields = klass->NumStaticFields();
2643 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002644 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002645 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002646 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002647 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002648 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002649 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002650 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002651 ClassHelper kh(klass);
2652 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002653 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002654 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002655 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002656
Ian Rogers0571d352011-11-03 19:51:38 -07002657 if (it.HasNext()) {
2658 // 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 -07002659 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002660 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2661 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002662 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002663 }
Ian Rogers0045a292012-03-31 21:08:41 -07002664 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002665 }
Ian Rogers0045a292012-03-31 21:08:41 -07002666 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002667}
2668
Ian Rogersc2b44472011-12-14 21:17:17 -08002669bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002670 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002671 if (!LinkSuperClass(klass)) {
2672 return false;
2673 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002674 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002675 return false;
2676 }
2677 if (!LinkInstanceFields(klass)) {
2678 return false;
2679 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002680 if (!LinkStaticFields(klass)) {
2681 return false;
2682 }
2683 CreateReferenceInstanceOffsets(klass);
2684 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002685 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2686 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002687 return true;
2688}
2689
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002690bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002691 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002692 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2693 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002694 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002695 uint16_t super_class_idx = class_def->superclass_idx_;
2696 if (super_class_idx != DexFile::kDexNoIndex16) {
2697 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002698 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002699 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002700 return false;
2701 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002702 // Verify
2703 if (!klass->CanAccess(super_class)) {
2704 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2705 "Class %s extended by class %s is inaccessible",
2706 PrettyDescriptor(super_class).c_str(),
2707 PrettyDescriptor(klass.get()).c_str());
2708 return false;
2709 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002710 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002711 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002712 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2713 if (interfaces != NULL) {
2714 for (size_t i = 0; i < interfaces->Size(); i++) {
2715 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2716 Class* interface = ResolveType(dex_file, idx, klass.get());
2717 if (interface == NULL) {
2718 DCHECK(Thread::Current()->IsExceptionPending());
2719 return false;
2720 }
2721 // Verify
2722 if (!klass->CanAccess(interface)) {
2723 // TODO: the RI seemed to ignore this in my testing.
2724 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2725 "Interface %s implemented by class %s is inaccessible",
2726 PrettyDescriptor(interface).c_str(),
2727 PrettyDescriptor(klass.get()).c_str());
2728 return false;
2729 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002730 }
2731 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002732 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002733 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002734 return true;
2735}
2736
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002737bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002738 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002739 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002740 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002741 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002742 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002743 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002744 return false;
2745 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002746 return true;
2747 }
2748 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002749 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002750 return false;
2751 }
2752 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002753 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002754 Thread* self = Thread::Current();
2755 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002756 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002757 PrettyDescriptor(super).c_str(),
2758 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002759 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002760 return false;
2761 }
2762 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002763 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002764 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002765 PrettyDescriptor(super).c_str(),
2766 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002767 return false;
2768 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002769
2770 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2771 if (super->IsFinalizable()) {
2772 klass->SetFinalizable();
2773 }
2774
Elliott Hughes2da50362011-10-10 16:57:08 -07002775 // Inherit reference flags (if any) from the superclass.
2776 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2777 if (reference_flags != 0) {
2778 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2779 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002780 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002781 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002782 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002783 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002784 return false;
2785 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002786
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002787#ifndef NDEBUG
2788 // Ensure super classes are fully resolved prior to resolving fields..
2789 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002790 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002791 super = super->GetSuperClass();
2792 }
2793#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002794 return true;
2795}
2796
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002797// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002798bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002799 if (klass->IsInterface()) {
2800 // No vtable.
2801 size_t count = klass->NumVirtualMethods();
2802 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002803 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002804 return false;
2805 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002806 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002807 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002808 }
jeffhaobdb76512011-09-07 11:43:16 -07002809 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002810 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002811 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002812 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002813 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002814 }
2815 return true;
2816}
2817
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002818bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002819 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002820 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2821 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002822 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002823 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002824 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002825 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002826 MethodHelper local_mh(NULL, this);
2827 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002828 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002829 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002830 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002831 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002832 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002833 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002834 super_mh.ChangeMethod(super_method);
2835 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002836 // Verify
2837 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002838 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002839 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002840 PrettyDescriptor(klass.get()).c_str(),
2841 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002842 return false;
2843 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002844 vtable->Set(j, local_method);
2845 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002846 break;
2847 }
2848 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002849 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002850 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002851 vtable->Set(actual_count, local_method);
2852 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002853 actual_count += 1;
2854 }
2855 }
2856 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002857 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002858 return false;
2859 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002860 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002861 CHECK_LE(actual_count, max_count);
2862 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002863 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002864 }
Ian Rogers30fab402012-01-23 15:43:46 -08002865 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002866 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002867 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002868 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002869 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002870 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002871 return false;
2872 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002873 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002874 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002875 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2876 vtable->Set(i, virtual_method);
2877 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002878 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002879 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002880 }
2881 return true;
2882}
2883
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002884bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002885 size_t super_ifcount;
2886 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002887 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002888 } else {
2889 super_ifcount = 0;
2890 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002891 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002892 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07002893 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002894 ifcount += num_interfaces;
2895 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002896 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002897 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002898 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002899 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002900 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002901 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002902 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002903 return true;
2904 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002905 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002906 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002907 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2908 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002909 Class* super_interface = super_iftable->Get(i)->GetInterface();
2910 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002911 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002912 }
2913 // Flatten the interface inheritance hierarchy.
2914 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002915 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);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002917 DCHECK(interface != NULL);
2918 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002919 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002920 Thread* self = Thread::Current();
2921 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002922 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002923 PrettyDescriptor(klass.get()).c_str(),
2924 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002925 return false;
2926 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002927 // Check if interface is already in iftable
2928 bool duplicate = false;
2929 for (size_t j = 0; j < idx; j++) {
2930 Class* existing_interface = iftable->Get(j)->GetInterface();
2931 if (existing_interface == interface) {
2932 duplicate = true;
2933 break;
2934 }
2935 }
2936 if (!duplicate) {
2937 // Add this non-duplicate interface.
2938 iftable->Set(idx++, AllocInterfaceEntry(interface));
2939 // Add this interface's non-duplicate super-interfaces.
2940 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2941 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2942 bool super_duplicate = false;
2943 for (size_t k = 0; k < idx; k++) {
2944 Class* existing_interface = iftable->Get(k)->GetInterface();
2945 if (existing_interface == super_interface) {
2946 super_duplicate = true;
2947 break;
2948 }
2949 }
2950 if (!super_duplicate) {
2951 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2952 }
2953 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002954 }
2955 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002956 // Shrink iftable in case duplicates were found
2957 if (idx < ifcount) {
2958 iftable.reset(iftable->CopyOf(idx));
2959 ifcount = idx;
2960 } else {
2961 CHECK_EQ(idx, ifcount);
2962 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002963 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002964
2965 // If we're an interface, we don't need the vtable pointers, so we're done.
2966 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002967 return true;
2968 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002969 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002970 MethodHelper vtable_mh(NULL, this);
2971 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002972 for (size_t i = 0; i < ifcount; ++i) {
2973 InterfaceEntry* interface_entry = iftable->Get(i);
2974 Class* interface = interface_entry->GetInterface();
2975 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2976 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002977 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002978 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2979 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002980 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002981 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002982 // For each method listed in the interface's method list, find the
2983 // matching method in our class's method list. We want to favor the
2984 // subclass over the superclass, which just requires walking
2985 // back from the end of the vtable. (This only matters if the
2986 // superclass defines a private method and this class redefines
2987 // it -- otherwise it would use the same vtable slot. In .dex files
2988 // those don't end up in the virtual method table, so it shouldn't
2989 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002990 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2991 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002992 vtable_mh.ChangeMethod(vtable_method);
2993 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002994 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002995 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002996 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002997 return false;
2998 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002999 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003000 break;
3001 }
3002 }
3003 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003004 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003005 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003006 Method* mir_method = miranda_list[mir];
3007 vtable_mh.ChangeMethod(mir_method);
3008 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003009 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003010 break;
3011 }
3012 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003013 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003014 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003015 miranda_method.reset(AllocMethod());
3016 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3017 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003018 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003019 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003020 }
3021 }
3022 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003023 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003024 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003025 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003026 klass->SetVirtualMethods((old_method_count == 0)
3027 ? AllocObjectArray<Method>(new_method_count)
3028 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003029
Ian Rogers30fab402012-01-23 15:43:46 -08003030 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3031 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003032 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003033 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003034 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003035 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003036 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003037 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003038 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3039 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3040 klass->SetVirtualMethod(old_method_count + i, method);
3041 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003042 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003043 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003044 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003045 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003046
3047 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3048 for (int i = 0; i < vtable->GetLength(); ++i) {
3049 CHECK(vtable->Get(i) != NULL);
3050 }
3051
3052// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3053
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003054 return true;
3055}
3056
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003057bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3058 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003059 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003060}
3061
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003062bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3063 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003064 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003065 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003066 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003067 return success;
3068}
3069
Brian Carlstromdbc05252011-09-09 01:59:59 -07003070struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003071 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003072 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003073 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003074 fh_->ChangeField(field1);
3075 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3076 fh_->ChangeField(field2);
3077 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003078 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3079 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3080 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3081 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003082 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3083 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3084 if (order1 != order2) {
3085 return order1 < order2;
3086 }
3087
3088 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003089 fh_->ChangeField(field1);
3090 StringPiece name1(fh_->GetName());
3091 fh_->ChangeField(field2);
3092 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003093 return name1 < name2;
3094 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003095
3096 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003097};
3098
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003099bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003100 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003101 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003102
3103 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003104 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003105
3106 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003107 size_t size;
3108 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003109 if (is_static) {
3110 size = klass->GetClassSize();
3111 field_offset = Class::FieldsOffset();
3112 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003113 Class* super_class = klass->GetSuperClass();
3114 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003115 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003116 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003117 }
3118 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003119 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003120
Brian Carlstromdbc05252011-09-09 01:59:59 -07003121 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003122
Brian Carlstromdbc05252011-09-09 01:59:59 -07003123 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003124 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003125 std::deque<Field*> grouped_and_sorted_fields;
3126 for (size_t i = 0; i < num_fields; i++) {
3127 grouped_and_sorted_fields.push_back(fields->Get(i));
3128 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003129 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003130 std::sort(grouped_and_sorted_fields.begin(),
3131 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003132 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003133
3134 // References should be at the front.
3135 size_t current_field = 0;
3136 size_t num_reference_fields = 0;
3137 for (; current_field < num_fields; current_field++) {
3138 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003139 fh.ChangeField(field);
3140 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003141 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003142 if (isPrimitive) {
3143 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003144 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003145 grouped_and_sorted_fields.pop_front();
3146 num_reference_fields++;
3147 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003148 field->SetOffset(field_offset);
3149 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003150 }
3151
3152 // Now we want to pack all of the double-wide fields together. If
3153 // we're not aligned, though, we want to shuffle one 32-bit field
3154 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003155 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003156 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3157 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003158 fh.ChangeField(field);
3159 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003160 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3161 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003162 continue;
3163 }
3164 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003165 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003166 // drop the consumed field
3167 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3168 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003169 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003170 // whether we found a 32-bit field for padding or not, we advance
3171 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003172 }
3173
3174 // Alignment is good, shuffle any double-wide fields forward, and
3175 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003176 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003177 while (!grouped_and_sorted_fields.empty()) {
3178 Field* field = grouped_and_sorted_fields.front();
3179 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003180 fh.ChangeField(field);
3181 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003182 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003183 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003184 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003185 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003186 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003187 ? sizeof(uint64_t)
3188 : sizeof(uint32_t)));
3189 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003190 }
3191
Elliott Hughesadb460d2011-10-05 17:02:34 -07003192 // 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 -08003193 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3194 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003195 // We know there are no non-reference fields in the Reference classes, and we know
3196 // that 'referent' is alphabetically last, so this is easy...
3197 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003198 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003199 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003200 --num_reference_fields;
3201 }
3202
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003203#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003204 // Make sure that all reference fields appear before
3205 // non-reference fields, and all double-wide fields are aligned.
3206 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003207 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003208 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003209 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003210 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003211 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003212 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003213 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3214 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003215 fh.ChangeField(field);
3216 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003217 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003218 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003219 is_primitive = true; // We lied above, so we have to expect a lie here.
3220 }
3221 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003222 if (!seen_non_ref) {
3223 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003224 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003225 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003226 } else {
3227 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003228 }
3229 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003230 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003231 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003232 }
3233#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003234 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003235 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003236 if (is_static) {
3237 klass->SetNumReferenceStaticFields(num_reference_fields);
3238 klass->SetClassSize(size);
3239 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003240 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003241 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003242 klass->SetObjectSize(size);
3243 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003244 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003245 return true;
3246}
3247
3248// Set the bitmap of reference offsets, refOffsets, from the ifields
3249// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003250void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003251 uint32_t reference_offsets = 0;
3252 Class* super_class = klass->GetSuperClass();
3253 if (super_class != NULL) {
3254 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003255 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003256 if (reference_offsets == CLASS_WALK_SUPER) {
3257 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003258 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003259 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003260 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003261 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003262}
3263
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003264void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003265 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003266}
3267
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003268void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003269 uint32_t reference_offsets) {
3270 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003271 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3272 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003273 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003274 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003275 // All of the fields that contain object references are guaranteed
3276 // to be at the beginning of the fields list.
3277 for (size_t i = 0; i < num_reference_fields; ++i) {
3278 // Note that byte_offset is the offset from the beginning of
3279 // object, not the offset into instance data
3280 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003281 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003282 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3283 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3284 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003285 CHECK_NE(new_bit, 0U);
3286 reference_offsets |= new_bit;
3287 } else {
3288 reference_offsets = CLASS_WALK_SUPER;
3289 break;
3290 }
3291 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003292 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003293 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003294 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003295 } else {
3296 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003297 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003298}
3299
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003300String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003301 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003302 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003303 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003304 if (resolved != NULL) {
3305 return resolved;
3306 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003307 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3308 int32_t utf16_length = dex_file.GetStringLength(string_id);
3309 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003310 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003311 dex_cache->SetResolvedString(string_idx, string);
3312 return string;
3313}
3314
3315Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003316 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003317 DexCache* dex_cache,
3318 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003319 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003320 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003321 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003322 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003323 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003324 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003325 // TODO: we used to throw here if resolved's class loader was not the
3326 // boot class loader. This was to permit different classes with the
3327 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003328 dex_cache->SetResolvedType(type_idx, resolved);
3329 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003330 CHECK(Thread::Current()->IsExceptionPending())
3331 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003332 // Convert a ClassNotFoundException to a NoClassDefFoundError
3333 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3334 Thread::Current()->ClearException();
3335 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3336 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003337 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003338 }
3339 return resolved;
3340}
3341
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003342Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3343 uint32_t method_idx,
3344 DexCache* dex_cache,
3345 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003346 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003347 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003348 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3349 if (resolved != NULL) {
3350 return resolved;
3351 }
3352 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3353 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3354 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003355 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003356 return NULL;
3357 }
3358
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003359 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003360 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003361 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003362 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003363 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003364 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003365 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003366
3367 if (resolved == NULL) {
3368 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3369 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3370 if (is_direct) {
3371 resolved = klass->FindDirectMethod(name, signature);
3372 } else if (klass->IsInterface()) {
3373 resolved = klass->FindInterfaceMethod(name, signature);
3374 } else {
3375 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003376 // If a virtual method isn't found, search the direct methods. This can
3377 // happen when trying to access private methods directly, and allows the
3378 // proper exception to be thrown in the caller.
3379 if (resolved == NULL) {
3380 resolved = klass->FindDirectMethod(name, signature);
3381 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003382 }
3383 if (resolved == NULL) {
3384 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3385 return NULL;
3386 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003387 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003388 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003389 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003390}
3391
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003392Field* ClassLinker::ResolveField(const DexFile& dex_file,
3393 uint32_t field_idx,
3394 DexCache* dex_cache,
3395 const ClassLoader* class_loader,
3396 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003397 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003398 Field* resolved = dex_cache->GetResolvedField(field_idx);
3399 if (resolved != NULL) {
3400 return resolved;
3401 }
3402 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3403 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3404 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003405 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003406 return NULL;
3407 }
3408
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003409 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003410 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003411 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003412 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003413 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003414
3415 if (resolved == NULL) {
3416 const char* name = dex_file.GetFieldName(field_id);
3417 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3418 if (is_static) {
3419 resolved = klass->FindStaticField(name, type);
3420 } else {
3421 resolved = klass->FindInstanceField(name, type);
3422 }
3423 if (resolved == NULL) {
3424 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3425 return NULL;
3426 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003427 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003428 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003429 return resolved;
3430}
3431
3432Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3433 uint32_t field_idx,
3434 DexCache* dex_cache,
3435 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003436 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003437 Field* resolved = dex_cache->GetResolvedField(field_idx);
3438 if (resolved != NULL) {
3439 return resolved;
3440 }
3441 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3442 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3443 if (klass == NULL) {
3444 DCHECK(Thread::Current()->IsExceptionPending());
3445 return NULL;
3446 }
3447
3448 const char* name = dex_file.GetFieldName(field_id);
3449 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3450 resolved = klass->FindField(name, type);
3451 if (resolved != NULL) {
3452 dex_cache->SetResolvedField(field_idx, resolved);
3453 } else {
3454 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003455 }
3456 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003457}
3458
Ian Rogers19846512012-02-24 11:42:47 -08003459const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003460 Class* declaring_class = referrer->GetDeclaringClass();
3461 DexCache* dex_cache = declaring_class->GetDexCache();
3462 const DexFile& dex_file = FindDexFile(dex_cache);
3463 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003464 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003465}
3466
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003467void ClassLinker::DumpAllClasses(int flags) const {
3468 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3469 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3470 std::vector<Class*> all_classes;
3471 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003472 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003473 typedef Table::const_iterator It; // TODO: C++0x auto
3474 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3475 all_classes.push_back(it->second);
3476 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003477 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3478 all_classes.push_back(it->second);
3479 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003480 }
3481
3482 for (size_t i = 0; i < all_classes.size(); ++i) {
3483 all_classes[i]->DumpClass(std::cerr, flags);
3484 }
3485}
3486
Elliott Hughescac6cc72011-11-03 20:31:21 -07003487void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3488 MutexLock mu(classes_lock_);
3489 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3490 << classes_.size() << " allocated classes\n";
3491}
3492
Elliott Hughese27955c2011-08-26 15:21:24 -07003493size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003494 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003495 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003496}
3497
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003498pid_t ClassLinker::GetClassesLockOwner() {
3499 return classes_lock_.GetOwner();
3500}
3501
3502pid_t ClassLinker::GetDexLockOwner() {
3503 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003504}
3505
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003506void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3507 DCHECK(!init_done_);
3508
3509 DCHECK(klass != NULL);
3510 DCHECK(klass->GetClassLoader() == NULL);
3511
3512 DCHECK(class_roots_ != NULL);
3513 DCHECK(class_roots_->Get(class_root) == NULL);
3514 class_roots_->Set(class_root, klass);
3515}
3516
Logan Chien0c717dd2012-03-28 18:31:07 +08003517void ClassLinker::RelocateExecutable() {
3518 for (size_t i = 0; i < oat_files_.size(); ++i) {
3519 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3520 }
3521}
3522
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003523} // namespace art