blob: 3c0c345f52f3a3fa0fa96ad3a22d316f8b86bfef [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Brian Carlstromd601af82012-01-06 10:15:19 -080019#include <fcntl.h>
20#include <sys/file.h>
21#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080022#include <sys/types.h>
23#include <sys/wait.h>
24
Brian Carlstromdbc05252011-09-09 01:59:59 -070025#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070026#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070028#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080032#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070033#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070034#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070036#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070037#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070038#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070039#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070040#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080041#include "object_utils.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080042#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070043#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070044#include "runtime_support.h"
TDYa1275bb86012012-04-11 05:57:28 -070045#if defined(ART_USE_LLVM_COMPILER)
46#include "compiler_llvm/runtime_support_llvm.h"
47#endif
Ian Rogers365c1022012-06-22 15:05:28 -070048#include "scoped_jni_thread_state.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070049#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070050#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070051#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070052#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070053#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070054#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070055#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070056#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070057
58namespace art {
59
Elliott Hughes0512f022012-03-15 22:10:52 -070060static void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
61static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070062 va_list args;
63 va_start(args, fmt);
64 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
65 va_end(args);
66}
67
Elliott Hughes0512f022012-03-15 22:10:52 -070068static void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
69static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070070 va_list args;
71 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070072 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070073 va_end(args);
74}
75
Elliott Hughes0512f022012-03-15 22:10:52 -070076static void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
77static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070078 va_list args;
79 va_start(args, fmt);
80 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
81 va_end(args);
82}
83
Elliott Hughes0512f022012-03-15 22:10:52 -070084static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
85 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080086 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070087 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080088 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080089 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080090 std::string location(kh.GetLocation());
91 if (!location.empty()) {
92 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070093 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070094 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070095}
96
Elliott Hughes0512f022012-03-15 22:10:52 -070097static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
98 const StringPiece& name) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080099 ClassHelper kh(c);
100 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -0800101 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -0800102 << " in class " << kh.GetDescriptor() << " or its superclasses";
103 std::string location(kh.GetLocation());
104 if (!location.empty()) {
105 msg << " (defined in " << location << ")";
106 }
107 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
108}
109
Elliott Hughes0512f022012-03-15 22:10:52 -0700110static void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
111static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800112 va_list args;
113 va_start(args, fmt);
114 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
115 va_end(args);
116}
117
Elliott Hughes0512f022012-03-15 22:10:52 -0700118static void ThrowEarlierClassFailure(Class* c) {
Elliott Hughes5c599942012-06-13 16:45:05 -0700119 // 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.
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700123 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
124
Elliott Hughes5c599942012-06-13 16:45:05 -0700125 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700126 if (c->GetVerifyErrorClass() != NULL) {
127 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800128 ClassHelper ve_ch(c->GetVerifyErrorClass());
129 std::string error_descriptor(ve_ch.GetDescriptor());
130 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700131 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800132 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700133 }
134}
135
Elliott Hughes0512f022012-03-15 22:10:52 -0700136static void WrapExceptionInInitializer() {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700137 Thread* self = Thread::Current();
138 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700139
140 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
141 CHECK(cause.get() != NULL);
142
143 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700144 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
145 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700146
Elliott Hughesa4f94742012-05-29 16:28:38 -0700147 // We only wrap non-Error exceptions; an Error can just be used as-is.
148 if (!is_error) {
149 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", NULL);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700150 }
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700151}
152
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800153static size_t Hash(const char* s) {
154 // This is the java.lang.String hashcode for convenience, not interoperability.
155 size_t hash = 0;
156 for (; *s != '\0'; ++s) {
157 hash = hash * 31 + *s;
158 }
159 return hash;
160}
161
Elliott Hughes418d20f2011-09-22 14:00:39 -0700162const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700163 "Ljava/lang/Class;",
164 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700165 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700166 "[Ljava/lang/Object;",
167 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700168 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700169 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700170 "Ljava/lang/reflect/Field;",
171 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700172 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700173 "Ljava/lang/ClassLoader;",
174 "Ldalvik/system/BaseDexClassLoader;",
175 "Ldalvik/system/PathClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800176 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800177 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700178 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700179 "Z",
180 "B",
181 "C",
182 "D",
183 "F",
184 "I",
185 "J",
186 "S",
187 "V",
188 "[Z",
189 "[B",
190 "[C",
191 "[D",
192 "[F",
193 "[I",
194 "[J",
195 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700196 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700197};
198
Brian Carlstroma004aa92012-02-08 18:05:09 -0800199ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
200 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700201 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800202 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800203 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700204 return class_linker.release();
205}
206
Brian Carlstroma004aa92012-02-08 18:05:09 -0800207ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800208 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700209 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700210 return class_linker.release();
211}
212
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800213ClassLinker::ClassLinker(InternTable* intern_table)
214 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700215 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700216 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700217 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700218 init_done_(false),
219 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700220 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700221}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700222
Brian Carlstroma004aa92012-02-08 18:05:09 -0800223void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
224 VLOG(startup) << "ClassLinker::Init";
225 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700226
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700227 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700228
Elliott Hughes30646832011-10-13 16:59:46 -0700229 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800230 Heap* heap = Runtime::Current()->GetHeap();
231 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700232 CHECK(java_lang_Class.get() != NULL);
233 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700234 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700235 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700236
Elliott Hughes418d20f2011-09-22 14:00:39 -0700237 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700238 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
239 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700240
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700241 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700242 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
243 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700244 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700245 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700246 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700247
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700248 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700249 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
250 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700251
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700252 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700253 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700254
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700255 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700256 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
257 char_array_class->SetComponentType(char_class.get());
258 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700259
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700260 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700261 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
262 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700263 java_lang_String->SetObjectSize(sizeof(String));
264 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400265
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700266 // Create storage for root classes, save away our work so far (requires
267 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700268 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700269 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700270 SetClassRoot(kJavaLangClass, java_lang_Class.get());
271 SetClassRoot(kJavaLangObject, java_lang_Object.get());
272 SetClassRoot(kClassArrayClass, class_array_class.get());
273 SetClassRoot(kObjectArrayClass, object_array_class.get());
274 SetClassRoot(kCharArrayClass, char_array_class.get());
275 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700276
277 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700278 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
279 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
280 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
281 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
282 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
283 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
284 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
285 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700286
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700287 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700288 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700289
290 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700291 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700292 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700293 IntArray::SetArrayClass(int_array_class.get());
294 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700295
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700296 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700297
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700298 // setup boot_class_path_ and register class_path now that we can
299 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800300 CHECK_NE(0U, boot_class_path.size());
301 for (size_t i = 0; i != boot_class_path.size(); ++i) {
302 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700303 CHECK(dex_file != NULL);
304 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700305 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700306
Elliott Hughes80609252011-09-23 17:24:51 -0700307 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700308 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700309 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700310 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700311 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700312 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
313
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700314 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
315 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700316 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700317 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700318 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700319 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700320
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700322 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700323 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700324 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700325 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700326 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700327
328 // now we can use FindSystemClass
329
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700330 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700331 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700333
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700334 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700335 java_lang_Object->SetStatus(Class::kStatusNotReady);
336 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700337 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700338 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
339 java_lang_String->SetStatus(Class::kStatusNotReady);
340 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700341 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700342 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
343
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700344 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700345 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
346 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
347
348 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
349 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
350
351 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700352 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700353
354 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
355 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
356
357 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700358 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700359
360 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
361 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
362
363 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
364 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
365
366 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
367 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
368
Elliott Hughes418d20f2011-09-22 14:00:39 -0700369 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700370 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700371
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700372 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700373 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700374
375 // Setup the single, global copies of "interfaces" and "iftable"
376 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
377 CHECK(java_lang_Cloneable != NULL);
378 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
379 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700380 // We assume that Cloneable/Serializable don't have superinterfaces --
381 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700382 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800383 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
384 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700385
Elliott Hughes418d20f2011-09-22 14:00:39 -0700386 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800387 ClassHelper kh(class_array_class.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -0700388 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
389 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800390 kh.ChangeClass(object_array_class.get());
Ian Rogersd24e2642012-06-06 21:21:43 -0700391 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
392 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700393 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700394 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700395 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700396 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700397
Elliott Hughes80609252011-09-23 17:24:51 -0700398 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
399 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700400 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700401
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700402 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700403 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700404 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700405
406 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700407 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700408 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700409
Ian Rogers466bb252011-10-14 03:29:56 -0700410 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
411
412 // Create java.lang.reflect.Proxy root
413 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
414 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
415
Brian Carlstrom1f870082011-08-23 16:02:11 -0700416 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700417 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
418 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700419 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700420 java_lang_ref_FinalizerReference->SetAccessFlags(
421 java_lang_ref_FinalizerReference->GetAccessFlags() |
422 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700423 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700424 java_lang_ref_PhantomReference->SetAccessFlags(
425 java_lang_ref_PhantomReference->GetAccessFlags() |
426 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700427 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700428 java_lang_ref_SoftReference->SetAccessFlags(
429 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700430 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700431 java_lang_ref_WeakReference->SetAccessFlags(
432 java_lang_ref_WeakReference->GetAccessFlags() |
433 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700434
Brian Carlstromaded5f72011-10-07 17:15:04 -0700435 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700436 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700437 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700438 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
439
440 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
441 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
442 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
443
444 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
445 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
446 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
447 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
448
jeffhao8cd6dda2012-02-22 10:15:34 -0800449 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
450 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800451 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
452 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800453 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700454 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
455 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700456 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700457
Brian Carlstroma663ea52011-08-19 23:33:41 -0700458 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700459
Brian Carlstroma004aa92012-02-08 18:05:09 -0800460 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700461}
462
463void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800464 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700465
466 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700467 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700468 // as the types of the field can't be resolved prior to the runtime being
469 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700470 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700471 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700472 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
473
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800474 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
475
Brian Carlstrom16192862011-09-12 17:50:06 -0700476 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800477 FieldHelper fh(pendingNext, this);
478 CHECK_STREQ(fh.GetName(), "pendingNext");
479 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
480 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700481
482 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800483 fh.ChangeField(queue);
484 CHECK_STREQ(fh.GetName(), "queue");
485 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
486 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700487
488 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800489 fh.ChangeField(queueNext);
490 CHECK_STREQ(fh.GetName(), "queueNext");
491 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
492 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700493
494 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800495 fh.ChangeField(referent);
496 CHECK_STREQ(fh.GetName(), "referent");
497 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
498 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700499
500 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800501 fh.ChangeField(zombie);
502 CHECK_STREQ(fh.GetName(), "zombie");
503 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
504 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700505
Elliott Hughesa4f94742012-05-29 16:28:38 -0700506 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800507 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700508 queue->GetOffset(),
509 queueNext->GetOffset(),
510 pendingNext->GetOffset(),
511 zombie->GetOffset());
512
Brian Carlstroma663ea52011-08-19 23:33:41 -0700513 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700514 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700515 ClassRoot class_root = static_cast<ClassRoot>(i);
516 Class* klass = GetClassRoot(class_root);
517 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700518 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700519 // note SetClassRoot does additional validation.
520 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700521 }
522
Elliott Hughes92f14b22011-10-06 12:29:54 -0700523 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700524
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700525 // disable the slow paths in FindClass and CreatePrimitiveClass now
526 // that Object, Class, and Object[] are setup
527 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700528
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800529 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700530}
531
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700532void ClassLinker::RunRootClinits() {
533 Thread* self = Thread::Current();
534 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
535 Class* c = GetClassRoot(ClassRoot(i));
536 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700537 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700538 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700539 }
540 }
541}
542
Brian Carlstromd601af82012-01-06 10:15:19 -0800543bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
544 int oat_fd,
545 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800546 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700547 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800548 const char* dex2oat = dex2oat_string.c_str();
549
Brian Carlstroma004aa92012-02-08 18:05:09 -0800550 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800551
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800552 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800553 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700554 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800555 const char* boot_image_option = boot_image_option_string.c_str();
556
557 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800558 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800559 const char* dex_file_option = dex_file_option_string.c_str();
560
Brian Carlstromd601af82012-01-06 10:15:19 -0800561 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800562 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800563 const char* oat_fd_option = oat_fd_option_string.c_str();
564
Brian Carlstroma004aa92012-02-08 18:05:09 -0800565 std::string oat_location_option_string("--oat-location=");
566 oat_location_option_string += oat_cache_filename;
567 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800568
jeffhao262bf462011-10-20 18:36:32 -0700569 // fork and exec dex2oat
570 pid_t pid = fork();
571 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800572 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800573
574 // change process groups, so we don't get reaped by ProcessManager
575 setpgid(0, 0);
576
jeffhao10037c82012-01-23 15:06:23 -0800577 VLOG(class_linker) << dex2oat
578 << " --runtime-arg -Xms64m"
579 << " --runtime-arg -Xmx64m"
580 << " --runtime-arg -classpath"
581 << " --runtime-arg " << class_path
582 << " " << boot_image_option
583 << " " << dex_file_option
584 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800585 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800586
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800587 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700588 "--runtime-arg", "-Xms64m",
589 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500590 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800591 "--runtime-arg", class_path,
592 boot_image_option,
593 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800594 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800595 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700596 NULL);
597
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800598 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800599 return false;
jeffhao262bf462011-10-20 18:36:32 -0700600 } else {
601 // wait for dex2oat to finish
602 int status;
603 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
604 if (got_pid != pid) {
605 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800606 return false;
jeffhao262bf462011-10-20 18:36:32 -0700607 }
608 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800609 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
610 return false;
jeffhao262bf462011-10-20 18:36:32 -0700611 }
612 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800613 return true;
jeffhao262bf462011-10-20 18:36:32 -0700614}
615
Brian Carlstrom866c8622012-01-06 16:35:13 -0800616void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
617 MutexLock mu(dex_lock_);
618 RegisterOatFileLocked(oat_file);
619}
620
621void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
622 dex_lock_.AssertHeld();
623 oat_files_.push_back(&oat_file);
624}
625
Ian Rogers30fab402012-01-23 15:43:46 -0800626OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700627 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700628 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700629 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800630 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
631 // check the down cast
632 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700633 std::string oat_filename;
634 oat_filename += runtime->GetHostPrefix();
635 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800636 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
637 image_header.GetOatBegin(),
638 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800639 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700640 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700641 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700642 return NULL;
643 }
644 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
645 uint32_t image_oat_checksum = image_header.GetOatChecksum();
646 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800647 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700648 << " to expected oat checksum " << std::hex << oat_checksum
649 << " in image";
650 return NULL;
651 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800652 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800653 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700654 return oat_file;
655}
656
Brian Carlstromae826982011-11-09 01:33:42 -0800657const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800658 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800659}
660
Brian Carlstroma004aa92012-02-08 18:05:09 -0800661const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700662 MutexLock mu(dex_lock_);
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
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700745const DexFile* ClassLinker::VerifyOatFileChecksums(const OatFile* oat_file,
746 const std::string& dex_location,
747 uint32_t dex_location_checksum) {
748 Runtime* runtime = Runtime::Current();
749 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
750 uint32_t image_checksum = image_header.GetOatChecksum();
751 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
752
753 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
754 CHECK(oat_dex_file != NULL) << oat_file->GetLocation() << " " << dex_location;
755 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
756
757 if (image_check && dex_check) {
758 RegisterOatFileLocked(*oat_file);
759 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
760 }
761
762 if (!image_check) {
763 std::string image_file(image_header.GetImageRoot(
764 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
765 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
766 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
767 << ") mismatch with " << image_file
768 << " (" << std::hex << image_checksum << ")";
769 }
770 if (!dex_check) {
771 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
772 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
773 << ") mismatch with " << dex_location
774 << " (" << std::hex << dex_location_checksum << ")";
775 }
776 return NULL;
777}
778
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800779const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700780 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800781
Brian Carlstroma004aa92012-02-08 18:05:09 -0800782 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800783 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800784 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800785 }
786
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700787 // Look for an existing file next to dex. for example, for
788 // /foo/bar/baz.jar, look for /foo/bar/baz.jar.oat.
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800789 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800790 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800791 if (oat_file != NULL) {
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700792 uint32_t dex_location_checksum;
793 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
794 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
795 // This is the common case in user builds for jar's and apk's in the /system directory.
796 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
797 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
798 RegisterOatFileLocked(*oat_file);
799 return oat_dex_file->OpenDexFile();
800 }
801 const DexFile* dex_file = VerifyOatFileChecksums(oat_file,
802 dex_location,
803 dex_location_checksum);
804 if (dex_file != NULL) {
805 return dex_file;
806 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800807 }
808 // Look for an existing file in the art-cache, validating the result if found
809 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
810 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
811 oat_file = FindOatFileFromOatLocation(cache_location);
812 if (oat_file != NULL) {
813 uint32_t dex_location_checksum;
814 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
815 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
816 return NULL;
817 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -0700818 const DexFile* dex_file = VerifyOatFileChecksums(oat_file,
819 dex_location,
820 dex_location_checksum);
821 if (dex_file != NULL) {
822 return dex_file;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700823 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800824 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700825 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800826 }
jeffhao262bf462011-10-20 18:36:32 -0700827 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800828 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
829
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800830 // Try to generate oat file if it wasn't found or was obsolete.
831 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
832 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700833}
834
Brian Carlstromae826982011-11-09 01:33:42 -0800835const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700836 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700837 for (size_t i = 0; i < oat_files_.size(); i++) {
838 const OatFile* oat_file = oat_files_[i];
839 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800840 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700841 return oat_file;
842 }
843 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700844 return NULL;
845}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700846
Brian Carlstromae826982011-11-09 01:33:42 -0800847const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800848 MutexLock mu(dex_lock_);
849 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
850 if (oat_file != NULL) {
851 return oat_file;
852 }
853
Logan Chien0c717dd2012-03-28 18:31:07 +0800854 oat_file = OatFile::Open(oat_location, oat_location, NULL,
855 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700856 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800857 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700858 }
Brian Carlstromae826982011-11-09 01:33:42 -0800859 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700860 return oat_file;
861}
862
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700863void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800864 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700865 CHECK(!init_done_);
866
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800867 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700868 ImageSpace* space = heap->GetImageSpace();
869 OatFile* oat_file = OpenOat(space);
870 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700871 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
Elliott Hughes74847412012-06-20 18:10:21 -0700872 CHECK(oat_file->GetOatHeader().GetImageFileLocation().empty());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700873 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
874 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700875
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700876 // Special case of setting up the String class early so that we can test arbitrary objects
877 // as being Strings or not
878 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
879 ->AsObjectArray<Class>()->Get(kJavaLangString);
880 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800881
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700882 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
883 static_cast<uint32_t>(dex_caches->GetLength()));
884 for (int i = 0; i < dex_caches->GetLength(); i++) {
885 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
886 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
887 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
888 const DexFile* dex_file = oat_dex_file->OpenDexFile();
889 if (dex_file == NULL) {
890 LOG(FATAL) << "Failed to open dex file " << dex_file_location
891 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700892 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700893
894 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
895
896 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700897 }
898
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800899 HeapBitmap* heap_bitmap = heap->GetLiveBits();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700900 DCHECK(heap_bitmap != NULL);
901
Brian Carlstroma663ea52011-08-19 23:33:41 -0700902 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700903 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700904
905 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800906 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700907 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700908 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700909
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800910 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700911 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
912 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800913 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700914 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700915 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700916 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
917 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
918 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
919 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
920 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
921 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
922 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
923 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700924 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Ian Rogers5167c972012-02-03 10:41:20 -0800925 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700926 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700927
928 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700929
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800930 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700931}
932
Brian Carlstrom78128a62011-09-15 17:21:19 -0700933void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700934 DCHECK(obj != NULL);
935 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700936 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700937
Elliott Hughesdbb40792011-11-18 17:05:22 -0800938 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700939 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700940 return;
941 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700942 if (obj->IsClass()) {
943 // restore class to ClassLinker::classes_ table
944 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800945 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800946 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
947 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700948 return;
949 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700950}
951
952// Keep in sync with InitCallback. Anything we visit, we need to
953// reinit references to when reinitializing a ClassLinker from a
954// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700955void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
956 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700957
Elliott Hughesf8349362012-06-18 15:00:06 -0700958 {
959 MutexLock mu(dex_lock_);
960 for (size_t i = 0; i < dex_caches_.size(); i++) {
961 visitor(dex_caches_[i], arg);
962 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700963 }
964
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700965 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700966 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700967 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700968 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700969 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700970 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700971
972 // We deliberately ignore the class roots in the image since we
973 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700974 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700975
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700976 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700977}
978
Elliott Hughesa2155262011-11-16 16:26:58 -0800979void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
980 MutexLock mu(classes_lock_);
981 typedef Table::const_iterator It; // TODO: C++0x auto
982 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
983 if (!visitor(it->second, arg)) {
984 return;
985 }
986 }
987 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
988 if (!visitor(it->second, arg)) {
989 return;
990 }
991 }
992}
993
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700994ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700995 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700996 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700997 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700998 BooleanArray::ResetArrayClass();
999 ByteArray::ResetArrayClass();
1000 CharArray::ResetArrayClass();
1001 DoubleArray::ResetArrayClass();
1002 FloatArray::ResetArrayClass();
1003 IntArray::ResetArrayClass();
1004 LongArray::ResetArrayClass();
1005 ShortArray::ResetArrayClass();
1006 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -08001007 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001008 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001009 STLDeleteElements(&boot_class_path_);
1010 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001011}
1012
1013DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001014 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
1015 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001016 return NULL;
1017 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001018 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
1019 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -07001020 return NULL;
1021 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001022 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
1023 if (strings.get() == NULL) {
1024 return NULL;
1025 }
1026 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1027 if (types.get() == NULL) {
1028 return NULL;
1029 }
1030 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1031 if (methods.get() == NULL) {
1032 return NULL;
1033 }
1034 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1035 if (fields.get() == NULL) {
1036 return NULL;
1037 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001038 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1039 if (initialized_static_storage.get() == NULL) {
1040 return NULL;
1041 }
1042
1043 dex_cache->Init(location.get(),
1044 strings.get(),
1045 types.get(),
1046 methods.get(),
1047 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001048 initialized_static_storage.get());
1049 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001050}
1051
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001052InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1053 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001054 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1055 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001056 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001057 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001058}
1059
Brian Carlstrom4873d462011-08-21 15:23:39 -07001060Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1061 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001062 Heap* heap = Runtime::Current()->GetHeap();
1063 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001064 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001065 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001066 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001067}
1068
Brian Carlstrom4873d462011-08-21 15:23:39 -07001069Class* ClassLinker::AllocClass(size_t class_size) {
1070 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001071}
1072
Jesse Wilson35baaab2011-08-10 16:18:03 -04001073Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001074 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001075}
1076
1077Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001078 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001079}
1080
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001081ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1082 return ObjectArray<StackTraceElement>::Alloc(
1083 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1084 length);
1085}
1086
Elliott Hughes5c599942012-06-13 16:45:05 -07001087static Class* EnsureResolved(Class* klass) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001088 DCHECK(klass != NULL);
1089 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001090 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001091 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001092 ObjectLock lock(klass);
1093 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001094 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001095 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001096 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001097 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001098 return NULL;
1099 }
1100 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001101 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001102 lock.Wait();
1103 }
1104 }
1105 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001106 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001107 return NULL;
1108 }
1109 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001110 CHECK(klass->IsResolved()) << PrettyClass(klass);
1111 CHECK(!self->IsExceptionPending())
1112 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1113 return klass;
1114}
1115
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001116Class* ClassLinker::FindSystemClass(const char* descriptor) {
1117 return FindClass(descriptor, NULL);
1118}
1119
Ian Rogers365c1022012-06-22 15:05:28 -07001120Class* ClassLinker::FindClass(const char* descriptor, ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001121 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001122 Thread* self = Thread::Current();
1123 DCHECK(self != NULL);
1124 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001125 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001126 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1127 // for primitive classes that aren't backed by dex files.
1128 return FindPrimitiveClass(descriptor[0]);
1129 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001130 // Find the class in the loaded classes table.
1131 Class* klass = LookupClass(descriptor, class_loader);
1132 if (klass != NULL) {
1133 return EnsureResolved(klass);
1134 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001135 // Class is not yet loaded.
1136 if (descriptor[0] == '[') {
1137 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001138
Jesse Wilson47daf872011-11-23 11:42:45 -05001139 } else if (class_loader == NULL) {
1140 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1141 if (pair.second != NULL) {
1142 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1143 }
1144
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001145 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001146 // first try the boot class path
1147 Class* system_class = FindSystemClass(descriptor);
1148 if (system_class != NULL) {
1149 return system_class;
1150 }
1151 CHECK(self->IsExceptionPending());
1152 self->ClearException();
1153
1154 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001155 const std::vector<const DexFile*>& class_path
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001156 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001157 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001158 if (pair.second != NULL) {
1159 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001160 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001161
1162 } else {
Ian Rogers365c1022012-06-22 15:05:28 -07001163 ScopedJniThreadState ts(self->GetJniEnv());
1164 ScopedLocalRef<jobject> class_loader_object(ts.Env(),
1165 ts.AddLocalReference<jobject>(class_loader));
Elliott Hughes95572412011-12-13 18:14:20 -08001166 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers365c1022012-06-22 15:05:28 -07001167 ScopedLocalRef<jobject> result(ts.Env(), NULL);
1168 {
1169 ScopedThreadStateChange tsc(self, kNative);
1170 ScopedLocalRef<jobject> class_name_object(ts.Env(),
1171 ts.Env()->NewStringUTF(class_name_string.c_str()));
1172 if (class_name_object.get() == NULL) {
1173 return NULL;
1174 }
1175 CHECK(class_loader_object.get() != NULL);
1176 result.reset(ts.Env()->CallObjectMethod(class_loader_object.get(),
1177 WellKnownClasses::java_lang_ClassLoader_loadClass,
1178 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05001179 }
Ian Rogers365c1022012-06-22 15:05:28 -07001180 if (ts.Env()->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001181 // If the ClassLoader threw, pass that exception up.
1182 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001183 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001184 // broken loader - throw NPE to be compatible with Dalvik
1185 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1186 class_name_string.c_str());
1187 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001188 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001189 // success, return Class*
Ian Rogers365c1022012-06-22 15:05:28 -07001190 return ts.Decode<Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001191 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001192 }
1193
Elliott Hughes82914b62012-04-09 15:56:29 -07001194 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001195 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001196}
1197
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001198Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Ian Rogers365c1022012-06-22 15:05:28 -07001199 ClassLoader* class_loader,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001200 const DexFile& dex_file,
1201 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001202 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001203 // Load the class from the dex file.
1204 if (!init_done_) {
1205 // finish up init of hand crafted class_roots_
1206 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001207 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001208 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001209 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001210 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001211 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001212 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001213 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001214 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001215 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001216 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001217 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001218 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001219 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001220 }
1221 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001222 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001223 }
1224 klass->SetDexCache(FindDexCache(dex_file));
1225 LoadClass(dex_file, dex_class_def, klass, class_loader);
1226 // Check for a pending exception during load
1227 Thread* self = Thread::Current();
1228 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001229 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001230 return NULL;
1231 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001232 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001233 klass->SetClinitThreadId(self->GetTid());
1234 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001235 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1236 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001237 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001238 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001239 }
1240 // Finish loading (if necessary) by finding parents
1241 CHECK(!klass->IsLoaded());
1242 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1243 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001244 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001245 lock.NotifyAll();
1246 return NULL;
1247 }
1248 CHECK(klass->IsLoaded());
1249 // Link the class (if necessary)
1250 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001251 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001252 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001253 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001254 lock.NotifyAll();
1255 return NULL;
1256 }
1257 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001258
1259 /*
1260 * We send CLASS_PREPARE events to the debugger from here. The
1261 * definition of "preparation" is creating the static fields for a
1262 * class and initializing them to the standard default values, but not
1263 * executing any code (that comes later, during "initialization").
1264 *
1265 * We did the static preparation in LinkClass.
1266 *
1267 * The class has been prepared and resolved but possibly not yet verified
1268 * at this point.
1269 */
1270 Dbg::PostClassPrepare(klass.get());
1271
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001272 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001273}
1274
Brian Carlstrom4873d462011-08-21 15:23:39 -07001275// Precomputes size that will be needed for Class, matching LinkStaticFields
1276size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1277 const DexFile::ClassDef& dex_class_def) {
1278 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001279 size_t num_ref = 0;
1280 size_t num_32 = 0;
1281 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001282 if (class_data != NULL) {
1283 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1284 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001285 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001286 char c = descriptor[0];
1287 if (c == 'L' || c == '[') {
1288 num_ref++;
1289 } else if (c == 'J' || c == 'D') {
1290 num_64++;
1291 } else {
1292 num_32++;
1293 }
1294 }
1295 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001296 // start with generic class data
1297 size_t size = sizeof(Class);
1298 // follow with reference fields which must be contiguous at start
1299 size += (num_ref * sizeof(uint32_t));
1300 // if there are 64-bit fields to add, make sure they are aligned
1301 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1302 if (num_32 != 0) {
1303 // use an available 32-bit field for padding
1304 num_32--;
1305 }
1306 size += sizeof(uint32_t); // either way, we are adding a word
1307 DCHECK_EQ(size, RoundUp(size, 8));
1308 }
1309 // tack on any 64-bit fields now that alignment is assured
1310 size += (num_64 * sizeof(uint64_t));
1311 // tack on any remaining 32-bit fields
1312 size += (num_32 * sizeof(uint32_t));
1313 return size;
1314}
1315
Ian Rogers19846512012-02-24 11:42:47 -08001316const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1317 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001318 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1319 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1320 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1321 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1322 uint32_t class_def_index;
1323 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1324 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1325 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1326 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1327 return oat_class;
1328}
1329
TDYa12785321912012-04-01 15:24:56 -07001330const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001331 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001332 // method for direct methods (or virtual methods made direct).
1333 Class* declaring_class = method->GetDeclaringClass();
1334 size_t oat_method_index;
1335 if (method->IsStatic() || method->IsDirect()) {
1336 // Simple case where the oat method index was stashed at load time.
1337 oat_method_index = method->GetMethodIndex();
1338 } else {
1339 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1340 // by search for its position in the declared virtual methods.
1341 oat_method_index = declaring_class->NumDirectMethods();
1342 size_t end = declaring_class->NumVirtualMethods();
1343 bool found = false;
1344 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001345 if (declaring_class->GetVirtualMethod(i) == method) {
1346 found = true;
1347 break;
1348 }
Ian Rogersf320b632012-03-13 18:47:47 -07001349 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001350 }
1351 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1352 }
1353 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001354 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001355 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001356 return oat_class->GetOatMethod(oat_method_index);
1357}
1358
1359// Special case to get oat code without overwriting a trampoline.
1360const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001361 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001362 return GetOatMethodFor(method).GetCode();
1363}
1364
1365void ClassLinker::LinkOatCodeFor(Method* method) {
1366 Class* declaring_class = method->GetDeclaringClass();
1367 ClassHelper kh(declaring_class);
1368 const OatFile* oat_file = FindOpenedOatFileForDexFile(kh.GetDexFile());
1369 if (oat_file != NULL) {
1370 // NOTE: We have to check the availability of OatFile first. Because
1371 // GetOatMethodFor(...) will try to find the OatFile and there's
1372 // an assert in GetOatMethodFor(...). Besides, due to the return
1373 // type of OatClass::GetOatMethod(...), we can't return a failure value
1374 // back.
1375
1376 // TODO: Remove this workaround.
TDYa12705fe3b62012-04-21 00:28:54 -07001377 OatFile::OatMethod oat_method = GetOatMethodFor(method);
1378 if (method->GetCode() == NULL) {
1379 method->SetCode(oat_method.GetCode());
1380 }
1381 if (method->GetInvokeStub() == NULL) {
1382 method->SetInvokeStub(oat_method.GetInvokeStub());
1383 }
TDYa12785321912012-04-01 15:24:56 -07001384 }
Ian Rogers19846512012-02-24 11:42:47 -08001385}
1386
1387void ClassLinker::FixupStaticTrampolines(Class* klass) {
1388 ClassHelper kh(klass);
1389 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1390 CHECK(dex_class_def != NULL);
1391 const DexFile& dex_file = kh.GetDexFile();
1392 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1393 if (class_data == NULL) {
1394 return; // no fields or methods - for example a marker interface
1395 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001396 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001397 // OAT file unavailable
1398 return;
1399 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001400 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1401 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001402 ClassDataItemIterator it(dex_file, class_data);
1403 // Skip fields
1404 while (it.HasNextStaticField()) {
1405 it.Next();
1406 }
1407 while (it.HasNextInstanceField()) {
1408 it.Next();
1409 }
1410 size_t method_index = 0;
1411 // Link the code of methods skipped by LinkCode
1412 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1413 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1414 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001415 if (Runtime::Current()->IsMethodTracingActive()) {
1416 Trace* tracer = Runtime::Current()->GetTracer();
1417 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1418 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1419 tracer->ResetSavedCode(method);
1420 method->SetCode(code);
1421 tracer->SaveAndUpdateCode(method);
1422 }
1423 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001424 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1425 CHECK(code != NULL);
1426 method->SetCode(code);
1427 }
1428 method_index++;
1429 }
1430}
1431
Elliott Hughes5c599942012-06-13 16:45:05 -07001432static void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001433 // Every kind of method should at least get an invoke stub from the oat_method.
1434 // non-abstract methods also get their code pointers.
1435 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001436 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001437
Ian Rogers19846512012-02-24 11:42:47 -08001438 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001439 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001440 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001441 return;
1442 }
Ian Rogers19846512012-02-24 11:42:47 -08001443
1444 if (method->IsStatic() && !method->IsConstructor()) {
1445 // For static methods excluding the class initializer, install the trampoline
1446 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001447 }
1448 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001449 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001450 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001451 }
1452
1453 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001454 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001455 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001456 }
1457}
1458
Brian Carlstromf615a612011-07-23 12:50:34 -07001459void ClassLinker::LoadClass(const DexFile& dex_file,
1460 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001461 SirtRef<Class>& klass,
Ian Rogers365c1022012-06-22 15:05:28 -07001462 ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001463 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001464 CHECK(klass->GetDexCache() != NULL);
1465 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001466 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001467 CHECK(descriptor != NULL);
1468
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001469 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001470 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001471 // Make sure that none of our runtime-only flags are set.
1472 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001473 klass->SetAccessFlags(access_flags);
1474 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001475 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001476 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001477
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001478 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001479
Ian Rogers0571d352011-11-03 19:51:38 -07001480 // Load fields fields.
1481 const byte* class_data = dex_file.GetClassData(dex_class_def);
1482 if (class_data == NULL) {
1483 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001484 }
Ian Rogers0571d352011-11-03 19:51:38 -07001485 ClassDataItemIterator it(dex_file, class_data);
1486 if (it.NumStaticFields() != 0) {
1487 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1488 }
1489 if (it.NumInstanceFields() != 0) {
1490 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1491 }
1492 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1493 SirtRef<Field> sfield(AllocField());
1494 klass->SetStaticField(i, sfield.get());
1495 LoadField(dex_file, it, klass, sfield);
1496 }
1497 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1498 SirtRef<Field> ifield(AllocField());
1499 klass->SetInstanceField(i, ifield.get());
1500 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001501 }
1502
Brian Carlstromf5822582012-03-19 22:34:31 -07001503 UniquePtr<const OatFile::OatClass> oat_class;
1504 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1505 oat_class.reset(GetOatClass(dex_file, descriptor));
1506 }
Ian Rogers19846512012-02-24 11:42:47 -08001507
Ian Rogers0571d352011-11-03 19:51:38 -07001508 // Load methods.
1509 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001510 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001511 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001512 }
Ian Rogers0571d352011-11-03 19:51:38 -07001513 if (it.NumVirtualMethods() != 0) {
1514 // TODO: append direct methods to class object
1515 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001516 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001517 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001518 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1519 SirtRef<Method> method(AllocMethod());
1520 klass->SetDirectMethod(i, method.get());
1521 LoadMethod(dex_file, it, klass, method);
1522 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001523 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001524 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001525 method->SetMethodIndex(class_def_method_index);
1526 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001527 }
1528 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1529 SirtRef<Method> method(AllocMethod());
1530 klass->SetVirtualMethod(i, method.get());
1531 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001532 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001533 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001534 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001535 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001536 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001537 }
1538 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001539}
1540
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001541void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001542 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001543 uint32_t field_idx = it.GetMemberIndex();
1544 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001545 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001546 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001547}
1548
Ian Rogers0571d352011-11-03 19:51:38 -07001549void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1550 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001551 uint32_t dex_method_idx = it.GetMemberIndex();
1552 dst->SetDexMethodIndex(dex_method_idx);
1553 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001554 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001555
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001556
1557 StringPiece method_name(dex_file.GetMethodName(method_id));
1558 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001559 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1560 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001561
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001562 if (method_name == "finalize") {
1563 // Create the prototype for a signature of "()V"
1564 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1565 if (void_string_id != NULL) {
1566 const DexFile::TypeId* void_type_id =
1567 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1568 if (void_type_id != NULL) {
1569 std::vector<uint16_t> no_args;
1570 const DexFile::ProtoId* finalizer_proto =
1571 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1572 if (finalizer_proto != NULL) {
1573 // We have the prototype in the dex file
1574 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1575 klass->SetFinalizable();
1576 } else {
1577 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1578 // The Enum class declares a "final" finalize() method to prevent subclasses from
1579 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1580 // subclasses, so we exclude it here.
1581 // We also want to avoid setting the flag on Object, where we know that finalize() is
1582 // empty.
1583 if (klass_descriptor != "Ljava/lang/Object;" &&
1584 klass_descriptor != "Ljava/lang/Enum;") {
1585 klass->SetFinalizable();
1586 }
1587 }
1588 }
1589 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001590 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001591 }
Ian Rogers0571d352011-11-03 19:51:38 -07001592 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001593 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001594
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001595 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001596 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001597 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001598 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001599}
1600
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001601void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001602 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1603 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001604}
1605
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001606void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1607 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001608 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001609 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001610}
1611
Brian Carlstromaded5f72011-10-07 17:15:04 -07001612bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001613 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001614 for (size_t i = 0; i != dex_files_.size(); ++i) {
1615 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001616 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001617 }
1618 }
1619 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001620}
1621
Brian Carlstromaded5f72011-10-07 17:15:04 -07001622bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001623 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001624 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001625}
1626
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001627void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001628 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001629 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001630 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001631 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001632 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001633}
1634
Brian Carlstromaded5f72011-10-07 17:15:04 -07001635void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001636 {
1637 MutexLock mu(dex_lock_);
1638 if (IsDexFileRegisteredLocked(dex_file)) {
1639 return;
1640 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001641 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001642 // Don't alloc while holding the lock, since allocation may need to
1643 // suspend all threads and another thread may need the dex_lock_ to
1644 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001645 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001646 {
1647 MutexLock mu(dex_lock_);
1648 if (IsDexFileRegisteredLocked(dex_file)) {
1649 return;
1650 }
1651 RegisterDexFileLocked(dex_file, dex_cache);
1652 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001653}
1654
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001655void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001656 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001657 RegisterDexFileLocked(dex_file, dex_cache);
1658}
1659
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001660const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001661 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001662 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001663 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1664 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001665 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001666 }
1667 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001668 LOG(FATAL) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001669 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001670}
1671
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001672DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001673 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001674 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001675 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001676 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001677 }
1678 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001679 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001680 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001681}
1682
Ian Rogers19846512012-02-24 11:42:47 -08001683void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1684 MutexLock mu(dex_lock_);
1685 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1686 dex_caches_[i]->Fixup(resolution_method);
1687 }
1688}
1689
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001690Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1691 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001692 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001693 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001694 CHECK(primitive_class != NULL);
1695 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001696 primitive_class->SetPrimitiveType(type);
1697 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001698 Class* existing = InsertClass(descriptor, primitive_class, false);
1699 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001700 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001701}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001702
Brian Carlstrombe977852011-07-19 14:54:54 -07001703// Create an array class (i.e. the class object for the array, not the
1704// array itself). "descriptor" looks like "[C" or "[[[[B" or
1705// "[Ljava/lang/String;".
1706//
1707// If "descriptor" refers to an array of primitives, look up the
1708// primitive type's internally-generated class object.
1709//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001710// "class_loader" is the class loader of the class that's referring to
1711// us. It's used to ensure that we're looking for the element type in
1712// the right context. It does NOT become the class loader for the
1713// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001714//
1715// Returns NULL with an exception raised on failure.
Ian Rogers365c1022012-06-22 15:05:28 -07001716Class* ClassLinker::CreateArrayClass(const std::string& descriptor, ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001717 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001718
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001719 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001720 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001721 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001722 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001723 return NULL;
1724 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001725
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001726 // See if the component type is already loaded. Array classes are
1727 // always associated with the class loader of their underlying
1728 // element type -- an array of Strings goes with the loader for
1729 // java/lang/String -- so we need to look for it there. (The
1730 // caller should have checked for the existence of the class
1731 // before calling here, but they did so with *their* class loader,
1732 // not the component type's loader.)
1733 //
1734 // If we find it, the caller adds "loader" to the class' initiating
1735 // loader list, which should prevent us from going through this again.
1736 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001737 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001738 // are the same, because our caller (FindClass) just did the
1739 // lookup. (Even if we get this wrong we still have correct behavior,
1740 // because we effectively do this lookup again when we add the new
1741 // class to the hash table --- necessary because of possible races with
1742 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001743 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001744 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001745 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001746 return new_class;
1747 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001748 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001749
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001750 // Fill out the fields in the Class.
1751 //
1752 // It is possible to execute some methods against arrays, because
1753 // all arrays are subclasses of java_lang_Object_, so we need to set
1754 // up a vtable. We can just point at the one in java_lang_Object_.
1755 //
1756 // Array classes are simple enough that we don't need to do a full
1757 // link step.
1758
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001759 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001760 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001761 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001762 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001763 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001764 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001765 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001766 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001767 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001768 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001769 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001770 }
1771 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001772 if (new_class.get() == NULL) {
1773 new_class.reset(AllocClass(sizeof(Class)));
1774 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001775 return NULL;
1776 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001777 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001778 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001779 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001780 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001781 new_class->SetSuperClass(java_lang_Object);
1782 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001783 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001784 new_class->SetClassLoader(component_type->GetClassLoader());
1785 new_class->SetStatus(Class::kStatusInitialized);
1786 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001787 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001788
1789
1790 // All arrays have java/lang/Cloneable and java/io/Serializable as
1791 // interfaces. We need to set that up here, so that stuff like
1792 // "instanceof" works right.
1793 //
1794 // Note: The GC could run during the call to FindSystemClass,
1795 // so we need to make sure the class object is GC-valid while we're in
1796 // there. Do this by clearing the interface list so the GC will just
1797 // think that the entries are null.
1798
1799
1800 // Use the single, global copies of "interfaces" and "iftable"
1801 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001802 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001803 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001804
1805 // Inherit access flags from the component type. Arrays can't be
1806 // used as a superclass or interface, so we want to add "final"
1807 // and remove "interface".
1808 //
1809 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001810 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001811 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001812 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1813 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001814
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001815 Class* existing = InsertClass(descriptor, new_class.get(), false);
1816 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001817 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001818 }
1819 // Another thread must have loaded the class after we
1820 // started but before we finished. Abandon what we've
1821 // done.
1822 //
1823 // (Yes, this happens.)
1824
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001825 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001826}
1827
1828Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001829 switch (Primitive::GetType(type)) {
1830 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001831 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001832 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001833 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001834 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001835 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001836 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001837 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001838 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001839 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001840 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001841 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001842 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001843 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001844 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001845 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001846 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001847 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001848 case Primitive::kPrimNot:
1849 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001850 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001851 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001852 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001853 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001854}
1855
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001856Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001857 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001858 DexCache* dex_cache = klass->GetDexCache();
1859 std::string source;
1860 if (dex_cache != NULL) {
1861 source += " from ";
1862 source += dex_cache->GetLocation()->ToModifiedUtf8();
1863 }
1864 LOG(INFO) << "Loaded class " << descriptor << source;
1865 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001866 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001867 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001868 Table& classes = image_class ? image_classes_ : classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001869 Class* existing = LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, classes);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001870#ifndef NDEBUG
1871 // Check we don't have the class in the other table in error
1872 Table& other_classes = image_class ? classes_ : image_classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001873 CHECK(LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001874#endif
1875 if (existing != NULL) {
1876 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001877 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001878 classes.insert(std::make_pair(hash, klass));
1879 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001880}
1881
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001882bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1883 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001884 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001885 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001886 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001887 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001888 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001889 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001890 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001891 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001892 classes_.erase(it);
1893 return true;
1894 }
1895 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001896 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001897 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001898 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001899 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001900 image_classes_.erase(it);
1901 return true;
1902 }
1903 }
1904 return false;
1905}
1906
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001907Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1908 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001909 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001910 // TODO: determine if its better to search classes_ or image_classes_ first
Elliott Hughesf8349362012-06-18 15:00:06 -07001911 Class* klass = LookupClassLocked(descriptor, class_loader, hash, classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001912 if (klass != NULL) {
1913 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001914 }
Elliott Hughesf8349362012-06-18 15:00:06 -07001915 return LookupClassLocked(descriptor, class_loader, hash, image_classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001916}
1917
Elliott Hughesf8349362012-06-18 15:00:06 -07001918Class* ClassLinker::LookupClassLocked(const char* descriptor, const ClassLoader* class_loader,
1919 size_t hash, const Table& classes) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001920 ClassHelper kh(NULL, this);
1921 typedef Table::const_iterator It; // TODO: C++0x auto
1922 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001923 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001924 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001925 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001926#ifndef NDEBUG
1927 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001928 Class* klass2 = it->second;
1929 kh.ChangeClass(klass2);
1930 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001931 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001932 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001933 }
1934#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001935 return klass;
1936 }
1937 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001938 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001939}
1940
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001941void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001942 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001943 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001944 MutexLock mu(classes_lock_);
1945 typedef Table::const_iterator It; // TODO: C++0x auto
1946 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001947 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001948 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001949 Class* klass = it->second;
1950 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001951 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001952 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001953 }
1954 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001955 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001956 Class* klass = it->second;
1957 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001958 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001959 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001960 }
1961 }
1962}
1963
TDYa1273db52852012-04-01 15:11:43 -07001964#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogersc20a83e2012-01-18 18:15:32 -08001965static void CheckMethodsHaveGcMaps(Class* klass) {
1966 if (!Runtime::Current()->IsStarted()) {
1967 return;
1968 }
1969 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1970 Method* method = klass->GetDirectMethod(i);
1971 if (!method->IsNative() && !method->IsAbstract()) {
1972 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1973 }
1974 }
1975 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1976 Method* method = klass->GetVirtualMethod(i);
1977 if (!method->IsNative() && !method->IsAbstract()) {
1978 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1979 }
1980 }
1981}
1982#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001983static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08001984}
1985#endif
1986
jeffhao98eacac2011-09-14 16:11:53 -07001987void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001988 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08001989 ObjectLock lock(klass);
1990
jeffhao98eacac2011-09-14 16:11:53 -07001991 if (klass->IsVerified()) {
1992 return;
1993 }
1994
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001995 // The class might already be erroneous if we attempted to verify a subclass
1996 if (klass->IsErroneous()) {
1997 ThrowEarlierClassFailure(klass);
1998 return;
1999 }
2000
jeffhaoa9b3bf42012-06-06 17:18:39 -07002001 CHECK(klass->GetStatus() == Class::kStatusResolved ||
2002 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07002003 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07002004
Ian Rogers1c5eb702012-02-01 09:18:34 -08002005 // Verify super class
2006 Class* super = klass->GetSuperClass();
2007 std::string error_msg;
2008 if (super != NULL) {
2009 // Acquire lock to prevent races on verifying the super class
2010 ObjectLock lock(super);
2011
2012 if (!super->IsVerified() && !super->IsErroneous()) {
2013 Runtime::Current()->GetClassLinker()->VerifyClass(super);
2014 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002015 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08002016 error_msg = "Rejecting class ";
2017 error_msg += PrettyDescriptor(klass);
2018 error_msg += " that attempts to sub-class erroneous class ";
2019 error_msg += PrettyDescriptor(super);
2020 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
2021 Thread* self = Thread::Current();
2022 SirtRef<Throwable> cause(self->GetException());
2023 if (cause.get() != NULL) {
2024 self->ClearException();
2025 }
2026 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2027 if (cause.get() != NULL) {
2028 self->GetException()->SetCause(cause.get());
2029 }
2030 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2031 klass->SetStatus(Class::kStatusError);
2032 return;
2033 }
2034 }
2035
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002036 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002037 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002038 Class::Status oat_file_class_status(Class::kStatusNotReady);
2039 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002040 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
2041 if (!preverified) {
2042 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2043 }
2044 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002045 if (!preverified && oat_file_class_status == Class::kStatusError) {
2046 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2047 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2048 }
Ian Rogersc4762272012-02-01 15:55:55 -08002049 DCHECK(!Thread::Current()->IsExceptionPending());
jeffhaof1e6b7c2012-06-05 18:33:30 -07002050 CHECK(verifier_failure == verifier::MethodVerifier::kNoFailure ||
2051 Runtime::Current()->IsCompiler());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002052 // Make sure all classes referenced by catch blocks are resolved
2053 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002054 klass->SetStatus(verifier_failure == verifier::MethodVerifier::kNoFailure ?
2055 Class::kStatusVerified : Class::kStatusRetryVerificationAtRuntime);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002056 // Sanity check that a verified class has GC maps on all methods
2057 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002058 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002059 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002060 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2061 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002062 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002063 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002064 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2065 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002066 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002067 }
jeffhao98eacac2011-09-14 16:11:53 -07002068}
2069
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002070bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2071 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002072 if (!Runtime::Current()->IsStarted()) {
2073 return false;
2074 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002075 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002076 return false;
2077 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002078 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2079 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002080 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002081 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002082 const char* descriptor = ClassHelper(klass).GetDescriptor();
2083 uint32_t class_def_index;
2084 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002085 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002086 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002087 CHECK(oat_class.get() != NULL)
2088 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002089 oat_file_class_status = oat_class->GetStatus();
2090 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002091 return true;
2092 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002093 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002094 // Compile time verification failed with a soft error. Compile time verification can fail
2095 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002096 // class ... {
2097 // Foo x;
2098 // .... () {
2099 // if (...) {
2100 // v1 gets assigned a type of resolved class Foo
2101 // } else {
2102 // v1 gets assigned a type of unresolved class Bar
2103 // }
2104 // iput x = v1
2105 // } }
2106 // when we merge v1 following the if-the-else it results in Conflict
2107 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2108 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2109 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2110 // at compile time).
2111 return false;
2112 }
jeffhao1ac29442012-03-26 11:37:32 -07002113 if (oat_file_class_status == Class::kStatusError) {
2114 // Compile time verification failed with a hard error. This is caused by invalid instructions
2115 // in the class. These errors are unrecoverable.
2116 return false;
2117 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002118 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002119 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2120 // not loading the class.
2121 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2122 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002123 return false;
2124 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002125 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002126 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2127
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002128 return false;
2129}
2130
2131void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2132 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2133 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2134 }
2135 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2136 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2137 }
2138}
2139
2140void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2141 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2142 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2143 if (code_item == NULL) {
2144 return; // native or abstract method
2145 }
2146 if (code_item->tries_size_ == 0) {
2147 return; // nothing to process
2148 }
2149 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2150 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2151 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2152 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2153 CatchHandlerIterator iterator(handlers_ptr);
2154 for (; iterator.HasNext(); iterator.Next()) {
2155 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2156 // unresolved exception types will be ignored by exception delivery
2157 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2158 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2159 if (exception_type == NULL) {
2160 DCHECK(Thread::Current()->IsExceptionPending());
2161 Thread::Current()->ClearException();
2162 }
2163 }
2164 }
2165 handlers_ptr = iterator.EndDataPointer();
2166 }
2167}
2168
Ian Rogersc2b44472011-12-14 21:17:17 -08002169static void CheckProxyConstructor(Method* constructor);
2170static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2171
Jesse Wilson95caa792011-10-12 18:14:17 -04002172Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002173 ClassLoader* loader, ObjectArray<Method>* methods,
2174 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002175 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002176 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002177 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002178 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002179 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002180 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002181 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002182 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002183 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002184 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002185
2186 klass->SetStatus(Class::kStatusIdx);
2187
2188 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2189
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002190 // Instance fields are inherited, but we add a couple of static fields...
2191 klass->SetSFields(AllocObjectArray<Field>(2));
2192 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2193 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2194 SirtRef<Field> interfaces_sfield(AllocField());
2195 klass->SetStaticField(0, interfaces_sfield.get());
2196 interfaces_sfield->SetDexFieldIndex(0);
2197 interfaces_sfield->SetDeclaringClass(klass.get());
2198 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2199 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2200 SirtRef<Field> throws_sfield(AllocField());
2201 klass->SetStaticField(1, throws_sfield.get());
2202 throws_sfield->SetDexFieldIndex(1);
2203 throws_sfield->SetDeclaringClass(klass.get());
2204 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002205
Ian Rogers466bb252011-10-14 03:29:56 -07002206 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002207 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002208 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002209
Ian Rogers466bb252011-10-14 03:29:56 -07002210 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002211 size_t num_virtual_methods = methods->GetLength();
2212 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2213 for (size_t i = 0; i < num_virtual_methods; ++i) {
TDYa127f4404052012-04-11 08:53:03 -07002214#if defined(ART_USE_LLVM_COMPILER)
2215 Method* method = methods->Get(i);
2216 // Ensure link.
2217 // TODO: Remove this after fixing the link problem by in-place linking.
2218 if (method->GetCode() == NULL || method->GetInvokeStub() == NULL) {
2219 Runtime::Current()->GetClassLinker()->LinkOatCodeFor(methods->Get(i));
2220 }
2221#endif
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002222 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002223 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002224 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002225
2226 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2227 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2228 DCHECK(!Thread::Current()->IsExceptionPending());
2229
2230 // Link the fields and virtual methods, creating vtable and iftables
2231 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002232 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002233 return NULL;
2234 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002235 interfaces_sfield->SetObject(NULL, interfaces);
2236 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002237 klass->SetStatus(Class::kStatusInitialized);
2238
2239 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002240 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002241 CHECK(klass->GetIFields() == NULL);
2242 CheckProxyConstructor(klass->GetDirectMethod(0));
2243 for (size_t i = 0; i < num_virtual_methods; ++i) {
2244 SirtRef<Method> prototype(methods->Get(i));
2245 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2246 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002247
2248 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2249 name->ToModifiedUtf8().c_str()));
2250 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2251
2252 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2253 name->ToModifiedUtf8().c_str()));
2254 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002255
2256 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002257 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002258 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2259 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002260 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002261}
2262
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002263std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2264 DCHECK(proxy_class->IsProxyClass());
2265 String* name = proxy_class->GetName();
2266 DCHECK(name != NULL);
2267 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2268}
2269
Ian Rogers16f93672012-02-14 12:29:06 -08002270Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2271 DCHECK(proxy_class->IsProxyClass());
2272 DCHECK(proxy_method->IsProxyMethod());
2273 // Locate the dex cache of the original interface/Object
2274 DexCache* dex_cache = NULL;
2275 {
2276 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2277 MutexLock mu(dex_lock_);
2278 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2279 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2280 dex_cache = dex_caches_[i];
2281 break;
2282 }
2283 }
2284 }
2285 CHECK(dex_cache != NULL);
2286 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2287 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2288 CHECK(resolved_method != NULL);
2289 return resolved_method;
2290}
2291
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002292
2293Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002294 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002295 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002296 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002297 Method* proxy_constructor = proxy_direct_methods->Get(2);
TDYa1275bb86012012-04-11 05:57:28 -07002298#if defined(ART_USE_LLVM_COMPILER)
2299 // Ensure link.
2300 // TODO: Remove this after fixing the link problem by in-place linking.
2301 art_fix_stub_from_code(proxy_constructor);
2302#endif
Ian Rogers466bb252011-10-14 03:29:56 -07002303 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2304 // code_ too)
2305 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2306 // Make this constructor public and fix the class to be our Proxy version
2307 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002308 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002309 return constructor;
2310}
2311
2312static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002313 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002314 MethodHelper mh(constructor);
2315 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002316 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002317 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002318}
2319
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002320Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2321 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2322 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002323 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2324 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002325 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002326 // as necessary
2327 Method* method = down_cast<Method*>(prototype->Clone());
2328
2329 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2330 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002331 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002332 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002333
Ian Rogers466bb252011-10-14 03:29:56 -07002334 // At runtime the method looks like a reference and argument saving method, clone the code
2335 // related parameters from this method.
2336 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2337 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2338 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2339 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002340#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002341 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002342#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002343 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2344 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002345#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002346
Ian Rogersc2b44472011-12-14 21:17:17 -08002347 return method;
2348}
Jesse Wilson95caa792011-10-12 18:14:17 -04002349
Ian Rogersc2b44472011-12-14 21:17:17 -08002350static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002351 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002352 CHECK(!prototype->IsFinal());
2353 CHECK(method->IsFinal());
2354 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002355
2356 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2357 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2358 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2359 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2360 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2361 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2362 method->GetDexCacheInitializedStaticStorage());
2363 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2364
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002365 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002366 MethodHelper mh2(prototype.get());
2367 CHECK_STREQ(mh.GetName(), mh2.GetName());
2368 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002369 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002370 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002371}
2372
Ian Rogers0045a292012-03-31 21:08:41 -07002373bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002374 CHECK(klass->IsResolved() || klass->IsErroneous())
2375 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002376
Carl Shapirob5573532011-07-12 18:22:59 -07002377 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002378
Brian Carlstrom25c33252011-09-18 15:58:35 -07002379 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002380 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002381 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002382 ObjectLock lock(klass);
2383
Brian Carlstromd1422f82011-09-28 11:37:09 -07002384 if (klass->GetStatus() == Class::kStatusInitialized) {
2385 return true;
2386 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002387
Brian Carlstromd1422f82011-09-28 11:37:09 -07002388 if (klass->IsErroneous()) {
2389 ThrowEarlierClassFailure(klass);
2390 return false;
2391 }
2392
jeffhaoebe2e0f2012-06-06 15:19:40 -07002393 if (klass->GetStatus() == Class::kStatusResolved ||
2394 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002395 VerifyClass(klass);
2396 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002397 if (klass->GetStatus() == Class::kStatusError) {
2398 CHECK(self->IsExceptionPending());
2399 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002400 return false;
2401 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002402 }
2403
Brian Carlstrom25c33252011-09-18 15:58:35 -07002404 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2405 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002406 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002407 // don't bother going to kStatusInitializing. We return false so that
2408 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002409 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2410 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002411 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002412 }
2413
Brian Carlstromd1422f82011-09-28 11:37:09 -07002414 // If the class is kStatusInitializing, either this thread is
2415 // initializing higher up the stack or another thread has beat us
2416 // to initializing and we need to wait. Either way, this
2417 // invocation of InitializeClass will not be responsible for
2418 // running <clinit> and will return.
2419 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002420 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002421 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002422 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002423 return true;
2424 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002425 // No. That's fine. Wait for another thread to finish initializing.
2426 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002427 }
2428
2429 if (!ValidateSuperClassDescriptors(klass)) {
2430 klass->SetStatus(Class::kStatusError);
2431 return false;
2432 }
2433
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002434 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002435
Elliott Hughesdcc24742011-09-07 14:02:44 -07002436 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002437 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002438 }
2439
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002440 uint64_t t0 = NanoTime();
2441
Ian Rogers0045a292012-03-31 21:08:41 -07002442 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002443 // Super class initialization failed, this can be because we can't run
2444 // super-class class initializers in which case we'll be verified.
2445 // Otherwise this class is erroneous.
2446 if (!can_run_clinit) {
2447 CHECK(klass->IsVerified());
2448 } else {
2449 CHECK(klass->IsErroneous());
2450 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002451 return false;
2452 }
2453
Ian Rogers0045a292012-03-31 21:08:41 -07002454 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002455
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002456 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002457 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002458 }
2459
Ian Rogers19846512012-02-24 11:42:47 -08002460 FixupStaticTrampolines(klass);
2461
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002462 uint64_t t1 = NanoTime();
2463
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002464 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002465 {
2466 ObjectLock lock(klass);
2467
2468 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002469 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002470 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002471 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002472 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002473 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2474 RuntimeStats* thread_stats = self->GetStats();
2475 ++global_stats->class_init_count;
2476 ++thread_stats->class_init_count;
2477 global_stats->class_init_time_ns += (t1 - t0);
2478 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002479 // Set the class as initialized except if we can't initialize static fields and static field
2480 // initialization is necessary.
2481 if (!can_init_statics && has_static_field_initializers) {
2482 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2483 success = false;
2484 } else {
2485 klass->SetStatus(Class::kStatusInitialized);
2486 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002487 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002488 ClassHelper kh(klass);
2489 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002490 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002491 }
2492 lock.NotifyAll();
2493 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002494 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002495}
2496
Brian Carlstromd1422f82011-09-28 11:37:09 -07002497bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2498 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002499 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002500 lock.Wait();
2501
2502 // When we wake up, repeat the test for init-in-progress. If
2503 // there's an exception pending (only possible if
2504 // "interruptShouldThrow" was set), bail out.
2505 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002506 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002507 klass->SetStatus(Class::kStatusError);
2508 return false;
2509 }
2510 // Spurious wakeup? Go back to waiting.
2511 if (klass->GetStatus() == Class::kStatusInitializing) {
2512 continue;
2513 }
2514 if (klass->IsErroneous()) {
2515 // The caller wants an exception, but it was thrown in a
2516 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002517 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002518 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002519 return false;
2520 }
2521 if (klass->IsInitialized()) {
2522 return true;
2523 }
2524 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2525 }
2526 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2527}
2528
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002529bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2530 if (klass->IsInterface()) {
2531 return true;
2532 }
2533 // begin with the methods local to the superclass
2534 if (klass->HasSuperClass() &&
2535 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2536 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002537 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2538 const Method* method = klass->GetVTable()->Get(i);
2539 if (method != super->GetVTable()->Get(i) &&
2540 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002541 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2542 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2543 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002544 return false;
2545 }
2546 }
2547 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002548 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2549 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2550 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002551 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2552 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002553 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002554 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2555 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002556 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2557 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2558 PrettyMethod(method).c_str(),
2559 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002560 return false;
2561 }
2562 }
2563 }
2564 }
2565 return true;
2566}
2567
Ian Rogers595799e2012-01-11 17:32:51 -08002568// Returns true if classes referenced by the signature of the method are the
2569// same classes in klass1 as they are in klass2.
2570bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2571 const Class* klass1,
2572 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002573 if (klass1 == klass2) {
2574 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002575 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002576 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002577 const DexFile::ProtoId& proto_id =
2578 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002579 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2580 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002581 if (descriptor == NULL) {
2582 break;
2583 }
2584 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2585 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002586 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002587 return false;
2588 }
2589 }
2590 }
2591 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002592 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002593 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002594 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002595 return false;
2596 }
2597 }
2598 return true;
2599}
2600
Ian Rogers595799e2012-01-11 17:32:51 -08002601// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2602bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2603 const Class* klass1,
2604 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002605 CHECK(descriptor != NULL);
2606 CHECK(klass1 != NULL);
2607 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002608 if (klass1 == klass2) {
2609 return true;
2610 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002611 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002612 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002613 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002614 }
Ian Rogers595799e2012-01-11 17:32:51 -08002615 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2616 if (found2 == NULL) {
2617 Thread::Current()->ClearException();
2618 }
2619 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002620}
2621
Ian Rogers0045a292012-03-31 21:08:41 -07002622bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002623 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002624 if (!klass->IsInterface() && klass->HasSuperClass()) {
2625 Class* super_class = klass->GetSuperClass();
2626 if (super_class->GetStatus() != Class::kStatusInitialized) {
2627 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002628 Thread* self = Thread::Current();
2629 klass->MonitorEnter(self);
Ian Rogers0045a292012-03-31 21:08:41 -07002630 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Elliott Hughes5f791332011-09-15 17:45:30 -07002631 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002632 // TODO: check for a pending exception
2633 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002634 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002635 // Don't set status to error when we can't run <clinit>.
2636 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2637 klass->SetStatus(Class::kStatusVerified);
2638 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002639 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002640 klass->SetStatus(Class::kStatusError);
2641 klass->NotifyAll();
2642 return false;
2643 }
2644 }
2645 }
2646 return true;
2647}
2648
Ian Rogers0045a292012-03-31 21:08:41 -07002649bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002650 CHECK(c != NULL);
2651 if (c->IsInitialized()) {
2652 return true;
2653 }
2654
Elliott Hughes5f791332011-09-15 17:45:30 -07002655 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002656 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002657 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002658 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002659 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002660 }
2661 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002662}
2663
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002664void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002665 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Ian Rogers365c1022012-06-22 15:05:28 -07002666 ClassLoader* cl = c->GetClassLoader();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002667 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002668 ClassDataItemIterator it(dex_file, class_data);
2669 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002670 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002671 }
2672}
2673
Ian Rogers0045a292012-03-31 21:08:41 -07002674bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002675 size_t num_static_fields = klass->NumStaticFields();
2676 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002677 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002678 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002679 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002680 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002681 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002682 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002683 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002684 ClassHelper kh(klass);
2685 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002686 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002687 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002688 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002689
Ian Rogers0571d352011-11-03 19:51:38 -07002690 if (it.HasNext()) {
2691 // 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 -07002692 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002693 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2694 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002695 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002696 }
Ian Rogers0045a292012-03-31 21:08:41 -07002697 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002698 }
Ian Rogers0045a292012-03-31 21:08:41 -07002699 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002700}
2701
Ian Rogersc2b44472011-12-14 21:17:17 -08002702bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002703 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002704 if (!LinkSuperClass(klass)) {
2705 return false;
2706 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002707 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002708 return false;
2709 }
2710 if (!LinkInstanceFields(klass)) {
2711 return false;
2712 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002713 if (!LinkStaticFields(klass)) {
2714 return false;
2715 }
2716 CreateReferenceInstanceOffsets(klass);
2717 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002718 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2719 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002720 return true;
2721}
2722
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002723bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002724 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002725 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2726 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002727 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002728 uint16_t super_class_idx = class_def->superclass_idx_;
2729 if (super_class_idx != DexFile::kDexNoIndex16) {
2730 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002731 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002732 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002733 return false;
2734 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002735 // Verify
2736 if (!klass->CanAccess(super_class)) {
2737 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2738 "Class %s extended by class %s is inaccessible",
2739 PrettyDescriptor(super_class).c_str(),
2740 PrettyDescriptor(klass.get()).c_str());
2741 return false;
2742 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002743 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002744 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002745 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2746 if (interfaces != NULL) {
2747 for (size_t i = 0; i < interfaces->Size(); i++) {
2748 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2749 Class* interface = ResolveType(dex_file, idx, klass.get());
2750 if (interface == NULL) {
2751 DCHECK(Thread::Current()->IsExceptionPending());
2752 return false;
2753 }
2754 // Verify
2755 if (!klass->CanAccess(interface)) {
2756 // TODO: the RI seemed to ignore this in my testing.
2757 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2758 "Interface %s implemented by class %s is inaccessible",
2759 PrettyDescriptor(interface).c_str(),
2760 PrettyDescriptor(klass.get()).c_str());
2761 return false;
2762 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002763 }
2764 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002765 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002766 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002767 return true;
2768}
2769
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002770bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002771 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002772 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002773 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002774 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002775 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002776 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002777 return false;
2778 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002779 return true;
2780 }
2781 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002782 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002783 return false;
2784 }
2785 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002786 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002787 Thread* self = Thread::Current();
2788 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002789 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002790 PrettyDescriptor(super).c_str(),
2791 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002792 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002793 return false;
2794 }
2795 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002796 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002797 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002798 PrettyDescriptor(super).c_str(),
2799 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002800 return false;
2801 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002802
2803 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2804 if (super->IsFinalizable()) {
2805 klass->SetFinalizable();
2806 }
2807
Elliott Hughes2da50362011-10-10 16:57:08 -07002808 // Inherit reference flags (if any) from the superclass.
2809 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2810 if (reference_flags != 0) {
2811 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2812 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002813 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002814 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002815 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002816 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002817 return false;
2818 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002819
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002820#ifndef NDEBUG
2821 // Ensure super classes are fully resolved prior to resolving fields..
2822 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002823 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002824 super = super->GetSuperClass();
2825 }
2826#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002827 return true;
2828}
2829
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002830// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002831bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002832 if (klass->IsInterface()) {
2833 // No vtable.
2834 size_t count = klass->NumVirtualMethods();
2835 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002836 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002837 return false;
2838 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002839 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002840 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002841 }
jeffhaobdb76512011-09-07 11:43:16 -07002842 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002843 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002844 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002845 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002846 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002847 }
2848 return true;
2849}
2850
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002851bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002852 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002853 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2854 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002855 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002856 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002857 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002858 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002859 MethodHelper local_mh(NULL, this);
2860 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002861 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002862 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002863 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002864 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002865 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002866 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002867 super_mh.ChangeMethod(super_method);
2868 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002869 // Verify
2870 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002871 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002872 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002873 PrettyDescriptor(klass.get()).c_str(),
2874 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002875 return false;
2876 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002877 vtable->Set(j, local_method);
2878 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002879 break;
2880 }
2881 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002882 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002883 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002884 vtable->Set(actual_count, local_method);
2885 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002886 actual_count += 1;
2887 }
2888 }
2889 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002890 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002891 return false;
2892 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002893 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002894 CHECK_LE(actual_count, max_count);
2895 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002896 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002897 }
Ian Rogers30fab402012-01-23 15:43:46 -08002898 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002899 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002900 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002901 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002902 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002903 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002904 return false;
2905 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002906 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002907 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002908 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2909 vtable->Set(i, virtual_method);
2910 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002911 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002912 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002913 }
2914 return true;
2915}
2916
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002917bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002918 size_t super_ifcount;
2919 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002920 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002921 } else {
2922 super_ifcount = 0;
2923 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002924 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002925 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07002926 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002927 ifcount += num_interfaces;
2928 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002929 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002930 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002931 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002932 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002933 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002934 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002935 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002936 return true;
2937 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002938 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002939 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002940 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2941 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002942 Class* super_interface = super_iftable->Get(i)->GetInterface();
2943 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002944 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002945 }
2946 // Flatten the interface inheritance hierarchy.
2947 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002948 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002949 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002950 DCHECK(interface != NULL);
2951 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002952 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002953 Thread* self = Thread::Current();
2954 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002955 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002956 PrettyDescriptor(klass.get()).c_str(),
2957 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002958 return false;
2959 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002960 // Check if interface is already in iftable
2961 bool duplicate = false;
2962 for (size_t j = 0; j < idx; j++) {
2963 Class* existing_interface = iftable->Get(j)->GetInterface();
2964 if (existing_interface == interface) {
2965 duplicate = true;
2966 break;
2967 }
2968 }
2969 if (!duplicate) {
2970 // Add this non-duplicate interface.
2971 iftable->Set(idx++, AllocInterfaceEntry(interface));
2972 // Add this interface's non-duplicate super-interfaces.
2973 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2974 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2975 bool super_duplicate = false;
2976 for (size_t k = 0; k < idx; k++) {
2977 Class* existing_interface = iftable->Get(k)->GetInterface();
2978 if (existing_interface == super_interface) {
2979 super_duplicate = true;
2980 break;
2981 }
2982 }
2983 if (!super_duplicate) {
2984 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2985 }
2986 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002987 }
2988 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002989 // Shrink iftable in case duplicates were found
2990 if (idx < ifcount) {
2991 iftable.reset(iftable->CopyOf(idx));
2992 ifcount = idx;
2993 } else {
2994 CHECK_EQ(idx, ifcount);
2995 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002996 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002997
2998 // If we're an interface, we don't need the vtable pointers, so we're done.
2999 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003000 return true;
3001 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003002 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003003 MethodHelper vtable_mh(NULL, this);
3004 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003005 for (size_t i = 0; i < ifcount; ++i) {
3006 InterfaceEntry* interface_entry = iftable->Get(i);
3007 Class* interface = interface_entry->GetInterface();
3008 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
3009 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003010 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003011 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
3012 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003013 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003014 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07003015 // For each method listed in the interface's method list, find the
3016 // matching method in our class's method list. We want to favor the
3017 // subclass over the superclass, which just requires walking
3018 // back from the end of the vtable. (This only matters if the
3019 // superclass defines a private method and this class redefines
3020 // it -- otherwise it would use the same vtable slot. In .dex files
3021 // those don't end up in the virtual method table, so it shouldn't
3022 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003023 for (k = vtable->GetLength() - 1; k >= 0; --k) {
3024 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003025 vtable_mh.ChangeMethod(vtable_method);
3026 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07003027 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07003028 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003029 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003030 return false;
3031 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003032 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003033 break;
3034 }
3035 }
3036 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003037 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003038 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003039 Method* mir_method = miranda_list[mir];
3040 vtable_mh.ChangeMethod(mir_method);
3041 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003042 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003043 break;
3044 }
3045 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003046 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003047 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003048 miranda_method.reset(AllocMethod());
3049 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3050 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003051 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003052 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003053 }
3054 }
3055 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003056 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003057 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003058 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003059 klass->SetVirtualMethods((old_method_count == 0)
3060 ? AllocObjectArray<Method>(new_method_count)
3061 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003062
Ian Rogers30fab402012-01-23 15:43:46 -08003063 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3064 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003065 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003066 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003067 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003068 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003069 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003070 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003071 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3072 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3073 klass->SetVirtualMethod(old_method_count + i, method);
3074 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003075 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003076 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003077 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003078 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003079
3080 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3081 for (int i = 0; i < vtable->GetLength(); ++i) {
3082 CHECK(vtable->Get(i) != NULL);
3083 }
3084
3085// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3086
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003087 return true;
3088}
3089
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003090bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3091 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003092 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003093}
3094
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003095bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3096 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003097 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003098 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003099 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003100 return success;
3101}
3102
Brian Carlstromdbc05252011-09-09 01:59:59 -07003103struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003104 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003105 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003106 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003107 fh_->ChangeField(field1);
3108 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3109 fh_->ChangeField(field2);
3110 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003111 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3112 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3113 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3114 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003115 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3116 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3117 if (order1 != order2) {
3118 return order1 < order2;
3119 }
3120
3121 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003122 fh_->ChangeField(field1);
3123 StringPiece name1(fh_->GetName());
3124 fh_->ChangeField(field2);
3125 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003126 return name1 < name2;
3127 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003128
3129 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003130};
3131
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003132bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003133 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003134 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003135
3136 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003137 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003138
3139 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003140 size_t size;
3141 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003142 if (is_static) {
3143 size = klass->GetClassSize();
3144 field_offset = Class::FieldsOffset();
3145 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003146 Class* super_class = klass->GetSuperClass();
3147 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003148 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003149 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003150 }
3151 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003152 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003153
Brian Carlstromdbc05252011-09-09 01:59:59 -07003154 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003155
Brian Carlstromdbc05252011-09-09 01:59:59 -07003156 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003157 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003158 std::deque<Field*> grouped_and_sorted_fields;
3159 for (size_t i = 0; i < num_fields; i++) {
3160 grouped_and_sorted_fields.push_back(fields->Get(i));
3161 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003162 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003163 std::sort(grouped_and_sorted_fields.begin(),
3164 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003165 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003166
3167 // References should be at the front.
3168 size_t current_field = 0;
3169 size_t num_reference_fields = 0;
3170 for (; current_field < num_fields; current_field++) {
3171 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003172 fh.ChangeField(field);
3173 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003174 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003175 if (isPrimitive) {
3176 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003177 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003178 grouped_and_sorted_fields.pop_front();
3179 num_reference_fields++;
3180 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003181 field->SetOffset(field_offset);
3182 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003183 }
3184
3185 // Now we want to pack all of the double-wide fields together. If
3186 // we're not aligned, though, we want to shuffle one 32-bit field
3187 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003188 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003189 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3190 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003191 fh.ChangeField(field);
3192 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003193 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3194 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003195 continue;
3196 }
3197 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003198 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003199 // drop the consumed field
3200 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3201 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003202 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003203 // whether we found a 32-bit field for padding or not, we advance
3204 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003205 }
3206
3207 // Alignment is good, shuffle any double-wide fields forward, and
3208 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003209 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003210 while (!grouped_and_sorted_fields.empty()) {
3211 Field* field = grouped_and_sorted_fields.front();
3212 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003213 fh.ChangeField(field);
3214 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003215 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003216 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003217 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003218 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003219 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003220 ? sizeof(uint64_t)
3221 : sizeof(uint32_t)));
3222 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003223 }
3224
Elliott Hughesadb460d2011-10-05 17:02:34 -07003225 // 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 -08003226 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3227 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003228 // We know there are no non-reference fields in the Reference classes, and we know
3229 // that 'referent' is alphabetically last, so this is easy...
3230 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003231 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003232 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003233 --num_reference_fields;
3234 }
3235
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003236#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003237 // Make sure that all reference fields appear before
3238 // non-reference fields, and all double-wide fields are aligned.
3239 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003240 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003241 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003242 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003243 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003244 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003245 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003246 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3247 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003248 fh.ChangeField(field);
3249 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003250 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003251 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003252 is_primitive = true; // We lied above, so we have to expect a lie here.
3253 }
3254 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003255 if (!seen_non_ref) {
3256 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003257 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003258 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003259 } else {
3260 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003261 }
3262 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003263 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003264 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003265 }
3266#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003267 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003268 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003269 if (is_static) {
3270 klass->SetNumReferenceStaticFields(num_reference_fields);
3271 klass->SetClassSize(size);
3272 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003273 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003274 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003275 klass->SetObjectSize(size);
3276 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003277 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003278 return true;
3279}
3280
3281// Set the bitmap of reference offsets, refOffsets, from the ifields
3282// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003283void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003284 uint32_t reference_offsets = 0;
3285 Class* super_class = klass->GetSuperClass();
3286 if (super_class != NULL) {
3287 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003288 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003289 if (reference_offsets == CLASS_WALK_SUPER) {
3290 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003291 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003292 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003293 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003294 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003295}
3296
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003297void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003298 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003299}
3300
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003301void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003302 uint32_t reference_offsets) {
3303 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003304 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3305 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003306 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003307 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003308 // All of the fields that contain object references are guaranteed
3309 // to be at the beginning of the fields list.
3310 for (size_t i = 0; i < num_reference_fields; ++i) {
3311 // Note that byte_offset is the offset from the beginning of
3312 // object, not the offset into instance data
3313 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003314 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003315 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3316 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3317 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003318 CHECK_NE(new_bit, 0U);
3319 reference_offsets |= new_bit;
3320 } else {
3321 reference_offsets = CLASS_WALK_SUPER;
3322 break;
3323 }
3324 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003325 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003326 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003327 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003328 } else {
3329 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003330 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003331}
3332
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003333String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003334 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003335 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003336 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003337 if (resolved != NULL) {
3338 return resolved;
3339 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003340 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3341 int32_t utf16_length = dex_file.GetStringLength(string_id);
3342 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003343 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003344 dex_cache->SetResolvedString(string_idx, string);
3345 return string;
3346}
3347
3348Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003349 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003350 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003351 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003352 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003353 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003354 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003355 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003356 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003357 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003358 // TODO: we used to throw here if resolved's class loader was not the
3359 // boot class loader. This was to permit different classes with the
3360 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003361 dex_cache->SetResolvedType(type_idx, resolved);
3362 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003363 CHECK(Thread::Current()->IsExceptionPending())
3364 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003365 // Convert a ClassNotFoundException to a NoClassDefFoundError
3366 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3367 Thread::Current()->ClearException();
3368 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3369 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003370 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003371 }
3372 return resolved;
3373}
3374
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003375Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3376 uint32_t method_idx,
3377 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003378 ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003379 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003380 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003381 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3382 if (resolved != NULL) {
3383 return resolved;
3384 }
3385 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3386 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3387 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003388 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003389 return NULL;
3390 }
3391
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003392 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003393 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003394 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003395 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003396 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003397 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003398 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003399
3400 if (resolved == NULL) {
3401 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3402 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3403 if (is_direct) {
3404 resolved = klass->FindDirectMethod(name, signature);
3405 } else if (klass->IsInterface()) {
3406 resolved = klass->FindInterfaceMethod(name, signature);
3407 } else {
3408 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003409 // If a virtual method isn't found, search the direct methods. This can
3410 // happen when trying to access private methods directly, and allows the
3411 // proper exception to be thrown in the caller.
3412 if (resolved == NULL) {
3413 resolved = klass->FindDirectMethod(name, signature);
3414 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003415 }
3416 if (resolved == NULL) {
3417 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3418 return NULL;
3419 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003420 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003421 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003422 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003423}
3424
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003425Field* ClassLinker::ResolveField(const DexFile& dex_file,
3426 uint32_t field_idx,
3427 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003428 ClassLoader* class_loader,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003429 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003430 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003431 Field* resolved = dex_cache->GetResolvedField(field_idx);
3432 if (resolved != NULL) {
3433 return resolved;
3434 }
3435 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3436 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3437 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003438 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003439 return NULL;
3440 }
3441
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003442 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003443 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003444 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003445 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003446 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003447
3448 if (resolved == NULL) {
3449 const char* name = dex_file.GetFieldName(field_id);
3450 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3451 if (is_static) {
3452 resolved = klass->FindStaticField(name, type);
3453 } else {
3454 resolved = klass->FindInstanceField(name, type);
3455 }
3456 if (resolved == NULL) {
3457 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3458 return NULL;
3459 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003460 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003461 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003462 return resolved;
3463}
3464
3465Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3466 uint32_t field_idx,
3467 DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -07003468 ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003469 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003470 Field* resolved = dex_cache->GetResolvedField(field_idx);
3471 if (resolved != NULL) {
3472 return resolved;
3473 }
3474 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3475 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3476 if (klass == NULL) {
3477 DCHECK(Thread::Current()->IsExceptionPending());
3478 return NULL;
3479 }
3480
3481 const char* name = dex_file.GetFieldName(field_id);
3482 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3483 resolved = klass->FindField(name, type);
3484 if (resolved != NULL) {
3485 dex_cache->SetResolvedField(field_idx, resolved);
3486 } else {
3487 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003488 }
3489 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003490}
3491
Ian Rogers19846512012-02-24 11:42:47 -08003492const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003493 Class* declaring_class = referrer->GetDeclaringClass();
3494 DexCache* dex_cache = declaring_class->GetDexCache();
3495 const DexFile& dex_file = FindDexFile(dex_cache);
3496 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003497 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003498}
3499
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003500void ClassLinker::DumpAllClasses(int flags) const {
3501 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3502 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3503 std::vector<Class*> all_classes;
3504 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003505 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003506 typedef Table::const_iterator It; // TODO: C++0x auto
3507 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3508 all_classes.push_back(it->second);
3509 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003510 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3511 all_classes.push_back(it->second);
3512 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003513 }
3514
3515 for (size_t i = 0; i < all_classes.size(); ++i) {
3516 all_classes[i]->DumpClass(std::cerr, flags);
3517 }
3518}
3519
Elliott Hughescac6cc72011-11-03 20:31:21 -07003520void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3521 MutexLock mu(classes_lock_);
3522 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3523 << classes_.size() << " allocated classes\n";
3524}
3525
Elliott Hughese27955c2011-08-26 15:21:24 -07003526size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003527 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003528 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003529}
3530
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003531pid_t ClassLinker::GetClassesLockOwner() {
3532 return classes_lock_.GetOwner();
3533}
3534
3535pid_t ClassLinker::GetDexLockOwner() {
3536 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003537}
3538
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003539void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3540 DCHECK(!init_done_);
3541
3542 DCHECK(klass != NULL);
3543 DCHECK(klass->GetClassLoader() == NULL);
3544
3545 DCHECK(class_roots_ != NULL);
3546 DCHECK(class_roots_->Get(class_root) == NULL);
3547 class_roots_->Set(class_root, klass);
3548}
3549
Logan Chien0c717dd2012-03-28 18:31:07 +08003550void ClassLinker::RelocateExecutable() {
Elliott Hughesf8349362012-06-18 15:00:06 -07003551 MutexLock mu(dex_lock_);
Logan Chien0c717dd2012-03-28 18:31:07 +08003552 for (size_t i = 0; i < oat_files_.size(); ++i) {
3553 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3554 }
3555}
3556
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003557} // namespace art