blob: f8919137709491463e99cf164ef762a84ebf25f0 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "class_linker.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Brian Carlstromd601af82012-01-06 10:15:19 -080019#include <fcntl.h>
20#include <sys/file.h>
21#include <sys/stat.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080022#include <sys/types.h>
23#include <sys/wait.h>
24
Brian Carlstromdbc05252011-09-09 01:59:59 -070025#include <deque>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070026#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070028#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "casts.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_loader.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080032#include "debugger.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070033#include "dex_cache.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070034#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "heap.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070036#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070037#include "leb128.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070038#include "logging.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070039#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070040#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080041#include "object_utils.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080042#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070043#include "runtime.h"
Ian Rogers466bb252011-10-14 03:29:56 -070044#include "runtime_support.h"
TDYa1275bb86012012-04-11 05:57:28 -070045#if defined(ART_USE_LLVM_COMPILER)
46#include "compiler_llvm/runtime_support_llvm.h"
47#endif
Elliott Hughes4d0207c2011-10-03 19:14:34 -070048#include "ScopedLocalRef.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070049#include "space.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070050#include "stack_indirect_reference_table.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070051#include "stl_util.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070052#include "thread.h"
Elliott Hughes54e7df12011-09-16 11:47:04 -070053#include "UniquePtr.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070054#include "utils.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070055#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070056
57namespace art {
58
Elliott Hughes0512f022012-03-15 22:10:52 -070059static void ThrowNoClassDefFoundError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
60static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070061 va_list args;
62 va_start(args, fmt);
63 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
64 va_end(args);
65}
66
Elliott Hughes0512f022012-03-15 22:10:52 -070067static void ThrowClassFormatError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
68static void ThrowClassFormatError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070069 va_list args;
70 va_start(args, fmt);
Elliott Hughese555dc02011-09-25 10:46:35 -070071 Thread::Current()->ThrowNewExceptionV("Ljava/lang/ClassFormatError;", fmt, args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -070072 va_end(args);
73}
74
Elliott Hughes0512f022012-03-15 22:10:52 -070075static void ThrowLinkageError(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
76static void ThrowLinkageError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070077 va_list args;
78 va_start(args, fmt);
79 Thread::Current()->ThrowNewExceptionV("Ljava/lang/LinkageError;", fmt, args);
80 va_end(args);
81}
82
Elliott Hughes0512f022012-03-15 22:10:52 -070083static void ThrowNoSuchMethodError(bool is_direct, Class* c, const StringPiece& name,
84 const StringPiece& signature) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080085 ClassHelper kh(c);
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070086 std::ostringstream msg;
Ian Rogersc8b306f2012-02-17 21:34:44 -080087 msg << "no " << (is_direct ? "direct" : "virtual") << " method " << name << signature
Ian Rogers9f1ab122011-12-12 08:52:43 -080088 << " in class " << kh.GetDescriptor() << " or its superclasses";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080089 std::string location(kh.GetLocation());
90 if (!location.empty()) {
91 msg << " (defined in " << location << ")";
Elliott Hughescc5f9a92011-09-28 19:17:29 -070092 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070093 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchMethodError;", msg.str().c_str());
Elliott Hughescc5f9a92011-09-28 19:17:29 -070094}
95
Elliott Hughes0512f022012-03-15 22:10:52 -070096static void ThrowNoSuchFieldError(const StringPiece& scope, Class* c, const StringPiece& type,
97 const StringPiece& name) {
Ian Rogers9f1ab122011-12-12 08:52:43 -080098 ClassHelper kh(c);
99 std::ostringstream msg;
Ian Rogersb067ac22011-12-13 18:05:09 -0800100 msg << "no " << scope << "field " << name << " of type " << type
Ian Rogers9f1ab122011-12-12 08:52:43 -0800101 << " in class " << kh.GetDescriptor() << " or its superclasses";
102 std::string location(kh.GetLocation());
103 if (!location.empty()) {
104 msg << " (defined in " << location << ")";
105 }
106 Thread::Current()->ThrowNewException("Ljava/lang/NoSuchFieldError;", msg.str().c_str());
107}
108
Elliott Hughes0512f022012-03-15 22:10:52 -0700109static void ThrowNullPointerException(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
110static void ThrowNullPointerException(const char* fmt, ...) {
Ian Rogerscab01012012-01-10 17:35:46 -0800111 va_list args;
112 va_start(args, fmt);
113 Thread::Current()->ThrowNewExceptionV("Ljava/lang/NullPointerException;", fmt, args);
114 va_end(args);
115}
116
Elliott Hughes0512f022012-03-15 22:10:52 -0700117static void ThrowEarlierClassFailure(Class* c) {
Elliott Hughes5c599942012-06-13 16:45:05 -0700118 // The class failed to initialize on a previous attempt, so we want to throw
119 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
120 // failed in verification, in which case v2 5.4.1 says we need to re-throw
121 // the previous error.
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700122 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
123
Elliott Hughes5c599942012-06-13 16:45:05 -0700124 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700125 if (c->GetVerifyErrorClass() != NULL) {
126 // TODO: change the verifier to store an _instance_, with a useful detail message?
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800127 ClassHelper ve_ch(c->GetVerifyErrorClass());
128 std::string error_descriptor(ve_ch.GetDescriptor());
129 Thread::Current()->ThrowNewException(error_descriptor.c_str(), PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700130 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800131 ThrowNoClassDefFoundError("%s", PrettyDescriptor(c).c_str());
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700132 }
133}
134
Elliott Hughes0512f022012-03-15 22:10:52 -0700135static void WrapExceptionInInitializer() {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700136 Thread* self = Thread::Current();
137 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700138
139 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
140 CHECK(cause.get() != NULL);
141
142 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700143 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
144 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700145
Elliott Hughesa4f94742012-05-29 16:28:38 -0700146 // We only wrap non-Error exceptions; an Error can just be used as-is.
147 if (!is_error) {
148 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", NULL);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700149 }
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700150}
151
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800152static size_t Hash(const char* s) {
153 // This is the java.lang.String hashcode for convenience, not interoperability.
154 size_t hash = 0;
155 for (; *s != '\0'; ++s) {
156 hash = hash * 31 + *s;
157 }
158 return hash;
159}
160
Elliott Hughes418d20f2011-09-22 14:00:39 -0700161const char* ClassLinker::class_roots_descriptors_[] = {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700162 "Ljava/lang/Class;",
163 "Ljava/lang/Object;",
Elliott Hughes418d20f2011-09-22 14:00:39 -0700164 "[Ljava/lang/Class;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700165 "[Ljava/lang/Object;",
166 "Ljava/lang/String;",
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700167 "Ljava/lang/ref/Reference;",
Elliott Hughes80609252011-09-23 17:24:51 -0700168 "Ljava/lang/reflect/Constructor;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700169 "Ljava/lang/reflect/Field;",
170 "Ljava/lang/reflect/Method;",
Ian Rogers466bb252011-10-14 03:29:56 -0700171 "Ljava/lang/reflect/Proxy;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700172 "Ljava/lang/ClassLoader;",
173 "Ldalvik/system/BaseDexClassLoader;",
174 "Ldalvik/system/PathClassLoader;",
Ian Rogers5167c972012-02-03 10:41:20 -0800175 "Ljava/lang/Throwable;",
jeffhao8cd6dda2012-02-22 10:15:34 -0800176 "Ljava/lang/ClassNotFoundException;",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700177 "Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700178 "Z",
179 "B",
180 "C",
181 "D",
182 "F",
183 "I",
184 "J",
185 "S",
186 "V",
187 "[Z",
188 "[B",
189 "[C",
190 "[D",
191 "[F",
192 "[I",
193 "[J",
194 "[S",
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700195 "[Ljava/lang/StackTraceElement;",
Brian Carlstroma663ea52011-08-19 23:33:41 -0700196};
197
Brian Carlstroma004aa92012-02-08 18:05:09 -0800198ClassLinker* ClassLinker::CreateFromCompiler(const std::vector<const DexFile*>& boot_class_path,
199 InternTable* intern_table) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700200 CHECK_NE(boot_class_path.size(), 0U);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800201 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800202 class_linker->InitFromCompiler(boot_class_path);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700203 return class_linker.release();
204}
205
Brian Carlstroma004aa92012-02-08 18:05:09 -0800206ClassLinker* ClassLinker::CreateFromImage(InternTable* intern_table) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800207 UniquePtr<ClassLinker> class_linker(new ClassLinker(intern_table));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700208 class_linker->InitFromImage();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700209 return class_linker.release();
210}
211
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800212ClassLinker::ClassLinker(InternTable* intern_table)
213 : dex_lock_("ClassLinker dex lock"),
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700214 classes_lock_("ClassLinker classes lock"),
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700215 class_roots_(NULL),
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700216 array_iftable_(NULL),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700217 init_done_(false),
218 intern_table_(intern_table) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700219 CHECK_EQ(arraysize(class_roots_descriptors_), size_t(kClassRootsMax));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700220}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700221
Brian Carlstroma004aa92012-02-08 18:05:09 -0800222void ClassLinker::InitFromCompiler(const std::vector<const DexFile*>& boot_class_path) {
223 VLOG(startup) << "ClassLinker::Init";
224 CHECK(Runtime::Current()->IsCompiler());
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700225
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700226 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700227
Elliott Hughes30646832011-10-13 16:59:46 -0700228 // java_lang_Class comes first, it's needed for AllocClass
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800229 Heap* heap = Runtime::Current()->GetHeap();
230 SirtRef<Class> java_lang_Class(down_cast<Class*>(heap->AllocObject(NULL, sizeof(ClassClass))));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700231 CHECK(java_lang_Class.get() != NULL);
232 java_lang_Class->SetClass(java_lang_Class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700233 java_lang_Class->SetClassSize(sizeof(ClassClass));
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700234 // AllocClass(Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700235
Elliott Hughes418d20f2011-09-22 14:00:39 -0700236 // Class[] is used for reflection support.
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700237 SirtRef<Class> class_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
238 class_array_class->SetComponentType(java_lang_Class.get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700239
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700240 // java_lang_Object comes next so that object_array_class can be created
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700241 SirtRef<Class> java_lang_Object(AllocClass(java_lang_Class.get(), sizeof(Class)));
242 CHECK(java_lang_Object.get() != NULL);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700243 // backfill Object as the super class of Class
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700244 java_lang_Class->SetSuperClass(java_lang_Object.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700245 java_lang_Object->SetStatus(Class::kStatusLoaded);
Brian Carlstroma0808032011-07-18 00:39:23 -0700246
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700247 // Object[] next to hold class roots
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700248 SirtRef<Class> object_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
249 object_array_class->SetComponentType(java_lang_Object.get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700250
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700251 // Setup the char class to be used for char[]
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700252 SirtRef<Class> char_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700253
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700254 // Setup the char[] class to be used for String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700255 SirtRef<Class> char_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
256 char_array_class->SetComponentType(char_class.get());
257 CharArray::SetArrayClass(char_array_class.get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700258
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700259 // Setup String
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700260 SirtRef<Class> java_lang_String(AllocClass(java_lang_Class.get(), sizeof(StringClass)));
261 String::SetClass(java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700262 java_lang_String->SetObjectSize(sizeof(String));
263 java_lang_String->SetStatus(Class::kStatusResolved);
Jesse Wilson14150742011-07-29 19:04:44 -0400264
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700265 // Create storage for root classes, save away our work so far (requires
266 // descriptors)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700267 class_roots_ = ObjectArray<Class>::Alloc(object_array_class.get(), kClassRootsMax);
Elliott Hughes30646832011-10-13 16:59:46 -0700268 CHECK(class_roots_ != NULL);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700269 SetClassRoot(kJavaLangClass, java_lang_Class.get());
270 SetClassRoot(kJavaLangObject, java_lang_Object.get());
271 SetClassRoot(kClassArrayClass, class_array_class.get());
272 SetClassRoot(kObjectArrayClass, object_array_class.get());
273 SetClassRoot(kCharArrayClass, char_array_class.get());
274 SetClassRoot(kJavaLangString, java_lang_String.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700275
276 // Setup the primitive type classes.
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700277 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass("Z", Primitive::kPrimBoolean));
278 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass("B", Primitive::kPrimByte));
279 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass("S", Primitive::kPrimShort));
280 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass("I", Primitive::kPrimInt));
281 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass("J", Primitive::kPrimLong));
282 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass("F", Primitive::kPrimFloat));
283 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass("D", Primitive::kPrimDouble));
284 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass("V", Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700285
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700286 // Create array interface entries to populate once we can load system classes
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700287 array_iftable_ = AllocObjectArray<InterfaceEntry>(2);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700288
289 // Create int array type for AllocDexCache (done in AppendToBootClassPath)
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700290 SirtRef<Class> int_array_class(AllocClass(java_lang_Class.get(), sizeof(Class)));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700291 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700292 IntArray::SetArrayClass(int_array_class.get());
293 SetClassRoot(kIntArrayClass, int_array_class.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700295 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700296
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700297 // setup boot_class_path_ and register class_path now that we can
298 // use AllocObjectArray to create DexCache instances
Brian Carlstroma004aa92012-02-08 18:05:09 -0800299 CHECK_NE(0U, boot_class_path.size());
300 for (size_t i = 0; i != boot_class_path.size(); ++i) {
301 const DexFile* dex_file = boot_class_path[i];
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700302 CHECK(dex_file != NULL);
303 AppendToBootClassPath(*dex_file);
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700304 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305
Elliott Hughes80609252011-09-23 17:24:51 -0700306 // Constructor, Field, and Method are necessary so that FindClass can link members
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700307 SirtRef<Class> java_lang_reflect_Constructor(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700308 CHECK(java_lang_reflect_Constructor.get() != NULL);
Elliott Hughes80609252011-09-23 17:24:51 -0700309 java_lang_reflect_Constructor->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700310 SetClassRoot(kJavaLangReflectConstructor, java_lang_reflect_Constructor.get());
Elliott Hughes80609252011-09-23 17:24:51 -0700311 java_lang_reflect_Constructor->SetStatus(Class::kStatusResolved);
312
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700313 SirtRef<Class> java_lang_reflect_Field(AllocClass(java_lang_Class.get(), sizeof(FieldClass)));
314 CHECK(java_lang_reflect_Field.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700315 java_lang_reflect_Field->SetObjectSize(sizeof(Field));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700316 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700317 java_lang_reflect_Field->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700318 Field::SetClass(java_lang_reflect_Field.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700319
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700320 SirtRef<Class> java_lang_reflect_Method(AllocClass(java_lang_Class.get(), sizeof(MethodClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700321 CHECK(java_lang_reflect_Method.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700322 java_lang_reflect_Method->SetObjectSize(sizeof(Method));
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700323 SetClassRoot(kJavaLangReflectMethod, java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700324 java_lang_reflect_Method->SetStatus(Class::kStatusResolved);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700325 Method::SetClasses(java_lang_reflect_Constructor.get(), java_lang_reflect_Method.get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700326
327 // now we can use FindSystemClass
328
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700329 // run char class through InitializePrimitiveClass to finish init
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700330 InitializePrimitiveClass(char_class.get(), "C", Primitive::kPrimChar);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700331 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700332
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700333 // Object and String need to be rerun through FindSystemClass to finish init
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700334 java_lang_Object->SetStatus(Class::kStatusNotReady);
335 Class* Object_class = FindSystemClass("Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700336 CHECK_EQ(java_lang_Object.get(), Object_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700337 CHECK_EQ(java_lang_Object->GetObjectSize(), sizeof(Object));
338 java_lang_String->SetStatus(Class::kStatusNotReady);
339 Class* String_class = FindSystemClass("Ljava/lang/String;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700340 CHECK_EQ(java_lang_String.get(), String_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700341 CHECK_EQ(java_lang_String->GetObjectSize(), sizeof(String));
342
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700343 // Setup the primitive array type classes - can't be done until Object has a vtable
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700344 SetClassRoot(kBooleanArrayClass, FindSystemClass("[Z"));
345 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
346
347 SetClassRoot(kByteArrayClass, FindSystemClass("[B"));
348 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
349
350 Class* found_char_array_class = FindSystemClass("[C");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700351 CHECK_EQ(char_array_class.get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700352
353 SetClassRoot(kShortArrayClass, FindSystemClass("[S"));
354 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
355
356 Class* found_int_array_class = FindSystemClass("[I");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700357 CHECK_EQ(int_array_class.get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358
359 SetClassRoot(kLongArrayClass, FindSystemClass("[J"));
360 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
361
362 SetClassRoot(kFloatArrayClass, FindSystemClass("[F"));
363 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
364
365 SetClassRoot(kDoubleArrayClass, FindSystemClass("[D"));
366 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
367
Elliott Hughes418d20f2011-09-22 14:00:39 -0700368 Class* found_class_array_class = FindSystemClass("[Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700369 CHECK_EQ(class_array_class.get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700370
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700371 Class* found_object_array_class = FindSystemClass("[Ljava/lang/Object;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700372 CHECK_EQ(object_array_class.get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700373
374 // Setup the single, global copies of "interfaces" and "iftable"
375 Class* java_lang_Cloneable = FindSystemClass("Ljava/lang/Cloneable;");
376 CHECK(java_lang_Cloneable != NULL);
377 Class* java_io_Serializable = FindSystemClass("Ljava/io/Serializable;");
378 CHECK(java_io_Serializable != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700379 // We assume that Cloneable/Serializable don't have superinterfaces --
380 // normally we'd have to crawl up and explicitly list all of the
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700381 // supers as well.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800382 array_iftable_->Set(0, AllocInterfaceEntry(java_lang_Cloneable));
383 array_iftable_->Set(1, AllocInterfaceEntry(java_io_Serializable));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700384
Elliott Hughes418d20f2011-09-22 14:00:39 -0700385 // Sanity check Class[] and Object[]'s interfaces
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800386 ClassHelper kh(class_array_class.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -0700387 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
388 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800389 kh.ChangeClass(object_array_class.get());
Ian Rogersd24e2642012-06-06 21:21:43 -0700390 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0));
391 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1));
Elliott Hughes80609252011-09-23 17:24:51 -0700392 // run Class, Constructor, Field, and Method through FindSystemClass.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700393 // this initializes their dex_cache_ fields and register them in classes_.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700394 Class* Class_class = FindSystemClass("Ljava/lang/Class;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700395 CHECK_EQ(java_lang_Class.get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700396
Elliott Hughes80609252011-09-23 17:24:51 -0700397 java_lang_reflect_Constructor->SetStatus(Class::kStatusNotReady);
398 Class* Constructor_class = FindSystemClass("Ljava/lang/reflect/Constructor;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700399 CHECK_EQ(java_lang_reflect_Constructor.get(), Constructor_class);
Elliott Hughes80609252011-09-23 17:24:51 -0700400
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700401 java_lang_reflect_Field->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700402 Class* Field_class = FindSystemClass("Ljava/lang/reflect/Field;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700403 CHECK_EQ(java_lang_reflect_Field.get(), Field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700404
405 java_lang_reflect_Method->SetStatus(Class::kStatusNotReady);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700406 Class* Method_class = FindSystemClass("Ljava/lang/reflect/Method;");
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700407 CHECK_EQ(java_lang_reflect_Method.get(), Method_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700408
Ian Rogers466bb252011-10-14 03:29:56 -0700409 // End of special init trickery, subsequent classes may be loaded via FindSystemClass
410
411 // Create java.lang.reflect.Proxy root
412 Class* java_lang_reflect_Proxy = FindSystemClass("Ljava/lang/reflect/Proxy;");
413 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
414
Brian Carlstrom1f870082011-08-23 16:02:11 -0700415 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700416 Class* java_lang_ref_Reference = FindSystemClass("Ljava/lang/ref/Reference;");
417 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700418 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700419 java_lang_ref_FinalizerReference->SetAccessFlags(
420 java_lang_ref_FinalizerReference->GetAccessFlags() |
421 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700422 Class* java_lang_ref_PhantomReference = FindSystemClass("Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700423 java_lang_ref_PhantomReference->SetAccessFlags(
424 java_lang_ref_PhantomReference->GetAccessFlags() |
425 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700426 Class* java_lang_ref_SoftReference = FindSystemClass("Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700427 java_lang_ref_SoftReference->SetAccessFlags(
428 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700429 Class* java_lang_ref_WeakReference = FindSystemClass("Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700430 java_lang_ref_WeakReference->SetAccessFlags(
431 java_lang_ref_WeakReference->GetAccessFlags() |
432 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700433
Brian Carlstromaded5f72011-10-07 17:15:04 -0700434 // Setup the ClassLoaders, verifying the object_size_
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700435 Class* java_lang_ClassLoader = FindSystemClass("Ljava/lang/ClassLoader;");
Brian Carlstromaded5f72011-10-07 17:15:04 -0700436 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), sizeof(ClassLoader));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700437 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
438
439 Class* dalvik_system_BaseDexClassLoader = FindSystemClass("Ldalvik/system/BaseDexClassLoader;");
440 CHECK_EQ(dalvik_system_BaseDexClassLoader->GetObjectSize(), sizeof(BaseDexClassLoader));
441 SetClassRoot(kDalvikSystemBaseDexClassLoader, dalvik_system_BaseDexClassLoader);
442
443 Class* dalvik_system_PathClassLoader = FindSystemClass("Ldalvik/system/PathClassLoader;");
444 CHECK_EQ(dalvik_system_PathClassLoader->GetObjectSize(), sizeof(PathClassLoader));
445 SetClassRoot(kDalvikSystemPathClassLoader, dalvik_system_PathClassLoader);
446 PathClassLoader::SetClass(dalvik_system_PathClassLoader);
447
jeffhao8cd6dda2012-02-22 10:15:34 -0800448 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
449 // java.lang.StackTraceElement as a convenience
Ian Rogers5167c972012-02-03 10:41:20 -0800450 SetClassRoot(kJavaLangThrowable, FindSystemClass("Ljava/lang/Throwable;"));
451 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
jeffhao8cd6dda2012-02-22 10:15:34 -0800452 SetClassRoot(kJavaLangClassNotFoundException, FindSystemClass("Ljava/lang/ClassNotFoundException;"));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700453 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass("Ljava/lang/StackTraceElement;"));
454 SetClassRoot(kJavaLangStackTraceElementArrayClass, FindSystemClass("[Ljava/lang/StackTraceElement;"));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700455 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700456
Brian Carlstroma663ea52011-08-19 23:33:41 -0700457 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700458
Brian Carlstroma004aa92012-02-08 18:05:09 -0800459 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700460}
461
462void ClassLinker::FinishInit() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800463 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700464
465 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700466 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700467 // as the types of the field can't be resolved prior to the runtime being
468 // fully initialized
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700469 Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Elliott Hughesadb460d2011-10-05 17:02:34 -0700470 Class* java_lang_ref_ReferenceQueue = FindSystemClass("Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700471 Class* java_lang_ref_FinalizerReference = FindSystemClass("Ljava/lang/ref/FinalizerReference;");
472
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800473 const DexFile& java_lang_dex = FindDexFile(java_lang_ref_Reference->GetDexCache());
474
Brian Carlstrom16192862011-09-12 17:50:06 -0700475 Field* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800476 FieldHelper fh(pendingNext, this);
477 CHECK_STREQ(fh.GetName(), "pendingNext");
478 CHECK_EQ(java_lang_dex.GetFieldId(pendingNext->GetDexFieldIndex()).type_idx_,
479 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700480
481 Field* queue = java_lang_ref_Reference->GetInstanceField(1);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800482 fh.ChangeField(queue);
483 CHECK_STREQ(fh.GetName(), "queue");
484 CHECK_EQ(java_lang_dex.GetFieldId(queue->GetDexFieldIndex()).type_idx_,
485 java_lang_ref_ReferenceQueue->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700486
487 Field* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800488 fh.ChangeField(queueNext);
489 CHECK_STREQ(fh.GetName(), "queueNext");
490 CHECK_EQ(java_lang_dex.GetFieldId(queueNext->GetDexFieldIndex()).type_idx_,
491 java_lang_ref_Reference->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700492
493 Field* referent = java_lang_ref_Reference->GetInstanceField(3);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800494 fh.ChangeField(referent);
495 CHECK_STREQ(fh.GetName(), "referent");
496 CHECK_EQ(java_lang_dex.GetFieldId(referent->GetDexFieldIndex()).type_idx_,
497 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700498
499 Field* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800500 fh.ChangeField(zombie);
501 CHECK_STREQ(fh.GetName(), "zombie");
502 CHECK_EQ(java_lang_dex.GetFieldId(zombie->GetDexFieldIndex()).type_idx_,
503 GetClassRoot(kJavaLangObject)->GetDexTypeIndex());
Brian Carlstrom16192862011-09-12 17:50:06 -0700504
Elliott Hughesa4f94742012-05-29 16:28:38 -0700505 Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800506 heap->SetReferenceOffsets(referent->GetOffset(),
Brian Carlstrom16192862011-09-12 17:50:06 -0700507 queue->GetOffset(),
508 queueNext->GetOffset(),
509 pendingNext->GetOffset(),
510 zombie->GetOffset());
511
Brian Carlstroma663ea52011-08-19 23:33:41 -0700512 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700513 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700514 ClassRoot class_root = static_cast<ClassRoot>(i);
515 Class* klass = GetClassRoot(class_root);
516 CHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700517 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != NULL);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700518 // note SetClassRoot does additional validation.
519 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700520 }
521
Elliott Hughes92f14b22011-10-06 12:29:54 -0700522 CHECK(array_iftable_ != NULL);
Elliott Hughes92f14b22011-10-06 12:29:54 -0700523
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700524 // disable the slow paths in FindClass and CreatePrimitiveClass now
525 // that Object, Class, and Object[] are setup
526 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700527
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800528 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700529}
530
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700531void ClassLinker::RunRootClinits() {
532 Thread* self = Thread::Current();
533 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
534 Class* c = GetClassRoot(ClassRoot(i));
535 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Ian Rogers0045a292012-03-31 21:08:41 -0700536 EnsureInitialized(GetClassRoot(ClassRoot(i)), true, true);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -0700537 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700538 }
539 }
540}
541
Brian Carlstromd601af82012-01-06 10:15:19 -0800542bool ClassLinker::GenerateOatFile(const std::string& dex_filename,
543 int oat_fd,
544 const std::string& oat_cache_filename) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -0800545 std::string dex2oat_string(GetAndroidRoot());
Elliott Hughes67d92002012-03-26 15:08:51 -0700546 dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800547 const char* dex2oat = dex2oat_string.c_str();
548
Brian Carlstroma004aa92012-02-08 18:05:09 -0800549 const char* class_path = Runtime::Current()->GetClassPathString().c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800550
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800551 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800552 std::string boot_image_option_string("--boot-image=");
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700553 boot_image_option_string += heap->GetImageSpace()->GetImageFilename();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800554 const char* boot_image_option = boot_image_option_string.c_str();
555
556 std::string dex_file_option_string("--dex-file=");
Brian Carlstromd601af82012-01-06 10:15:19 -0800557 dex_file_option_string += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800558 const char* dex_file_option = dex_file_option_string.c_str();
559
Brian Carlstromd601af82012-01-06 10:15:19 -0800560 std::string oat_fd_option_string("--oat-fd=");
Brian Carlstrom866c8622012-01-06 16:35:13 -0800561 StringAppendF(&oat_fd_option_string, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800562 const char* oat_fd_option = oat_fd_option_string.c_str();
563
Brian Carlstroma004aa92012-02-08 18:05:09 -0800564 std::string oat_location_option_string("--oat-location=");
565 oat_location_option_string += oat_cache_filename;
566 const char* oat_location_option = oat_location_option_string.c_str();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800567
jeffhao262bf462011-10-20 18:36:32 -0700568 // fork and exec dex2oat
569 pid_t pid = fork();
570 if (pid == 0) {
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800571 // no allocation allowed between fork and exec
Ian Rogers725aee52012-01-11 11:56:56 -0800572
573 // change process groups, so we don't get reaped by ProcessManager
574 setpgid(0, 0);
575
jeffhao10037c82012-01-23 15:06:23 -0800576 VLOG(class_linker) << dex2oat
577 << " --runtime-arg -Xms64m"
578 << " --runtime-arg -Xmx64m"
579 << " --runtime-arg -classpath"
580 << " --runtime-arg " << class_path
581 << " " << boot_image_option
582 << " " << dex_file_option
583 << " " << oat_fd_option
Brian Carlstroma004aa92012-02-08 18:05:09 -0800584 << " " << oat_location_option;
jeffhao10037c82012-01-23 15:06:23 -0800585
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800586 execl(dex2oat, dex2oat,
jeffhao5d840402011-10-24 17:09:45 -0700587 "--runtime-arg", "-Xms64m",
588 "--runtime-arg", "-Xmx64m",
Jesse Wilson254db0f2011-11-16 16:44:11 -0500589 "--runtime-arg", "-classpath",
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800590 "--runtime-arg", class_path,
591 boot_image_option,
592 dex_file_option,
Brian Carlstromd601af82012-01-06 10:15:19 -0800593 oat_fd_option,
Brian Carlstroma004aa92012-02-08 18:05:09 -0800594 oat_location_option,
jeffhao262bf462011-10-20 18:36:32 -0700595 NULL);
596
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800597 PLOG(FATAL) << "execl(" << dex2oat << ") failed";
Brian Carlstromd601af82012-01-06 10:15:19 -0800598 return false;
jeffhao262bf462011-10-20 18:36:32 -0700599 } else {
600 // wait for dex2oat to finish
601 int status;
602 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
603 if (got_pid != pid) {
604 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
Brian Carlstromd601af82012-01-06 10:15:19 -0800605 return false;
jeffhao262bf462011-10-20 18:36:32 -0700606 }
607 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Brian Carlstromd601af82012-01-06 10:15:19 -0800608 LOG(ERROR) << dex2oat << " failed with dex-file=" << dex_filename;
609 return false;
jeffhao262bf462011-10-20 18:36:32 -0700610 }
611 }
Brian Carlstromd601af82012-01-06 10:15:19 -0800612 return true;
jeffhao262bf462011-10-20 18:36:32 -0700613}
614
Brian Carlstrom866c8622012-01-06 16:35:13 -0800615void ClassLinker::RegisterOatFile(const OatFile& oat_file) {
616 MutexLock mu(dex_lock_);
617 RegisterOatFileLocked(oat_file);
618}
619
620void ClassLinker::RegisterOatFileLocked(const OatFile& oat_file) {
621 dex_lock_.AssertHeld();
622 oat_files_.push_back(&oat_file);
623}
624
Ian Rogers30fab402012-01-23 15:43:46 -0800625OatFile* ClassLinker::OpenOat(const ImageSpace* space) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700626 MutexLock mu(dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700627 const Runtime* runtime = Runtime::Current();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700628 const ImageHeader& image_header = space->GetImageHeader();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800629 // Grab location but don't use Object::AsString as we haven't yet initialized the roots to
630 // check the down cast
631 String* oat_location = down_cast<String*>(image_header.GetImageRoot(ImageHeader::kOatLocation));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700632 std::string oat_filename;
633 oat_filename += runtime->GetHostPrefix();
634 oat_filename += oat_location->ToModifiedUtf8();
Logan Chien0c717dd2012-03-28 18:31:07 +0800635 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename,
636 image_header.GetOatBegin(),
637 OatFile::kRelocNone);
Ian Rogers30fab402012-01-23 15:43:46 -0800638 VLOG(startup) << "ClassLinker::OpenOat entering oat_filename=" << oat_filename;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700639 if (oat_file == NULL) {
Brian Carlstroma9f19782011-10-13 00:14:47 -0700640 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700641 return NULL;
642 }
643 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
644 uint32_t image_oat_checksum = image_header.GetOatChecksum();
645 if (oat_checksum != image_oat_checksum) {
Brian Carlstrom866c8622012-01-06 16:35:13 -0800646 LOG(ERROR) << "Failed to match oat file checksum " << std::hex << oat_checksum
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700647 << " to expected oat checksum " << std::hex << oat_checksum
648 << " in image";
649 return NULL;
650 }
Brian Carlstrom866c8622012-01-06 16:35:13 -0800651 RegisterOatFileLocked(*oat_file);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800652 VLOG(startup) << "ClassLinker::OpenOat exiting";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700653 return oat_file;
654}
655
Brian Carlstromae826982011-11-09 01:33:42 -0800656const OatFile* ClassLinker::FindOpenedOatFileForDexFile(const DexFile& dex_file) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800657 return FindOpenedOatFileFromDexLocation(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800658}
659
Brian Carlstroma004aa92012-02-08 18:05:09 -0800660const OatFile* ClassLinker::FindOpenedOatFileFromDexLocation(const std::string& dex_location) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700661 MutexLock mu(dex_lock_);
Brian Carlstromae826982011-11-09 01:33:42 -0800662 for (size_t i = 0; i < oat_files_.size(); i++) {
663 const OatFile* oat_file = oat_files_[i];
664 DCHECK(oat_file != NULL);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800665 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, false);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800666 if (oat_dex_file != NULL) {
Brian Carlstromae826982011-11-09 01:33:42 -0800667 return oat_file;
668 }
669 }
670 return NULL;
671}
672
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800673static const DexFile* FindDexFileInOatLocation(const std::string& dex_location,
674 uint32_t dex_location_checksum,
675 const std::string& oat_location) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800676 UniquePtr<OatFile> oat_file(
677 OatFile::Open(oat_location, oat_location, NULL, OatFile::kRelocAll));
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800678 if (oat_file.get() == NULL) {
679 return NULL;
680 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700681 Runtime* runtime = Runtime::Current();
682 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
683 if (oat_file->GetOatHeader().GetImageFileLocationChecksum() != image_header.GetOatChecksum()) {
684 return NULL;
685 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800686 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
687 if (oat_dex_file == NULL) {
688 return NULL;
689 }
690 if (oat_dex_file->GetDexFileLocationChecksum() != dex_location_checksum) {
691 return NULL;
692 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700693 runtime->GetClassLinker()->RegisterOatFile(*oat_file.release());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800694 return oat_dex_file->OpenDexFile();
695}
696
697const DexFile* ClassLinker::FindOrCreateOatFileForDexLocation(const std::string& dex_location,
698 const std::string& oat_location) {
699 uint32_t dex_location_checksum;
700 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
701 LOG(ERROR) << "Failed to compute checksum '" << dex_location << "'";
702 return NULL;
703 }
704
705 // Check if we already have an up-to-date output file
706 const DexFile* dex_file = FindDexFileInOatLocation(dex_location,
707 dex_location_checksum,
708 oat_location);
709 if (dex_file != NULL) {
710 return dex_file;
711 }
712
713 // Generate the output oat file for the dex file
714 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
715 UniquePtr<File> file(OS::OpenFile(oat_location.c_str(), true));
716 if (file.get() == NULL) {
717 LOG(ERROR) << "Failed to create oat file: " << oat_location;
718 return NULL;
719 }
720 if (!class_linker->GenerateOatFile(dex_location, file->Fd(), oat_location)) {
721 LOG(ERROR) << "Failed to generate oat file: " << oat_location;
722 return NULL;
723 }
724 // Open the oat from file descriptor we passed to GenerateOatFile
725 if (lseek(file->Fd(), 0, SEEK_SET) != 0) {
726 LOG(ERROR) << "Failed to seek to start of generated oat file: " << oat_location;
727 return NULL;
728 }
Logan Chien0c717dd2012-03-28 18:31:07 +0800729 const OatFile* oat_file =
730 OatFile::Open(*file.get(), oat_location, NULL, OatFile::kRelocAll);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800731 if (oat_file == NULL) {
732 LOG(ERROR) << "Failed to open generated oat file: " << oat_location;
733 return NULL;
734 }
735 class_linker->RegisterOatFile(*oat_file);
736 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
737 if (oat_dex_file == NULL) {
738 LOG(ERROR) << "Failed to find dex file in generated oat file: " << oat_location;
739 return NULL;
740 }
741 return oat_dex_file->OpenDexFile();
742}
743
744const DexFile* ClassLinker::FindDexFileInOatFileFromDexLocation(const std::string& dex_location) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700745 MutexLock mu(dex_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800746
Brian Carlstroma004aa92012-02-08 18:05:09 -0800747 const OatFile* open_oat_file = FindOpenedOatFileFromDexLocation(dex_location);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800748 if (open_oat_file != NULL) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800749 return open_oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Brian Carlstromae826982011-11-09 01:33:42 -0800750 }
751
Brian Carlstroma004aa92012-02-08 18:05:09 -0800752 // Look for an existing file next to dex, assuming its up-to-date if found
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800753 std::string oat_filename(OatFile::DexFilenameToOatFilename(dex_location));
Brian Carlstroma004aa92012-02-08 18:05:09 -0800754 const OatFile* oat_file = FindOatFileFromOatLocation(oat_filename);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800755 if (oat_file != NULL) {
756 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800757 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
jeffhao27cac652012-06-12 17:34:50 -0700758 RegisterOatFileLocked(*oat_file);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800759 return oat_dex_file->OpenDexFile();
760 }
761 // Look for an existing file in the art-cache, validating the result if found
762 // not found in /foo/bar/baz.oat? try /data/art-cache/foo@bar@baz.oat
763 std::string cache_location(GetArtCacheFilenameOrDie(oat_filename));
764 oat_file = FindOatFileFromOatLocation(cache_location);
765 if (oat_file != NULL) {
766 uint32_t dex_location_checksum;
767 if (!DexFile::GetChecksum(dex_location, dex_location_checksum)) {
768 LOG(WARNING) << "Failed to compute checksum: " << dex_location;
769 return NULL;
770 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700771
772 Runtime* runtime = Runtime::Current();
773 const ImageHeader& image_header = runtime->GetHeap()->GetImageSpace()->GetImageHeader();
774 uint32_t image_checksum = image_header.GetOatChecksum();
775 bool image_check = (oat_file->GetOatHeader().GetImageFileLocationChecksum() == image_checksum);
776
Brian Carlstroma004aa92012-02-08 18:05:09 -0800777 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location);
778 CHECK(oat_dex_file != NULL) << oat_filename << " " << dex_location;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700779 bool dex_check = (dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum());
780
781 if (image_check && dex_check) {
jeffhao27cac652012-06-12 17:34:50 -0700782 RegisterOatFileLocked(*oat_file);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800783 return oat_file->GetOatDexFile(dex_location)->OpenDexFile();
Elliott Hughesed6d78e2011-10-25 17:35:14 -0700784 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700785 if (!image_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700786 std::string image_file(image_header.GetImageRoot(
787 ImageHeader::kOatLocation)->AsString()->ToModifiedUtf8());
788 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
789 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
790 << ") mismatch with " << image_file
791 << " (" << std::hex << image_checksum << ")--- regenerating";
792 }
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700793 if (!dex_check) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700794 LOG(WARNING) << ".oat file " << oat_file->GetLocation()
795 << " checksum ( " << std::hex << oat_dex_file->GetDexFileLocationChecksum()
796 << ") mismatch with " << dex_location
797 << " (" << std::hex << dex_location_checksum << ")--- regenerating";
798 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800799 if (TEMP_FAILURE_RETRY(unlink(oat_file->GetLocation().c_str())) != 0) {
Brian Carlstrom5ef74932012-03-23 17:56:02 -0700800 PLOG(FATAL) << "Failed to remove obsolete .oat file " << oat_file->GetLocation();
Brian Carlstromd601af82012-01-06 10:15:19 -0800801 }
jeffhao262bf462011-10-20 18:36:32 -0700802 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800803 LOG(INFO) << "Failed to open oat file from " << oat_filename << " or " << cache_location << ".";
804
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800805 // Try to generate oat file if it wasn't found or was obsolete.
806 std::string oat_cache_filename(GetArtCacheFilenameOrDie(oat_filename));
807 return FindOrCreateOatFileForDexLocation(dex_location, oat_cache_filename);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700808}
809
Brian Carlstromae826982011-11-09 01:33:42 -0800810const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Elliott Hughesf8349362012-06-18 15:00:06 -0700811 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700812 for (size_t i = 0; i < oat_files_.size(); i++) {
813 const OatFile* oat_file = oat_files_[i];
814 DCHECK(oat_file != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800815 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700816 return oat_file;
817 }
818 }
Brian Carlstromfad71432011-10-16 20:25:10 -0700819 return NULL;
820}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700821
Brian Carlstromae826982011-11-09 01:33:42 -0800822const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location) {
jeffhaof6174e82012-01-31 16:14:17 -0800823 MutexLock mu(dex_lock_);
824 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
825 if (oat_file != NULL) {
826 return oat_file;
827 }
828
Logan Chien0c717dd2012-03-28 18:31:07 +0800829 oat_file = OatFile::Open(oat_location, oat_location, NULL,
830 OatFile::kRelocAll);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700831 if (oat_file == NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800832 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700833 }
Brian Carlstromae826982011-11-09 01:33:42 -0800834 CHECK(oat_file != NULL) << oat_location;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700835 return oat_file;
836}
837
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700838void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800839 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700840 CHECK(!init_done_);
841
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800842 Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700843 ImageSpace* space = heap->GetImageSpace();
844 OatFile* oat_file = OpenOat(space);
845 CHECK(oat_file != NULL) << "Failed to open oat file for image";
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700846 CHECK_EQ(oat_file->GetOatHeader().GetImageFileLocationChecksum(), 0U);
Elliott Hughes74847412012-06-20 18:10:21 -0700847 CHECK(oat_file->GetOatHeader().GetImageFileLocation().empty());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700848 Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
849 ObjectArray<DexCache>* dex_caches = dex_caches_object->AsObjectArray<DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700850
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700851 // Special case of setting up the String class early so that we can test arbitrary objects
852 // as being Strings or not
853 Class* java_lang_String = space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)
854 ->AsObjectArray<Class>()->Get(kJavaLangString);
855 String::SetClass(java_lang_String);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800856
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700857 CHECK_EQ(oat_file->GetOatHeader().GetDexFileCount(),
858 static_cast<uint32_t>(dex_caches->GetLength()));
859 for (int i = 0; i < dex_caches->GetLength(); i++) {
860 SirtRef<DexCache> dex_cache(dex_caches->Get(i));
861 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
862 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file_location);
863 const DexFile* dex_file = oat_dex_file->OpenDexFile();
864 if (dex_file == NULL) {
865 LOG(FATAL) << "Failed to open dex file " << dex_file_location
866 << " from within oat file " << oat_file->GetLocation();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700867 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700868
869 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
870
871 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700872 }
873
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800874 HeapBitmap* heap_bitmap = heap->GetLiveBits();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700875 DCHECK(heap_bitmap != NULL);
876
Brian Carlstroma663ea52011-08-19 23:33:41 -0700877 // reinit clases_ table
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700878 heap_bitmap->Walk(InitFromImageCallback, this);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700879
880 // reinit class_roots_
Ian Rogers30fab402012-01-23 15:43:46 -0800881 Object* class_roots_object =
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700882 heap->GetImageSpace()->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700883 class_roots_ = class_roots_object->AsObjectArray<Class>();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700884
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800885 // reinit array_iftable_ from any array class instance, they should be ==
Elliott Hughes92f14b22011-10-06 12:29:54 -0700886 array_iftable_ = GetClassRoot(kObjectArrayClass)->GetIfTable();
887 DCHECK(array_iftable_ == GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800888 // String class root was set above
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700889 Field::SetClass(GetClassRoot(kJavaLangReflectField));
Elliott Hughes80609252011-09-23 17:24:51 -0700890 Method::SetClasses(GetClassRoot(kJavaLangReflectConstructor), GetClassRoot(kJavaLangReflectMethod));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700891 BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
892 ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
893 CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
894 DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
895 FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
896 IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
897 LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
898 ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700899 PathClassLoader::SetClass(GetClassRoot(kDalvikSystemPathClassLoader));
Ian Rogers5167c972012-02-03 10:41:20 -0800900 Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700901 StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700902
903 FinishInit();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700904
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800905 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700906}
907
Brian Carlstrom78128a62011-09-15 17:21:19 -0700908void ClassLinker::InitFromImageCallback(Object* obj, void* arg) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700909 DCHECK(obj != NULL);
910 DCHECK(arg != NULL);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700911 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700912
Elliott Hughesdbb40792011-11-18 17:05:22 -0800913 if (obj->GetClass()->IsStringClass()) {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700914 class_linker->intern_table_->RegisterStrong(obj->AsString());
Brian Carlstromc74255f2011-09-11 22:47:39 -0700915 return;
916 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700917 if (obj->IsClass()) {
918 // restore class to ClassLinker::classes_ table
919 Class* klass = obj->AsClass();
Elliott Hughesc3b77c72011-12-15 20:56:48 -0800920 ClassHelper kh(klass, class_linker);
Brian Carlstrom07bb8552012-01-18 22:10:50 -0800921 Class* existing = class_linker->InsertClass(kh.GetDescriptor(), klass, true);
922 DCHECK(existing == NULL) << kh.GetDescriptor();
Brian Carlstroma663ea52011-08-19 23:33:41 -0700923 return;
924 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700925}
926
927// Keep in sync with InitCallback. Anything we visit, we need to
928// reinit references to when reinitializing a ClassLinker from a
929// mapped image.
Elliott Hughes410c0c82011-09-01 17:58:25 -0700930void ClassLinker::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
931 visitor(class_roots_, arg);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700932
Elliott Hughesf8349362012-06-18 15:00:06 -0700933 {
934 MutexLock mu(dex_lock_);
935 for (size_t i = 0; i < dex_caches_.size(); i++) {
936 visitor(dex_caches_[i], arg);
937 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700938 }
939
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700940 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700941 MutexLock mu(classes_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700942 typedef Table::const_iterator It; // TODO: C++0x auto
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700943 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
Elliott Hughes410c0c82011-09-01 17:58:25 -0700944 visitor(it->second, arg);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700945 }
Mathieu Chartier262e5ff2012-06-01 17:35:38 -0700946
947 // We deliberately ignore the class roots in the image since we
948 // handle image roots by using the MS/CMS rescanning of dirty cards.
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700949 }
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700950
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700951 visitor(array_iftable_, arg);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700952}
953
Elliott Hughesa2155262011-11-16 16:26:58 -0800954void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) const {
955 MutexLock mu(classes_lock_);
956 typedef Table::const_iterator It; // TODO: C++0x auto
957 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
958 if (!visitor(it->second, arg)) {
959 return;
960 }
961 }
962 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
963 if (!visitor(it->second, arg)) {
964 return;
965 }
966 }
967}
968
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700969ClassLinker::~ClassLinker() {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700970 String::ResetClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700971 Field::ResetClass();
Elliott Hughes80609252011-09-23 17:24:51 -0700972 Method::ResetClasses();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700973 BooleanArray::ResetArrayClass();
974 ByteArray::ResetArrayClass();
975 CharArray::ResetArrayClass();
976 DoubleArray::ResetArrayClass();
977 FloatArray::ResetArrayClass();
978 IntArray::ResetArrayClass();
979 LongArray::ResetArrayClass();
980 ShortArray::ResetArrayClass();
981 PathClassLoader::ResetClass();
Ian Rogers5167c972012-02-03 10:41:20 -0800982 Throwable::ResetClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700983 StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700984 STLDeleteElements(&boot_class_path_);
985 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700986}
987
988DexCache* ClassLinker::AllocDexCache(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700989 SirtRef<DexCache> dex_cache(down_cast<DexCache*>(AllocObjectArray<Object>(DexCache::LengthAsArray())));
990 if (dex_cache.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700991 return NULL;
992 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700993 SirtRef<String> location(intern_table_->InternStrong(dex_file.GetLocation().c_str()));
994 if (location.get() == NULL) {
Elliott Hughes30646832011-10-13 16:59:46 -0700995 return NULL;
996 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700997 SirtRef<ObjectArray<String> > strings(AllocObjectArray<String>(dex_file.NumStringIds()));
998 if (strings.get() == NULL) {
999 return NULL;
1000 }
1001 SirtRef<ObjectArray<Class> > types(AllocClassArray(dex_file.NumTypeIds()));
1002 if (types.get() == NULL) {
1003 return NULL;
1004 }
1005 SirtRef<ObjectArray<Method> > methods(AllocObjectArray<Method>(dex_file.NumMethodIds()));
1006 if (methods.get() == NULL) {
1007 return NULL;
1008 }
1009 SirtRef<ObjectArray<Field> > fields(AllocObjectArray<Field>(dex_file.NumFieldIds()));
1010 if (fields.get() == NULL) {
1011 return NULL;
1012 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001013 SirtRef<ObjectArray<StaticStorageBase> > initialized_static_storage(AllocObjectArray<StaticStorageBase>(dex_file.NumTypeIds()));
1014 if (initialized_static_storage.get() == NULL) {
1015 return NULL;
1016 }
1017
1018 dex_cache->Init(location.get(),
1019 strings.get(),
1020 types.get(),
1021 methods.get(),
1022 fields.get(),
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001023 initialized_static_storage.get());
1024 return dex_cache.get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001025}
1026
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001027InterfaceEntry* ClassLinker::AllocInterfaceEntry(Class* interface) {
1028 DCHECK(interface->IsInterface());
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001029 SirtRef<ObjectArray<Object> > array(AllocObjectArray<Object>(InterfaceEntry::LengthAsArray()));
1030 SirtRef<InterfaceEntry> interface_entry(down_cast<InterfaceEntry*>(array.get()));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001031 interface_entry->SetInterface(interface);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001032 return interface_entry.get();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001033}
1034
Brian Carlstrom4873d462011-08-21 15:23:39 -07001035Class* ClassLinker::AllocClass(Class* java_lang_Class, size_t class_size) {
1036 DCHECK_GE(class_size, sizeof(Class));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001037 Heap* heap = Runtime::Current()->GetHeap();
1038 SirtRef<Class> klass(heap->AllocObject(java_lang_Class, class_size)->AsClass());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001039 klass->SetPrimitiveType(Primitive::kPrimNot); // default to not being primitive
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001040 klass->SetClassSize(class_size);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001041 return klass.get();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001042}
1043
Brian Carlstrom4873d462011-08-21 15:23:39 -07001044Class* ClassLinker::AllocClass(size_t class_size) {
1045 return AllocClass(GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001046}
1047
Jesse Wilson35baaab2011-08-10 16:18:03 -04001048Field* ClassLinker::AllocField() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001049 return down_cast<Field*>(GetClassRoot(kJavaLangReflectField)->AllocObject());
Brian Carlstroma0808032011-07-18 00:39:23 -07001050}
1051
1052Method* ClassLinker::AllocMethod() {
Brian Carlstrom1f870082011-08-23 16:02:11 -07001053 return down_cast<Method*>(GetClassRoot(kJavaLangReflectMethod)->AllocObject());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001054}
1055
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001056ObjectArray<StackTraceElement>* ClassLinker::AllocStackTraceElementArray(size_t length) {
1057 return ObjectArray<StackTraceElement>::Alloc(
1058 GetClassRoot(kJavaLangStackTraceElementArrayClass),
1059 length);
1060}
1061
Elliott Hughes5c599942012-06-13 16:45:05 -07001062static Class* EnsureResolved(Class* klass) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001063 DCHECK(klass != NULL);
1064 // Wait for the class if it has not already been linked.
Carl Shapirob5573532011-07-12 18:22:59 -07001065 Thread* self = Thread::Current();
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001066 if (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001067 ObjectLock lock(klass);
1068 // Check for circular dependencies between classes.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001069 if (!klass->IsResolved() && klass->GetClinitThreadId() == self->GetTid()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07001070 self->ThrowNewException("Ljava/lang/ClassCircularityError;",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001071 PrettyDescriptor(klass).c_str());
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001072 klass->SetStatus(Class::kStatusError);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001073 return NULL;
1074 }
1075 // Wait for the pending initialization to complete.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001076 while (!klass->IsResolved() && !klass->IsErroneous()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001077 lock.Wait();
1078 }
1079 }
1080 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001081 ThrowEarlierClassFailure(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001082 return NULL;
1083 }
1084 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001085 CHECK(klass->IsResolved()) << PrettyClass(klass);
1086 CHECK(!self->IsExceptionPending())
1087 << PrettyClass(klass) << " " << PrettyTypeOf(self->GetException());
1088 return klass;
1089}
1090
Elliott Hughesdb7d5e92011-12-16 18:47:37 -08001091Class* ClassLinker::FindSystemClass(const char* descriptor) {
1092 return FindClass(descriptor, NULL);
1093}
1094
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001095Class* ClassLinker::FindClass(const char* descriptor, const ClassLoader* class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001096 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Brian Carlstromaded5f72011-10-07 17:15:04 -07001097 Thread* self = Thread::Current();
1098 DCHECK(self != NULL);
1099 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001100 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001101 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1102 // for primitive classes that aren't backed by dex files.
1103 return FindPrimitiveClass(descriptor[0]);
1104 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001105 // Find the class in the loaded classes table.
1106 Class* klass = LookupClass(descriptor, class_loader);
1107 if (klass != NULL) {
1108 return EnsureResolved(klass);
1109 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001110 // Class is not yet loaded.
1111 if (descriptor[0] == '[') {
1112 return CreateArrayClass(descriptor, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001113
Jesse Wilson47daf872011-11-23 11:42:45 -05001114 } else if (class_loader == NULL) {
1115 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, boot_class_path_);
1116 if (pair.second != NULL) {
1117 return DefineClass(descriptor, NULL, *pair.first, *pair.second);
1118 }
1119
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001120 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Jesse Wilson47daf872011-11-23 11:42:45 -05001121 // first try the boot class path
1122 Class* system_class = FindSystemClass(descriptor);
1123 if (system_class != NULL) {
1124 return system_class;
1125 }
1126 CHECK(self->IsExceptionPending());
1127 self->ClearException();
1128
1129 // next try the compile time class path
Brian Carlstromaded5f72011-10-07 17:15:04 -07001130 const std::vector<const DexFile*>& class_path
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001131 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001132 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_path);
Jesse Wilson47daf872011-11-23 11:42:45 -05001133 if (pair.second != NULL) {
1134 return DefineClass(descriptor, class_loader, *pair.first, *pair.second);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001135 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001136
1137 } else {
Elliott Hughes95572412011-12-13 18:14:20 -08001138 std::string class_name_string(DescriptorToDot(descriptor));
Elliott Hughes34e06962012-04-09 13:55:55 -07001139 ScopedThreadStateChange tsc(self, kNative);
Elliott Hughes748382f2012-01-26 18:07:38 -08001140 JNIEnv* env = self->GetJniEnv();
Jesse Wilson47daf872011-11-23 11:42:45 -05001141 ScopedLocalRef<jobject> class_name_object(env, env->NewStringUTF(class_name_string.c_str()));
1142 if (class_name_object.get() == NULL) {
1143 return NULL;
1144 }
1145 ScopedLocalRef<jobject> class_loader_object(env, AddLocalReference<jobject>(env, class_loader));
Elliott Hughes9c750f92012-04-05 12:07:59 -07001146 CHECK(class_loader_object.get() != NULL);
Elliott Hughesa4f94742012-05-29 16:28:38 -07001147 ScopedLocalRef<jobject> result(env, env->CallObjectMethod(class_loader_object.get(),
1148 WellKnownClasses::java_lang_ClassLoader_loadClass,
Ian Rogers761bfa82012-01-11 10:14:05 -08001149 class_name_object.get()));
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001150 if (env->ExceptionCheck()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001151 // If the ClassLoader threw, pass that exception up.
1152 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001153 } else if (result.get() == NULL) {
Ian Rogerscab01012012-01-10 17:35:46 -08001154 // broken loader - throw NPE to be compatible with Dalvik
1155 ThrowNullPointerException("ClassLoader.loadClass returned null for %s",
1156 class_name_string.c_str());
1157 return NULL;
Ian Rogers761bfa82012-01-11 10:14:05 -08001158 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08001159 // success, return Class*
Ian Rogers6b0870d2011-12-15 19:38:12 -08001160 return Decode<Class*>(env, result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001161 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001162 }
1163
Elliott Hughes82914b62012-04-09 15:56:29 -07001164 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
Jesse Wilson47daf872011-11-23 11:42:45 -05001165 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001166}
1167
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001168Class* ClassLinker::DefineClass(const StringPiece& descriptor,
Brian Carlstromaded5f72011-10-07 17:15:04 -07001169 const ClassLoader* class_loader,
1170 const DexFile& dex_file,
1171 const DexFile::ClassDef& dex_class_def) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001172 SirtRef<Class> klass(NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001173 // Load the class from the dex file.
1174 if (!init_done_) {
1175 // finish up init of hand crafted class_roots_
1176 if (descriptor == "Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001177 klass.reset(GetClassRoot(kJavaLangObject));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001178 } else if (descriptor == "Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001179 klass.reset(GetClassRoot(kJavaLangClass));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001180 } else if (descriptor == "Ljava/lang/String;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001181 klass.reset(GetClassRoot(kJavaLangString));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001182 } else if (descriptor == "Ljava/lang/reflect/Constructor;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001183 klass.reset(GetClassRoot(kJavaLangReflectConstructor));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001184 } else if (descriptor == "Ljava/lang/reflect/Field;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001185 klass.reset(GetClassRoot(kJavaLangReflectField));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001186 } else if (descriptor == "Ljava/lang/reflect/Method;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001187 klass.reset(GetClassRoot(kJavaLangReflectMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001188 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001189 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001190 }
1191 } else {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001192 klass.reset(AllocClass(SizeOfClass(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001193 }
1194 klass->SetDexCache(FindDexCache(dex_file));
1195 LoadClass(dex_file, dex_class_def, klass, class_loader);
1196 // Check for a pending exception during load
1197 Thread* self = Thread::Current();
1198 if (self->IsExceptionPending()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08001199 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001200 return NULL;
1201 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001202 ObjectLock lock(klass.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001203 klass->SetClinitThreadId(self->GetTid());
1204 // Add the newly loaded class to the loaded classes table.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001205 SirtRef<Class> existing(InsertClass(descriptor, klass.get(), false));
1206 if (existing.get() != NULL) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001207 // We failed to insert because we raced with another thread.
Brian Carlstrom01e076e2012-03-30 11:54:16 -07001208 return EnsureResolved(existing.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -07001209 }
1210 // Finish loading (if necessary) by finding parents
1211 CHECK(!klass->IsLoaded());
1212 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1213 // Loading failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001214 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001215 lock.NotifyAll();
1216 return NULL;
1217 }
1218 CHECK(klass->IsLoaded());
1219 // Link the class (if necessary)
1220 CHECK(!klass->IsResolved());
Ian Rogersc2b44472011-12-14 21:17:17 -08001221 if (!LinkClass(klass, NULL)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001222 // Linking failed.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001223 klass->SetStatus(Class::kStatusError);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001224 lock.NotifyAll();
1225 return NULL;
1226 }
1227 CHECK(klass->IsResolved());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001228
1229 /*
1230 * We send CLASS_PREPARE events to the debugger from here. The
1231 * definition of "preparation" is creating the static fields for a
1232 * class and initializing them to the standard default values, but not
1233 * executing any code (that comes later, during "initialization").
1234 *
1235 * We did the static preparation in LinkClass.
1236 *
1237 * The class has been prepared and resolved but possibly not yet verified
1238 * at this point.
1239 */
1240 Dbg::PostClassPrepare(klass.get());
1241
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001242 return klass.get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001243}
1244
Brian Carlstrom4873d462011-08-21 15:23:39 -07001245// Precomputes size that will be needed for Class, matching LinkStaticFields
1246size_t ClassLinker::SizeOfClass(const DexFile& dex_file,
1247 const DexFile::ClassDef& dex_class_def) {
1248 const byte* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001249 size_t num_ref = 0;
1250 size_t num_32 = 0;
1251 size_t num_64 = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001252 if (class_data != NULL) {
1253 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1254 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001255 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001256 char c = descriptor[0];
1257 if (c == 'L' || c == '[') {
1258 num_ref++;
1259 } else if (c == 'J' || c == 'D') {
1260 num_64++;
1261 } else {
1262 num_32++;
1263 }
1264 }
1265 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07001266 // start with generic class data
1267 size_t size = sizeof(Class);
1268 // follow with reference fields which must be contiguous at start
1269 size += (num_ref * sizeof(uint32_t));
1270 // if there are 64-bit fields to add, make sure they are aligned
1271 if (num_64 != 0 && size != RoundUp(size, 8)) { // for 64-bit alignment
1272 if (num_32 != 0) {
1273 // use an available 32-bit field for padding
1274 num_32--;
1275 }
1276 size += sizeof(uint32_t); // either way, we are adding a word
1277 DCHECK_EQ(size, RoundUp(size, 8));
1278 }
1279 // tack on any 64-bit fields now that alignment is assured
1280 size += (num_64 * sizeof(uint64_t));
1281 // tack on any remaining 32-bit fields
1282 size += (num_32 * sizeof(uint32_t));
1283 return size;
1284}
1285
Ian Rogers19846512012-02-24 11:42:47 -08001286const OatFile::OatClass* ClassLinker::GetOatClass(const DexFile& dex_file, const char* descriptor) {
1287 DCHECK(descriptor != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001288 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
1289 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1290 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
1291 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << descriptor;
1292 uint32_t class_def_index;
1293 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
1294 CHECK(found) << dex_file.GetLocation() << " " << descriptor;
1295 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index);
1296 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << descriptor;
1297 return oat_class;
1298}
1299
TDYa12785321912012-04-01 15:24:56 -07001300const OatFile::OatMethod ClassLinker::GetOatMethodFor(const Method* method) {
Ian Rogers19846512012-02-24 11:42:47 -08001301 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001302 // method for direct methods (or virtual methods made direct).
1303 Class* declaring_class = method->GetDeclaringClass();
1304 size_t oat_method_index;
1305 if (method->IsStatic() || method->IsDirect()) {
1306 // Simple case where the oat method index was stashed at load time.
1307 oat_method_index = method->GetMethodIndex();
1308 } else {
1309 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1310 // by search for its position in the declared virtual methods.
1311 oat_method_index = declaring_class->NumDirectMethods();
1312 size_t end = declaring_class->NumVirtualMethods();
1313 bool found = false;
1314 for (size_t i = 0; i < end; i++) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001315 if (declaring_class->GetVirtualMethod(i) == method) {
1316 found = true;
1317 break;
1318 }
Ian Rogersf320b632012-03-13 18:47:47 -07001319 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001320 }
1321 CHECK(found) << "Didn't find oat method index for virtual method: " << PrettyMethod(method);
1322 }
1323 ClassHelper kh(declaring_class);
Ian Rogers19846512012-02-24 11:42:47 -08001324 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(kh.GetDexFile(), kh.GetDescriptor()));
Brian Carlstromf5822582012-03-19 22:34:31 -07001325 CHECK(oat_class.get() != NULL);
TDYa12785321912012-04-01 15:24:56 -07001326 return oat_class->GetOatMethod(oat_method_index);
1327}
1328
1329// Special case to get oat code without overwriting a trampoline.
1330const void* ClassLinker::GetOatCodeFor(const Method* method) {
TDYa127ccffd9e2012-04-08 14:37:03 -07001331 CHECK(Runtime::Current()->IsCompiler() || method->GetDeclaringClass()->IsInitializing());
TDYa12785321912012-04-01 15:24:56 -07001332 return GetOatMethodFor(method).GetCode();
1333}
1334
1335void ClassLinker::LinkOatCodeFor(Method* method) {
1336 Class* declaring_class = method->GetDeclaringClass();
1337 ClassHelper kh(declaring_class);
1338 const OatFile* oat_file = FindOpenedOatFileForDexFile(kh.GetDexFile());
1339 if (oat_file != NULL) {
1340 // NOTE: We have to check the availability of OatFile first. Because
1341 // GetOatMethodFor(...) will try to find the OatFile and there's
1342 // an assert in GetOatMethodFor(...). Besides, due to the return
1343 // type of OatClass::GetOatMethod(...), we can't return a failure value
1344 // back.
1345
1346 // TODO: Remove this workaround.
TDYa12705fe3b62012-04-21 00:28:54 -07001347 OatFile::OatMethod oat_method = GetOatMethodFor(method);
1348 if (method->GetCode() == NULL) {
1349 method->SetCode(oat_method.GetCode());
1350 }
1351 if (method->GetInvokeStub() == NULL) {
1352 method->SetInvokeStub(oat_method.GetInvokeStub());
1353 }
TDYa12785321912012-04-01 15:24:56 -07001354 }
Ian Rogers19846512012-02-24 11:42:47 -08001355}
1356
1357void ClassLinker::FixupStaticTrampolines(Class* klass) {
1358 ClassHelper kh(klass);
1359 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
1360 CHECK(dex_class_def != NULL);
1361 const DexFile& dex_file = kh.GetDexFile();
1362 const byte* class_data = dex_file.GetClassData(*dex_class_def);
1363 if (class_data == NULL) {
1364 return; // no fields or methods - for example a marker interface
1365 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001366 if (!Runtime::Current()->IsStarted() || Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers19846512012-02-24 11:42:47 -08001367 // OAT file unavailable
1368 return;
1369 }
Brian Carlstromf5822582012-03-19 22:34:31 -07001370 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, kh.GetDescriptor()));
1371 CHECK(oat_class.get() != NULL);
Ian Rogers19846512012-02-24 11:42:47 -08001372 ClassDataItemIterator it(dex_file, class_data);
1373 // Skip fields
1374 while (it.HasNextStaticField()) {
1375 it.Next();
1376 }
1377 while (it.HasNextInstanceField()) {
1378 it.Next();
1379 }
1380 size_t method_index = 0;
1381 // Link the code of methods skipped by LinkCode
1382 const void* trampoline = Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData();
1383 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1384 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -07001385 if (Runtime::Current()->IsMethodTracingActive()) {
1386 Trace* tracer = Runtime::Current()->GetTracer();
1387 if (tracer->GetSavedCodeFromMap(method) == trampoline) {
1388 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1389 tracer->ResetSavedCode(method);
1390 method->SetCode(code);
1391 tracer->SaveAndUpdateCode(method);
1392 }
1393 } else if (method->GetCode() == trampoline) {
Ian Rogers19846512012-02-24 11:42:47 -08001394 const void* code = oat_class->GetOatMethod(method_index).GetCode();
1395 CHECK(code != NULL);
1396 method->SetCode(code);
1397 }
1398 method_index++;
1399 }
1400}
1401
Elliott Hughes5c599942012-06-13 16:45:05 -07001402static void LinkCode(SirtRef<Method>& method, const OatFile::OatClass* oat_class, uint32_t method_index) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001403 // Every kind of method should at least get an invoke stub from the oat_method.
1404 // non-abstract methods also get their code pointers.
1405 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
Brian Carlstromae826982011-11-09 01:33:42 -08001406 oat_method.LinkMethodPointers(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001407
Ian Rogers19846512012-02-24 11:42:47 -08001408 Runtime* runtime = Runtime::Current();
Brian Carlstrom92827a52011-10-10 15:50:01 -07001409 if (method->IsAbstract()) {
Ian Rogers19846512012-02-24 11:42:47 -08001410 method->SetCode(runtime->GetAbstractMethodErrorStubArray()->GetData());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001411 return;
1412 }
Ian Rogers19846512012-02-24 11:42:47 -08001413
1414 if (method->IsStatic() && !method->IsConstructor()) {
1415 // For static methods excluding the class initializer, install the trampoline
1416 method->SetCode(runtime->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
Ian Rogers0d6de042012-02-29 08:50:26 -08001417 }
1418 if (method->IsNative()) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07001419 // unregistering restores the dlsym lookup stub
Ian Rogers19846512012-02-24 11:42:47 -08001420 method->UnregisterNative(Thread::Current());
jeffhao26c0a1a2012-01-17 16:28:33 -08001421 }
1422
1423 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhao26c0a1a2012-01-17 16:28:33 -08001424 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaob5e81852012-03-12 11:15:45 -07001425 tracer->SaveAndUpdateCode(method.get());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001426 }
1427}
1428
Brian Carlstromf615a612011-07-23 12:50:34 -07001429void ClassLinker::LoadClass(const DexFile& dex_file,
1430 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001431 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001432 const ClassLoader* class_loader) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001433 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001434 CHECK(klass->GetDexCache() != NULL);
1435 CHECK_EQ(Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001436 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001437 CHECK(descriptor != NULL);
1438
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001439 klass->SetClass(GetClassRoot(kJavaLangClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001440 uint32_t access_flags = dex_class_def.access_flags_;
Elliott Hughes582a7d12011-10-10 18:38:42 -07001441 // Make sure that none of our runtime-only flags are set.
1442 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001443 klass->SetAccessFlags(access_flags);
1444 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001445 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001446 klass->SetStatus(Class::kStatusIdx);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001447
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001448 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001449
Ian Rogers0571d352011-11-03 19:51:38 -07001450 // Load fields fields.
1451 const byte* class_data = dex_file.GetClassData(dex_class_def);
1452 if (class_data == NULL) {
1453 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001454 }
Ian Rogers0571d352011-11-03 19:51:38 -07001455 ClassDataItemIterator it(dex_file, class_data);
1456 if (it.NumStaticFields() != 0) {
1457 klass->SetSFields(AllocObjectArray<Field>(it.NumStaticFields()));
1458 }
1459 if (it.NumInstanceFields() != 0) {
1460 klass->SetIFields(AllocObjectArray<Field>(it.NumInstanceFields()));
1461 }
1462 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
1463 SirtRef<Field> sfield(AllocField());
1464 klass->SetStaticField(i, sfield.get());
1465 LoadField(dex_file, it, klass, sfield);
1466 }
1467 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
1468 SirtRef<Field> ifield(AllocField());
1469 klass->SetInstanceField(i, ifield.get());
1470 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001471 }
1472
Brian Carlstromf5822582012-03-19 22:34:31 -07001473 UniquePtr<const OatFile::OatClass> oat_class;
1474 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
1475 oat_class.reset(GetOatClass(dex_file, descriptor));
1476 }
Ian Rogers19846512012-02-24 11:42:47 -08001477
Ian Rogers0571d352011-11-03 19:51:38 -07001478 // Load methods.
1479 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001480 // TODO: append direct methods to class object
Ian Rogers0571d352011-11-03 19:51:38 -07001481 klass->SetDirectMethods(AllocObjectArray<Method>(it.NumDirectMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001482 }
Ian Rogers0571d352011-11-03 19:51:38 -07001483 if (it.NumVirtualMethods() != 0) {
1484 // TODO: append direct methods to class object
1485 klass->SetVirtualMethods(AllocObjectArray<Method>(it.NumVirtualMethods()));
Brian Carlstrom934486c2011-07-12 23:42:50 -07001486 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001487 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001488 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
1489 SirtRef<Method> method(AllocMethod());
1490 klass->SetDirectMethod(i, method.get());
1491 LoadMethod(dex_file, it, klass, method);
1492 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001493 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001494 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001495 method->SetMethodIndex(class_def_method_index);
1496 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001497 }
1498 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
1499 SirtRef<Method> method(AllocMethod());
1500 klass->SetVirtualMethod(i, method.get());
1501 LoadMethod(dex_file, it, klass, method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001502 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers0571d352011-11-03 19:51:38 -07001503 if (oat_class.get() != NULL) {
Ian Rogersfb6adba2012-03-04 21:51:51 -08001504 LinkCode(method, oat_class.get(), class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -07001505 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001506 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001507 }
1508 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001509}
1510
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001511void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Ian Rogers0571d352011-11-03 19:51:38 -07001512 SirtRef<Class>& klass, SirtRef<Field>& dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001513 uint32_t field_idx = it.GetMemberIndex();
1514 dst->SetDexFieldIndex(field_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001515 dst->SetDeclaringClass(klass.get());
Ian Rogers0571d352011-11-03 19:51:38 -07001516 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001517}
1518
Ian Rogers0571d352011-11-03 19:51:38 -07001519void ClassLinker::LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it,
1520 SirtRef<Class>& klass, SirtRef<Method>& dst) {
Ian Rogers19846512012-02-24 11:42:47 -08001521 uint32_t dex_method_idx = it.GetMemberIndex();
1522 dst->SetDexMethodIndex(dex_method_idx);
1523 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001524 dst->SetDeclaringClass(klass.get());
Elliott Hughes20cde902011-10-04 17:37:27 -07001525
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001526
1527 StringPiece method_name(dex_file.GetMethodName(method_id));
1528 if (method_name == "<init>") {
Elliott Hughes80609252011-09-23 17:24:51 -07001529 dst->SetClass(GetClassRoot(kJavaLangReflectConstructor));
1530 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001531
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001532 if (method_name == "finalize") {
1533 // Create the prototype for a signature of "()V"
1534 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
1535 if (void_string_id != NULL) {
1536 const DexFile::TypeId* void_type_id =
1537 dex_file.FindTypeId(dex_file.GetIndexForStringId(*void_string_id));
1538 if (void_type_id != NULL) {
1539 std::vector<uint16_t> no_args;
1540 const DexFile::ProtoId* finalizer_proto =
1541 dex_file.FindProtoId(dex_file.GetIndexForTypeId(*void_type_id), no_args);
1542 if (finalizer_proto != NULL) {
1543 // We have the prototype in the dex file
1544 if (klass->GetClassLoader() != NULL) { // All non-boot finalizer methods are flagged
1545 klass->SetFinalizable();
1546 } else {
1547 StringPiece klass_descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
1548 // The Enum class declares a "final" finalize() method to prevent subclasses from
1549 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
1550 // subclasses, so we exclude it here.
1551 // We also want to avoid setting the flag on Object, where we know that finalize() is
1552 // empty.
1553 if (klass_descriptor != "Ljava/lang/Object;" &&
1554 klass_descriptor != "Ljava/lang/Enum;") {
1555 klass->SetFinalizable();
1556 }
1557 }
1558 }
1559 }
Elliott Hughes20cde902011-10-04 17:37:27 -07001560 }
Carl Shapiro419ec7b2011-08-03 14:48:33 -07001561 }
Ian Rogers0571d352011-11-03 19:51:38 -07001562 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Ian Rogers0571d352011-11-03 19:51:38 -07001563 dst->SetAccessFlags(it.GetMemberAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001564
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001565 dst->SetDexCacheStrings(klass->GetDexCache()->GetStrings());
Ian Rogers19846512012-02-24 11:42:47 -08001566 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001567 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001568 dst->SetDexCacheInitializedStaticStorage(klass->GetDexCache()->GetInitializedStaticStorage());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001569}
1570
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001571void ClassLinker::AppendToBootClassPath(const DexFile& dex_file) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001572 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
1573 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001574}
1575
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001576void ClassLinker::AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
1577 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001578 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07001579 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001580}
1581
Brian Carlstromaded5f72011-10-07 17:15:04 -07001582bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001583 dex_lock_.AssertHeld();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001584 for (size_t i = 0; i != dex_files_.size(); ++i) {
1585 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001586 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001587 }
1588 }
1589 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001590}
1591
Brian Carlstromaded5f72011-10-07 17:15:04 -07001592bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001593 MutexLock mu(dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07001594 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001595}
1596
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001597void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001598 dex_lock_.AssertHeld();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001599 CHECK(dex_cache.get() != NULL) << dex_file.GetLocation();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001600 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001601 dex_files_.push_back(&dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001602 dex_caches_.push_back(dex_cache.get());
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001603}
1604
Brian Carlstromaded5f72011-10-07 17:15:04 -07001605void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001606 {
1607 MutexLock mu(dex_lock_);
1608 if (IsDexFileRegisteredLocked(dex_file)) {
1609 return;
1610 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001611 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001612 // Don't alloc while holding the lock, since allocation may need to
1613 // suspend all threads and another thread may need the dex_lock_ to
1614 // get to a suspend point.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001615 SirtRef<DexCache> dex_cache(AllocDexCache(dex_file));
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001616 {
1617 MutexLock mu(dex_lock_);
1618 if (IsDexFileRegisteredLocked(dex_file)) {
1619 return;
1620 }
1621 RegisterDexFileLocked(dex_file, dex_cache);
1622 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001623}
1624
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001625void ClassLinker::RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache) {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001626 MutexLock mu(dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001627 RegisterDexFileLocked(dex_file, dex_cache);
1628}
1629
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001630const DexFile& ClassLinker::FindDexFile(const DexCache* dex_cache) const {
Ian Rogers466bb252011-10-14 03:29:56 -07001631 CHECK(dex_cache != NULL);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001632 MutexLock mu(dex_lock_);
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001633 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1634 if (dex_caches_[i] == dex_cache) {
Ian Rogers19846512012-02-24 11:42:47 -08001635 return *dex_files_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001636 }
1637 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001638 LOG(FATAL) << "Failed to find DexFile for DexCache " << dex_cache->GetLocation()->ToModifiedUtf8();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001639 return *dex_files_[-1];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001640}
1641
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001642DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001643 MutexLock mu(dex_lock_);
Brian Carlstromf615a612011-07-23 12:50:34 -07001644 for (size_t i = 0; i != dex_files_.size(); ++i) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001645 if (dex_files_[i] == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08001646 return dex_caches_[i];
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001647 }
1648 }
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001649 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001650 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001651}
1652
Ian Rogers19846512012-02-24 11:42:47 -08001653void ClassLinker::FixupDexCaches(Method* resolution_method) const {
1654 MutexLock mu(dex_lock_);
1655 for (size_t i = 0; i != dex_caches_.size(); ++i) {
1656 dex_caches_[i]->Fixup(resolution_method);
1657 }
1658}
1659
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001660Class* ClassLinker::InitializePrimitiveClass(Class* primitive_class,
1661 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001662 Primitive::Type type) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001663 // TODO: deduce one argument from the other
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001664 CHECK(primitive_class != NULL);
1665 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001666 primitive_class->SetPrimitiveType(type);
1667 primitive_class->SetStatus(Class::kStatusInitialized);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001668 Class* existing = InsertClass(descriptor, primitive_class, false);
1669 CHECK(existing == NULL) << "InitPrimitiveClass(" << descriptor << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001670 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07001671}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001672
Brian Carlstrombe977852011-07-19 14:54:54 -07001673// Create an array class (i.e. the class object for the array, not the
1674// array itself). "descriptor" looks like "[C" or "[[[[B" or
1675// "[Ljava/lang/String;".
1676//
1677// If "descriptor" refers to an array of primitives, look up the
1678// primitive type's internally-generated class object.
1679//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001680// "class_loader" is the class loader of the class that's referring to
1681// us. It's used to ensure that we're looking for the element type in
1682// the right context. It does NOT become the class loader for the
1683// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07001684//
1685// Returns NULL with an exception raised on failure.
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001686Class* ClassLinker::CreateArrayClass(const std::string& descriptor, const ClassLoader* class_loader) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001687 CHECK_EQ('[', descriptor[0]);
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001688
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001689 // Identify the underlying component type
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001690 Class* component_type = FindClass(descriptor.substr(1).c_str(), class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001691 if (component_type == NULL) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001692 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001693 return NULL;
1694 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001695
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001696 // See if the component type is already loaded. Array classes are
1697 // always associated with the class loader of their underlying
1698 // element type -- an array of Strings goes with the loader for
1699 // java/lang/String -- so we need to look for it there. (The
1700 // caller should have checked for the existence of the class
1701 // before calling here, but they did so with *their* class loader,
1702 // not the component type's loader.)
1703 //
1704 // If we find it, the caller adds "loader" to the class' initiating
1705 // loader list, which should prevent us from going through this again.
1706 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001707 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001708 // are the same, because our caller (FindClass) just did the
1709 // lookup. (Even if we get this wrong we still have correct behavior,
1710 // because we effectively do this lookup again when we add the new
1711 // class to the hash table --- necessary because of possible races with
1712 // other threads.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001713 if (class_loader != component_type->GetClassLoader()) {
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001714 Class* new_class = LookupClass(descriptor.c_str(), component_type->GetClassLoader());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001715 if (new_class != NULL) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001716 return new_class;
1717 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001718 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001719
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001720 // Fill out the fields in the Class.
1721 //
1722 // It is possible to execute some methods against arrays, because
1723 // all arrays are subclasses of java_lang_Object_, so we need to set
1724 // up a vtable. We can just point at the one in java_lang_Object_.
1725 //
1726 // Array classes are simple enough that we don't need to do a full
1727 // link step.
1728
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001729 SirtRef<Class> new_class(NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001730 if (!init_done_) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001731 // Classes that were hand created, ie not by FindSystemClass
Elliott Hughes418d20f2011-09-22 14:00:39 -07001732 if (descriptor == "[Ljava/lang/Class;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001733 new_class.reset(GetClassRoot(kClassArrayClass));
Elliott Hughes418d20f2011-09-22 14:00:39 -07001734 } else if (descriptor == "[Ljava/lang/Object;") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001735 new_class.reset(GetClassRoot(kObjectArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001736 } else if (descriptor == "[C") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001737 new_class.reset(GetClassRoot(kCharArrayClass));
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001738 } else if (descriptor == "[I") {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001739 new_class.reset(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001740 }
1741 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001742 if (new_class.get() == NULL) {
1743 new_class.reset(AllocClass(sizeof(Class)));
1744 if (new_class.get() == NULL) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001745 return NULL;
1746 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001747 new_class->SetComponentType(component_type);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001748 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001749 DCHECK(new_class->GetComponentType() != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001750 Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001751 new_class->SetSuperClass(java_lang_Object);
1752 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001753 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001754 new_class->SetClassLoader(component_type->GetClassLoader());
1755 new_class->SetStatus(Class::kStatusInitialized);
1756 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001757 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001758
1759
1760 // All arrays have java/lang/Cloneable and java/io/Serializable as
1761 // interfaces. We need to set that up here, so that stuff like
1762 // "instanceof" works right.
1763 //
1764 // Note: The GC could run during the call to FindSystemClass,
1765 // so we need to make sure the class object is GC-valid while we're in
1766 // there. Do this by clearing the interface list so the GC will just
1767 // think that the entries are null.
1768
1769
1770 // Use the single, global copies of "interfaces" and "iftable"
1771 // (remember not to free them for arrays).
Elliott Hughes92f14b22011-10-06 12:29:54 -07001772 CHECK(array_iftable_ != NULL);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001773 new_class->SetIfTable(array_iftable_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001774
1775 // Inherit access flags from the component type. Arrays can't be
1776 // used as a superclass or interface, so we want to add "final"
1777 // and remove "interface".
1778 //
1779 // Don't inherit any non-standard flags (e.g., kAccFinal)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001780 // from component_type. We assume that the array class does not
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001781 // override finalize().
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001782 new_class->SetAccessFlags(((new_class->GetComponentType()->GetAccessFlags() &
1783 ~kAccInterface) | kAccFinal) & kAccJavaFlagsMask);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001784
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001785 Class* existing = InsertClass(descriptor, new_class.get(), false);
1786 if (existing == NULL) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001787 return new_class.get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001788 }
1789 // Another thread must have loaded the class after we
1790 // started but before we finished. Abandon what we've
1791 // done.
1792 //
1793 // (Yes, this happens.)
1794
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001795 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07001796}
1797
1798Class* ClassLinker::FindPrimitiveClass(char type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001799 switch (Primitive::GetType(type)) {
1800 case Primitive::kPrimByte:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001801 return GetClassRoot(kPrimitiveByte);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001802 case Primitive::kPrimChar:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001803 return GetClassRoot(kPrimitiveChar);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001804 case Primitive::kPrimDouble:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001805 return GetClassRoot(kPrimitiveDouble);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001806 case Primitive::kPrimFloat:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001807 return GetClassRoot(kPrimitiveFloat);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001808 case Primitive::kPrimInt:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001809 return GetClassRoot(kPrimitiveInt);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001810 case Primitive::kPrimLong:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001811 return GetClassRoot(kPrimitiveLong);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001812 case Primitive::kPrimShort:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001813 return GetClassRoot(kPrimitiveShort);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001814 case Primitive::kPrimBoolean:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001815 return GetClassRoot(kPrimitiveBoolean);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001816 case Primitive::kPrimVoid:
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001817 return GetClassRoot(kPrimitiveVoid);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001818 case Primitive::kPrimNot:
1819 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07001820 }
Elliott Hughesbd935992011-08-22 11:59:34 -07001821 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001822 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Elliott Hughesbd935992011-08-22 11:59:34 -07001823 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001824}
1825
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001826Class* ClassLinker::InsertClass(const StringPiece& descriptor, Class* klass, bool image_class) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001827 if (VLOG_IS_ON(class_linker)) {
Brian Carlstromae826982011-11-09 01:33:42 -08001828 DexCache* dex_cache = klass->GetDexCache();
1829 std::string source;
1830 if (dex_cache != NULL) {
1831 source += " from ";
1832 source += dex_cache->GetLocation()->ToModifiedUtf8();
1833 }
1834 LOG(INFO) << "Loaded class " << descriptor << source;
1835 }
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07001836 size_t hash = StringPieceHash()(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001837 MutexLock mu(classes_lock_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001838 Table& classes = image_class ? image_classes_ : classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001839 Class* existing = LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, classes);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001840#ifndef NDEBUG
1841 // Check we don't have the class in the other table in error
1842 Table& other_classes = image_class ? classes_ : image_classes_;
Elliott Hughesf8349362012-06-18 15:00:06 -07001843 CHECK(LookupClassLocked(descriptor.data(), klass->GetClassLoader(), hash, other_classes) == NULL);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001844#endif
1845 if (existing != NULL) {
1846 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07001847 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001848 classes.insert(std::make_pair(hash, klass));
1849 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001850}
1851
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001852bool ClassLinker::RemoveClass(const char* descriptor, const ClassLoader* class_loader) {
1853 size_t hash = Hash(descriptor);
Brian Carlstromae826982011-11-09 01:33:42 -08001854 MutexLock mu(classes_lock_);
Elliott Hughese5448b52012-01-18 16:44:06 -08001855 typedef Table::iterator It; // TODO: C++0x auto
Brian Carlstromae826982011-11-09 01:33:42 -08001856 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001857 ClassHelper kh;
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001858 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001859 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001860 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001861 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001862 classes_.erase(it);
1863 return true;
1864 }
1865 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001866 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Brian Carlstromae826982011-11-09 01:33:42 -08001867 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001868 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001869 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstromae826982011-11-09 01:33:42 -08001870 image_classes_.erase(it);
1871 return true;
1872 }
1873 }
1874 return false;
1875}
1876
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001877Class* ClassLinker::LookupClass(const char* descriptor, const ClassLoader* class_loader) {
1878 size_t hash = Hash(descriptor);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07001879 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07001880 // TODO: determine if its better to search classes_ or image_classes_ first
Elliott Hughesf8349362012-06-18 15:00:06 -07001881 Class* klass = LookupClassLocked(descriptor, class_loader, hash, classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001882 if (klass != NULL) {
1883 return klass;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001884 }
Elliott Hughesf8349362012-06-18 15:00:06 -07001885 return LookupClassLocked(descriptor, class_loader, hash, image_classes_);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001886}
1887
Elliott Hughesf8349362012-06-18 15:00:06 -07001888Class* ClassLinker::LookupClassLocked(const char* descriptor, const ClassLoader* class_loader,
1889 size_t hash, const Table& classes) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001890 ClassHelper kh(NULL, this);
1891 typedef Table::const_iterator It; // TODO: C++0x auto
1892 for (It it = classes.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers5d76c432011-10-31 21:42:49 -07001893 Class* klass = it->second;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001894 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001895 if (strcmp(descriptor, kh.GetDescriptor()) == 0 && klass->GetClassLoader() == class_loader) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001896#ifndef NDEBUG
1897 for (++it; it != end && it->first == hash; ++it) {
Ian Rogersd85016c2012-02-03 18:27:34 -08001898 Class* klass2 = it->second;
1899 kh.ChangeClass(klass2);
1900 CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader))
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001901 << PrettyClass(klass) << " " << klass << " " << klass->GetClassLoader() << " "
Ian Rogersd85016c2012-02-03 18:27:34 -08001902 << PrettyClass(klass2) << " " << klass2 << " " << klass2->GetClassLoader();
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001903 }
1904#endif
Ian Rogers5d76c432011-10-31 21:42:49 -07001905 return klass;
1906 }
1907 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07001908 return NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001909}
1910
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001911void ClassLinker::LookupClasses(const char* descriptor, std::vector<Class*>& classes) {
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001912 classes.clear();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001913 size_t hash = Hash(descriptor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001914 MutexLock mu(classes_lock_);
1915 typedef Table::const_iterator It; // TODO: C++0x auto
1916 // TODO: determine if its better to search classes_ or image_classes_ first
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001917 ClassHelper kh(NULL, this);
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001918 for (It it = classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001919 Class* klass = it->second;
1920 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001921 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001922 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001923 }
1924 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08001925 for (It it = image_classes_.lower_bound(hash), end = classes_.end(); it != end && it->first == hash; ++it) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001926 Class* klass = it->second;
1927 kh.ChangeClass(klass);
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001928 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001929 classes.push_back(klass);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001930 }
1931 }
1932}
1933
TDYa1273db52852012-04-01 15:11:43 -07001934#if !defined(NDEBUG) && !defined(ART_USE_LLVM_COMPILER)
Ian Rogersc20a83e2012-01-18 18:15:32 -08001935static void CheckMethodsHaveGcMaps(Class* klass) {
1936 if (!Runtime::Current()->IsStarted()) {
1937 return;
1938 }
1939 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
1940 Method* method = klass->GetDirectMethod(i);
1941 if (!method->IsNative() && !method->IsAbstract()) {
1942 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1943 }
1944 }
1945 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
1946 Method* method = klass->GetVirtualMethod(i);
1947 if (!method->IsNative() && !method->IsAbstract()) {
1948 CHECK(method->GetGcMap() != NULL) << PrettyMethod(method);
1949 }
1950 }
1951}
1952#else
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001953static void CheckMethodsHaveGcMaps(Class*) {
Ian Rogersc20a83e2012-01-18 18:15:32 -08001954}
1955#endif
1956
jeffhao98eacac2011-09-14 16:11:53 -07001957void ClassLinker::VerifyClass(Class* klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001958 // TODO: assert that the monitor on the Class is held
Elliott Hughesd9c67be2012-02-02 19:54:06 -08001959 ObjectLock lock(klass);
1960
jeffhao98eacac2011-09-14 16:11:53 -07001961 if (klass->IsVerified()) {
1962 return;
1963 }
1964
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08001965 // The class might already be erroneous if we attempted to verify a subclass
1966 if (klass->IsErroneous()) {
1967 ThrowEarlierClassFailure(klass);
1968 return;
1969 }
1970
jeffhaoa9b3bf42012-06-06 17:18:39 -07001971 CHECK(klass->GetStatus() == Class::kStatusResolved ||
1972 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) << PrettyClass(klass);
jeffhao98eacac2011-09-14 16:11:53 -07001973 klass->SetStatus(Class::kStatusVerifying);
jeffhao98eacac2011-09-14 16:11:53 -07001974
Ian Rogers1c5eb702012-02-01 09:18:34 -08001975 // Verify super class
1976 Class* super = klass->GetSuperClass();
1977 std::string error_msg;
1978 if (super != NULL) {
1979 // Acquire lock to prevent races on verifying the super class
1980 ObjectLock lock(super);
1981
1982 if (!super->IsVerified() && !super->IsErroneous()) {
1983 Runtime::Current()->GetClassLinker()->VerifyClass(super);
1984 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07001985 if (!super->IsCompileTimeVerified()) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08001986 error_msg = "Rejecting class ";
1987 error_msg += PrettyDescriptor(klass);
1988 error_msg += " that attempts to sub-class erroneous class ";
1989 error_msg += PrettyDescriptor(super);
1990 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
1991 Thread* self = Thread::Current();
1992 SirtRef<Throwable> cause(self->GetException());
1993 if (cause.get() != NULL) {
1994 self->ClearException();
1995 }
1996 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
1997 if (cause.get() != NULL) {
1998 self->GetException()->SetCause(cause.get());
1999 }
2000 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
2001 klass->SetStatus(Class::kStatusError);
2002 return;
2003 }
2004 }
2005
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002006 // Try to use verification information from the oat file, otherwise do runtime verification.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002007 const DexFile& dex_file = FindDexFile(klass->GetDexCache());
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002008 Class::Status oat_file_class_status(Class::kStatusNotReady);
2009 bool preverified = VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002010 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
2011 if (!preverified) {
2012 verifier_failure = verifier::MethodVerifier::VerifyClass(klass, error_msg);
2013 }
2014 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002015 if (!preverified && oat_file_class_status == Class::kStatusError) {
2016 LOG(FATAL) << "Verification failed hard on class " << PrettyDescriptor(klass)
2017 << " at compile time, but succeeded at runtime! The verifier must be broken.";
2018 }
Ian Rogersc4762272012-02-01 15:55:55 -08002019 DCHECK(!Thread::Current()->IsExceptionPending());
jeffhaof1e6b7c2012-06-05 18:33:30 -07002020 CHECK(verifier_failure == verifier::MethodVerifier::kNoFailure ||
2021 Runtime::Current()->IsCompiler());
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002022 // Make sure all classes referenced by catch blocks are resolved
2023 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002024 klass->SetStatus(verifier_failure == verifier::MethodVerifier::kNoFailure ?
2025 Class::kStatusVerified : Class::kStatusRetryVerificationAtRuntime);
Ian Rogersc20a83e2012-01-18 18:15:32 -08002026 // Sanity check that a verified class has GC maps on all methods
2027 CheckMethodsHaveGcMaps(klass);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002028 } else {
Ian Rogers09f6b562012-01-31 21:58:52 -08002029 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass)
Ian Rogers1c5eb702012-02-01 09:18:34 -08002030 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2031 << " because: " << error_msg;
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002032 Thread* self = Thread::Current();
Ian Rogersc4762272012-02-01 15:55:55 -08002033 CHECK(!self->IsExceptionPending());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002034 self->ThrowNewException("Ljava/lang/VerifyError;", error_msg.c_str());
2035 CHECK_EQ(klass->GetStatus(), Class::kStatusVerifying) << PrettyDescriptor(klass);
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002036 klass->SetStatus(Class::kStatusError);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002037 }
jeffhao98eacac2011-09-14 16:11:53 -07002038}
2039
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002040bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, Class* klass,
2041 Class::Status& oat_file_class_status) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002042 if (!Runtime::Current()->IsStarted()) {
2043 return false;
2044 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002045 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002046 return false;
2047 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002048 const OatFile* oat_file = FindOpenedOatFileForDexFile(dex_file);
2049 CHECK(oat_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002050 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002051 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002052 const char* descriptor = ClassHelper(klass).GetDescriptor();
2053 uint32_t class_def_index;
2054 bool found = dex_file.FindClassDefIndex(descriptor, class_def_index);
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002055 CHECK(found) << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002056 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002057 CHECK(oat_class.get() != NULL)
2058 << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002059 oat_file_class_status = oat_class->GetStatus();
2060 if (oat_file_class_status == Class::kStatusVerified || oat_file_class_status == Class::kStatusInitialized) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002061 return true;
2062 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002063 if (oat_file_class_status == Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002064 // Compile time verification failed with a soft error. Compile time verification can fail
2065 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002066 // class ... {
2067 // Foo x;
2068 // .... () {
2069 // if (...) {
2070 // v1 gets assigned a type of resolved class Foo
2071 // } else {
2072 // v1 gets assigned a type of unresolved class Bar
2073 // }
2074 // iput x = v1
2075 // } }
2076 // when we merge v1 following the if-the-else it results in Conflict
2077 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2078 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2079 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2080 // at compile time).
2081 return false;
2082 }
jeffhao1ac29442012-03-26 11:37:32 -07002083 if (oat_file_class_status == Class::kStatusError) {
2084 // Compile time verification failed with a hard error. This is caused by invalid instructions
2085 // in the class. These errors are unrecoverable.
2086 return false;
2087 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002088 if (oat_file_class_status == Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002089 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2090 // not loading the class.
2091 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2092 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002093 return false;
2094 }
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002095 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002096 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " " << descriptor;
2097
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002098 return false;
2099}
2100
2101void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file, Class* klass) {
2102 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2103 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2104 }
2105 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2106 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2107 }
2108}
2109
2110void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, Method* method) {
2111 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2112 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
2113 if (code_item == NULL) {
2114 return; // native or abstract method
2115 }
2116 if (code_item->tries_size_ == 0) {
2117 return; // nothing to process
2118 }
2119 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
2120 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2121 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2122 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2123 CatchHandlerIterator iterator(handlers_ptr);
2124 for (; iterator.HasNext(); iterator.Next()) {
2125 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2126 // unresolved exception types will be ignored by exception delivery
2127 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
2128 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
2129 if (exception_type == NULL) {
2130 DCHECK(Thread::Current()->IsExceptionPending());
2131 Thread::Current()->ClearException();
2132 }
2133 }
2134 }
2135 handlers_ptr = iterator.EndDataPointer();
2136 }
2137}
2138
Ian Rogersc2b44472011-12-14 21:17:17 -08002139static void CheckProxyConstructor(Method* constructor);
2140static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype);
2141
Jesse Wilson95caa792011-10-12 18:14:17 -04002142Class* ClassLinker::CreateProxyClass(String* name, ObjectArray<Class>* interfaces,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002143 ClassLoader* loader, ObjectArray<Method>* methods,
2144 ObjectArray<ObjectArray<Class> >* throws) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002145 SirtRef<Class> klass(AllocClass(GetClassRoot(kJavaLangClass), sizeof(SynthesizedProxyClass)));
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002146 CHECK(klass.get() != NULL);
Ian Rogersc2b44472011-12-14 21:17:17 -08002147 DCHECK(klass->GetClass() != NULL);
Jesse Wilson95caa792011-10-12 18:14:17 -04002148 klass->SetObjectSize(sizeof(Proxy));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002149 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002150 klass->SetClassLoader(loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002151 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002152 klass->SetName(name);
Ian Rogers466bb252011-10-14 03:29:56 -07002153 Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002154 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogersc2b44472011-12-14 21:17:17 -08002155
2156 klass->SetStatus(Class::kStatusIdx);
2157
2158 klass->SetDexTypeIndex(DexFile::kDexNoIndex16);
2159
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002160 // Instance fields are inherited, but we add a couple of static fields...
2161 klass->SetSFields(AllocObjectArray<Field>(2));
2162 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2163 // our proxy, so Class.getInterfaces doesn't return the flattened set.
2164 SirtRef<Field> interfaces_sfield(AllocField());
2165 klass->SetStaticField(0, interfaces_sfield.get());
2166 interfaces_sfield->SetDexFieldIndex(0);
2167 interfaces_sfield->SetDeclaringClass(klass.get());
2168 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2169 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
2170 SirtRef<Field> throws_sfield(AllocField());
2171 klass->SetStaticField(1, throws_sfield.get());
2172 throws_sfield->SetDexFieldIndex(1);
2173 throws_sfield->SetDeclaringClass(klass.get());
2174 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002175
Ian Rogers466bb252011-10-14 03:29:56 -07002176 // Proxies have 1 direct method, the constructor
Jesse Wilson95caa792011-10-12 18:14:17 -04002177 klass->SetDirectMethods(AllocObjectArray<Method>(1));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002178 klass->SetDirectMethod(0, CreateProxyConstructor(klass, proxy_class));
Jesse Wilson95caa792011-10-12 18:14:17 -04002179
Ian Rogers466bb252011-10-14 03:29:56 -07002180 // Create virtual method using specified prototypes
Jesse Wilson95caa792011-10-12 18:14:17 -04002181 size_t num_virtual_methods = methods->GetLength();
2182 klass->SetVirtualMethods(AllocObjectArray<Method>(num_virtual_methods));
2183 for (size_t i = 0; i < num_virtual_methods; ++i) {
TDYa127f4404052012-04-11 08:53:03 -07002184#if defined(ART_USE_LLVM_COMPILER)
2185 Method* method = methods->Get(i);
2186 // Ensure link.
2187 // TODO: Remove this after fixing the link problem by in-place linking.
2188 if (method->GetCode() == NULL || method->GetInvokeStub() == NULL) {
2189 Runtime::Current()->GetClassLinker()->LinkOatCodeFor(methods->Get(i));
2190 }
2191#endif
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002192 SirtRef<Method> prototype(methods->Get(i));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002193 klass->SetVirtualMethod(i, CreateProxyMethod(klass, prototype));
Jesse Wilson95caa792011-10-12 18:14:17 -04002194 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002195
2196 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
2197 klass->SetStatus(Class::kStatusLoaded); // Class is now effectively in the loaded state
2198 DCHECK(!Thread::Current()->IsExceptionPending());
2199
2200 // Link the fields and virtual methods, creating vtable and iftables
2201 if (!LinkClass(klass, interfaces)) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002202 klass->SetStatus(Class::kStatusError);
Jesse Wilson95caa792011-10-12 18:14:17 -04002203 return NULL;
2204 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002205 interfaces_sfield->SetObject(NULL, interfaces);
2206 throws_sfield->SetObject(NULL, throws);
Ian Rogersc2b44472011-12-14 21:17:17 -08002207 klass->SetStatus(Class::kStatusInitialized);
2208
2209 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07002210 if (kIsDebugBuild) {
Ian Rogersc2b44472011-12-14 21:17:17 -08002211 CHECK(klass->GetIFields() == NULL);
2212 CheckProxyConstructor(klass->GetDirectMethod(0));
2213 for (size_t i = 0; i < num_virtual_methods; ++i) {
2214 SirtRef<Method> prototype(methods->Get(i));
2215 CheckProxyMethod(klass->GetVirtualMethod(i), prototype);
2216 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002217
2218 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
2219 name->ToModifiedUtf8().c_str()));
2220 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
2221
2222 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
2223 name->ToModifiedUtf8().c_str()));
2224 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08002225
2226 SynthesizedProxyClass* synth_proxy_class = down_cast<SynthesizedProxyClass*>(klass.get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002227 CHECK_EQ(synth_proxy_class->GetInterfaces(), interfaces);
Ian Rogersc2b44472011-12-14 21:17:17 -08002228 CHECK_EQ(synth_proxy_class->GetThrows(), throws);
2229 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002230 return klass.get();
Jesse Wilson95caa792011-10-12 18:14:17 -04002231}
2232
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002233std::string ClassLinker::GetDescriptorForProxy(const Class* proxy_class) {
2234 DCHECK(proxy_class->IsProxyClass());
2235 String* name = proxy_class->GetName();
2236 DCHECK(name != NULL);
2237 return DotToDescriptor(name->ToModifiedUtf8().c_str());
2238}
2239
Ian Rogers16f93672012-02-14 12:29:06 -08002240Method* ClassLinker::FindMethodForProxy(const Class* proxy_class, const Method* proxy_method) {
2241 DCHECK(proxy_class->IsProxyClass());
2242 DCHECK(proxy_method->IsProxyMethod());
2243 // Locate the dex cache of the original interface/Object
2244 DexCache* dex_cache = NULL;
2245 {
2246 ObjectArray<Class>* resolved_types = proxy_method->GetDexCacheResolvedTypes();
2247 MutexLock mu(dex_lock_);
2248 for (size_t i = 0; i != dex_caches_.size(); ++i) {
2249 if (dex_caches_[i]->GetResolvedTypes() == resolved_types) {
2250 dex_cache = dex_caches_[i];
2251 break;
2252 }
2253 }
2254 }
2255 CHECK(dex_cache != NULL);
2256 uint32_t method_idx = proxy_method->GetDexMethodIndex();
2257 Method* resolved_method = dex_cache->GetResolvedMethod(method_idx);
2258 CHECK(resolved_method != NULL);
2259 return resolved_method;
2260}
2261
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002262
2263Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07002264 // Create constructor for Proxy that must initialize h
Ian Rogers466bb252011-10-14 03:29:56 -07002265 ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods();
Jesse Wilsonecbce8f2011-10-21 19:57:36 -04002266 CHECK_EQ(proxy_direct_methods->GetLength(), 15);
Ian Rogers466bb252011-10-14 03:29:56 -07002267 Method* proxy_constructor = proxy_direct_methods->Get(2);
TDYa1275bb86012012-04-11 05:57:28 -07002268#if defined(ART_USE_LLVM_COMPILER)
2269 // Ensure link.
2270 // TODO: Remove this after fixing the link problem by in-place linking.
2271 art_fix_stub_from_code(proxy_constructor);
2272#endif
Ian Rogers466bb252011-10-14 03:29:56 -07002273 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
2274 // code_ too)
2275 Method* constructor = down_cast<Method*>(proxy_constructor->Clone());
2276 // Make this constructor public and fix the class to be our Proxy version
2277 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002278 constructor->SetDeclaringClass(klass.get());
Ian Rogersc2b44472011-12-14 21:17:17 -08002279 return constructor;
2280}
2281
2282static void CheckProxyConstructor(Method* constructor) {
Ian Rogers466bb252011-10-14 03:29:56 -07002283 CHECK(constructor->IsConstructor());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002284 MethodHelper mh(constructor);
2285 CHECK_STREQ(mh.GetName(), "<init>");
Elliott Hughesba8eee12012-01-24 20:25:24 -08002286 CHECK_EQ(mh.GetSignature(), std::string("(Ljava/lang/reflect/InvocationHandler;)V"));
Ian Rogers466bb252011-10-14 03:29:56 -07002287 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04002288}
2289
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002290Method* ClassLinker::CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype) {
2291 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
2292 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08002293 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
2294 prototype.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002295 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07002296 // as necessary
2297 Method* method = down_cast<Method*>(prototype->Clone());
2298
2299 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
2300 // the intersection of throw exceptions as defined in Proxy
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002301 method->SetDeclaringClass(klass.get());
Ian Rogers466bb252011-10-14 03:29:56 -07002302 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002303
Ian Rogers466bb252011-10-14 03:29:56 -07002304 // At runtime the method looks like a reference and argument saving method, clone the code
2305 // related parameters from this method.
2306 Method* refs_and_args = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs);
2307 method->SetCoreSpillMask(refs_and_args->GetCoreSpillMask());
2308 method->SetFpSpillMask(refs_and_args->GetFpSpillMask());
2309 method->SetFrameSizeInBytes(refs_and_args->GetFrameSizeInBytes());
TDYa1275bb86012012-04-11 05:57:28 -07002310#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers466bb252011-10-14 03:29:56 -07002311 method->SetCode(reinterpret_cast<void*>(art_proxy_invoke_handler));
TDYa1275bb86012012-04-11 05:57:28 -07002312#else
Logan Chien7a2a23a2012-06-06 11:01:00 +08002313 OatFile::OatMethod oat_method = GetOatMethodFor(prototype.get());
2314 method->SetCode(oat_method.GetProxyStub());
TDYa1275bb86012012-04-11 05:57:28 -07002315#endif
Ian Rogers16f93672012-02-14 12:29:06 -08002316
Ian Rogersc2b44472011-12-14 21:17:17 -08002317 return method;
2318}
Jesse Wilson95caa792011-10-12 18:14:17 -04002319
Ian Rogersc2b44472011-12-14 21:17:17 -08002320static void CheckProxyMethod(Method* method, SirtRef<Method>& prototype) {
Ian Rogers466bb252011-10-14 03:29:56 -07002321 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002322 CHECK(!prototype->IsFinal());
2323 CHECK(method->IsFinal());
2324 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08002325
2326 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
2327 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
2328 CHECK_EQ(prototype->GetDexCacheStrings(), method->GetDexCacheStrings());
2329 CHECK_EQ(prototype->GetDexCacheResolvedMethods(), method->GetDexCacheResolvedMethods());
2330 CHECK_EQ(prototype->GetDexCacheResolvedTypes(), method->GetDexCacheResolvedTypes());
2331 CHECK_EQ(prototype->GetDexCacheInitializedStaticStorage(),
2332 method->GetDexCacheInitializedStaticStorage());
2333 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
2334
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002335 MethodHelper mh(method);
Ian Rogers19846512012-02-24 11:42:47 -08002336 MethodHelper mh2(prototype.get());
2337 CHECK_STREQ(mh.GetName(), mh2.GetName());
2338 CHECK_STREQ(mh.GetShorty(), mh2.GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07002339 // More complex sanity - via dex cache
Ian Rogers19846512012-02-24 11:42:47 -08002340 CHECK_EQ(mh.GetReturnType(), mh2.GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04002341}
2342
Ian Rogers0045a292012-03-31 21:08:41 -07002343bool ClassLinker::InitializeClass(Class* klass, bool can_run_clinit, bool can_init_statics) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002344 CHECK(klass->IsResolved() || klass->IsErroneous())
2345 << PrettyClass(klass) << " is " << klass->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002346
Carl Shapirob5573532011-07-12 18:22:59 -07002347 Thread* self = Thread::Current();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002348
Brian Carlstrom25c33252011-09-18 15:58:35 -07002349 Method* clinit = NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002350 {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002351 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002352 ObjectLock lock(klass);
2353
Brian Carlstromd1422f82011-09-28 11:37:09 -07002354 if (klass->GetStatus() == Class::kStatusInitialized) {
2355 return true;
2356 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002357
Brian Carlstromd1422f82011-09-28 11:37:09 -07002358 if (klass->IsErroneous()) {
2359 ThrowEarlierClassFailure(klass);
2360 return false;
2361 }
2362
jeffhaoebe2e0f2012-06-06 15:19:40 -07002363 if (klass->GetStatus() == Class::kStatusResolved ||
2364 klass->GetStatus() == Class::kStatusRetryVerificationAtRuntime) {
jeffhao98eacac2011-09-14 16:11:53 -07002365 VerifyClass(klass);
2366 if (klass->GetStatus() != Class::kStatusVerified) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07002367 if (klass->GetStatus() == Class::kStatusError) {
2368 CHECK(self->IsExceptionPending());
2369 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002370 return false;
2371 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002372 }
2373
Brian Carlstrom25c33252011-09-18 15:58:35 -07002374 clinit = klass->FindDeclaredDirectMethod("<clinit>", "()V");
2375 if (clinit != NULL && !can_run_clinit) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002376 // if the class has a <clinit> but we can't run it during compilation,
Ian Rogers1bddec32012-02-04 12:27:34 -08002377 // don't bother going to kStatusInitializing. We return false so that
2378 // sub-classes don't believe this class is initialized.
Ian Rogers19846512012-02-24 11:42:47 -08002379 // Opportunistically link non-static methods, TODO: don't initialize and dirty pages
2380 // in second pass.
Ian Rogers1bddec32012-02-04 12:27:34 -08002381 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002382 }
2383
Brian Carlstromd1422f82011-09-28 11:37:09 -07002384 // If the class is kStatusInitializing, either this thread is
2385 // initializing higher up the stack or another thread has beat us
2386 // to initializing and we need to wait. Either way, this
2387 // invocation of InitializeClass will not be responsible for
2388 // running <clinit> and will return.
2389 if (klass->GetStatus() == Class::kStatusInitializing) {
Elliott Hughes005ab2e2011-09-11 17:15:31 -07002390 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07002391 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07002392 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002393 return true;
2394 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07002395 // No. That's fine. Wait for another thread to finish initializing.
2396 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002397 }
2398
2399 if (!ValidateSuperClassDescriptors(klass)) {
2400 klass->SetStatus(Class::kStatusError);
2401 return false;
2402 }
2403
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002404 DCHECK_EQ(klass->GetStatus(), Class::kStatusVerified) << PrettyClass(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002405
Elliott Hughesdcc24742011-09-07 14:02:44 -07002406 klass->SetClinitThreadId(self->GetTid());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002407 klass->SetStatus(Class::kStatusInitializing);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002408 }
2409
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002410 uint64_t t0 = NanoTime();
2411
Ian Rogers0045a292012-03-31 21:08:41 -07002412 if (!InitializeSuperClass(klass, can_run_clinit, can_init_statics)) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002413 // Super class initialization failed, this can be because we can't run
2414 // super-class class initializers in which case we'll be verified.
2415 // Otherwise this class is erroneous.
2416 if (!can_run_clinit) {
2417 CHECK(klass->IsVerified());
2418 } else {
2419 CHECK(klass->IsErroneous());
2420 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002421 return false;
2422 }
2423
Ian Rogers0045a292012-03-31 21:08:41 -07002424 bool has_static_field_initializers = InitializeStaticFields(klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002425
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002426 if (clinit != NULL) {
Elliott Hughesf5ecf062011-09-06 17:37:59 -07002427 clinit->Invoke(self, NULL, NULL, NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002428 }
2429
Ian Rogers19846512012-02-24 11:42:47 -08002430 FixupStaticTrampolines(klass);
2431
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002432 uint64_t t1 = NanoTime();
2433
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002434 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002435 {
2436 ObjectLock lock(klass);
2437
2438 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002439 WrapExceptionInInitializer();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002440 klass->SetStatus(Class::kStatusError);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002441 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002442 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07002443 RuntimeStats* global_stats = Runtime::Current()->GetStats();
2444 RuntimeStats* thread_stats = self->GetStats();
2445 ++global_stats->class_init_count;
2446 ++thread_stats->class_init_count;
2447 global_stats->class_init_time_ns += (t1 - t0);
2448 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogers0045a292012-03-31 21:08:41 -07002449 // Set the class as initialized except if we can't initialize static fields and static field
2450 // initialization is necessary.
2451 if (!can_init_statics && has_static_field_initializers) {
2452 klass->SetStatus(Class::kStatusVerified); // Don't leave class in initializing state.
2453 success = false;
2454 } else {
2455 klass->SetStatus(Class::kStatusInitialized);
2456 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002457 if (VLOG_IS_ON(class_linker)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002458 ClassHelper kh(klass);
2459 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08002460 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002461 }
2462 lock.NotifyAll();
2463 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08002464 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002465}
2466
Brian Carlstromd1422f82011-09-28 11:37:09 -07002467bool ClassLinker::WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock) {
2468 while (true) {
Elliott Hughesd9cdfe92011-10-06 16:09:04 -07002469 CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002470 lock.Wait();
2471
2472 // When we wake up, repeat the test for init-in-progress. If
2473 // there's an exception pending (only possible if
2474 // "interruptShouldThrow" was set), bail out.
2475 if (self->IsExceptionPending()) {
Elliott Hughes4d0207c2011-10-03 19:14:34 -07002476 WrapExceptionInInitializer();
Brian Carlstromd1422f82011-09-28 11:37:09 -07002477 klass->SetStatus(Class::kStatusError);
2478 return false;
2479 }
2480 // Spurious wakeup? Go back to waiting.
2481 if (klass->GetStatus() == Class::kStatusInitializing) {
2482 continue;
2483 }
2484 if (klass->IsErroneous()) {
2485 // The caller wants an exception, but it was thrown in a
2486 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07002487 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002488 PrettyDescriptor(klass).c_str());
Brian Carlstromd1422f82011-09-28 11:37:09 -07002489 return false;
2490 }
2491 if (klass->IsInitialized()) {
2492 return true;
2493 }
2494 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass) << " is " << klass->GetStatus();
2495 }
2496 LOG(FATAL) << "Not Reached" << PrettyClass(klass);
2497}
2498
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002499bool ClassLinker::ValidateSuperClassDescriptors(const Class* klass) {
2500 if (klass->IsInterface()) {
2501 return true;
2502 }
2503 // begin with the methods local to the superclass
2504 if (klass->HasSuperClass() &&
2505 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
2506 const Class* super = klass->GetSuperClass();
Ian Rogers595799e2012-01-11 17:32:51 -08002507 for (int i = super->GetVTable()->GetLength() - 1; i >= 0; --i) {
2508 const Method* method = klass->GetVTable()->Get(i);
2509 if (method != super->GetVTable()->Get(i) &&
2510 !IsSameMethodSignatureInDifferentClassContexts(method, super, klass)) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002511 ThrowLinkageError("Class %s method %s resolves differently in superclass %s",
2512 PrettyDescriptor(klass).c_str(), PrettyMethod(method).c_str(),
2513 PrettyDescriptor(super).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002514 return false;
2515 }
2516 }
2517 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002518 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2519 InterfaceEntry* interface_entry = klass->GetIfTable()->Get(i);
2520 Class* interface = interface_entry->GetInterface();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002521 if (klass->GetClassLoader() != interface->GetClassLoader()) {
2522 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002523 const Method* method = interface_entry->GetMethodArray()->Get(j);
Ian Rogers595799e2012-01-11 17:32:51 -08002524 if (!IsSameMethodSignatureInDifferentClassContexts(method, interface,
2525 method->GetDeclaringClass())) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002526 ThrowLinkageError("Class %s method %s resolves differently in interface %s",
2527 PrettyDescriptor(method->GetDeclaringClass()).c_str(),
2528 PrettyMethod(method).c_str(),
2529 PrettyDescriptor(interface).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002530 return false;
2531 }
2532 }
2533 }
2534 }
2535 return true;
2536}
2537
Ian Rogers595799e2012-01-11 17:32:51 -08002538// Returns true if classes referenced by the signature of the method are the
2539// same classes in klass1 as they are in klass2.
2540bool ClassLinker::IsSameMethodSignatureInDifferentClassContexts(const Method* method,
2541 const Class* klass1,
2542 const Class* klass2) {
Ian Rogers9074b992011-10-26 17:41:55 -07002543 if (klass1 == klass2) {
2544 return true;
Brian Carlstrome10b6972011-09-26 13:49:03 -07002545 }
Brian Carlstrom27ec9612011-09-19 20:20:38 -07002546 const DexFile& dex_file = FindDexFile(method->GetDeclaringClass()->GetDexCache());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002547 const DexFile::ProtoId& proto_id =
2548 dex_file.GetMethodPrototype(dex_file.GetMethodId(method->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07002549 for (DexFileParameterIterator it(dex_file, proto_id); it.HasNext(); it.Next()) {
2550 const char* descriptor = it.GetDescriptor();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002551 if (descriptor == NULL) {
2552 break;
2553 }
2554 if (descriptor[0] == 'L' || descriptor[0] == '[') {
2555 // Found a non-primitive type.
Ian Rogers595799e2012-01-11 17:32:51 -08002556 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002557 return false;
2558 }
2559 }
2560 }
2561 // Check the return type
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002562 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002563 if (descriptor[0] == 'L' || descriptor[0] == '[') {
Ian Rogers595799e2012-01-11 17:32:51 -08002564 if (!IsSameDescriptorInDifferentClassContexts(descriptor, klass1, klass2)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002565 return false;
2566 }
2567 }
2568 return true;
2569}
2570
Ian Rogers595799e2012-01-11 17:32:51 -08002571// Returns true if the descriptor resolves to the same class in the context of klass1 and klass2.
2572bool ClassLinker::IsSameDescriptorInDifferentClassContexts(const char* descriptor,
2573 const Class* klass1,
2574 const Class* klass2) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002575 CHECK(descriptor != NULL);
2576 CHECK(klass1 != NULL);
2577 CHECK(klass2 != NULL);
Ian Rogers9074b992011-10-26 17:41:55 -07002578 if (klass1 == klass2) {
2579 return true;
2580 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002581 Class* found1 = FindClass(descriptor, klass1->GetClassLoader());
Ian Rogers595799e2012-01-11 17:32:51 -08002582 if (found1 == NULL) {
Carl Shapirob5573532011-07-12 18:22:59 -07002583 Thread::Current()->ClearException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002584 }
Ian Rogers595799e2012-01-11 17:32:51 -08002585 Class* found2 = FindClass(descriptor, klass2->GetClassLoader());
2586 if (found2 == NULL) {
2587 Thread::Current()->ClearException();
2588 }
2589 return found1 == found2;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002590}
2591
Ian Rogers0045a292012-03-31 21:08:41 -07002592bool ClassLinker::InitializeSuperClass(Class* klass, bool can_run_clinit, bool can_init_fields) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002593 CHECK(klass != NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002594 if (!klass->IsInterface() && klass->HasSuperClass()) {
2595 Class* super_class = klass->GetSuperClass();
2596 if (super_class->GetStatus() != Class::kStatusInitialized) {
2597 CHECK(!super_class->IsInterface());
Elliott Hughes5f791332011-09-15 17:45:30 -07002598 Thread* self = Thread::Current();
2599 klass->MonitorEnter(self);
Ian Rogers0045a292012-03-31 21:08:41 -07002600 bool super_initialized = InitializeClass(super_class, can_run_clinit, can_init_fields);
Elliott Hughes5f791332011-09-15 17:45:30 -07002601 klass->MonitorExit(self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002602 // TODO: check for a pending exception
2603 if (!super_initialized) {
Brian Carlstrom25c33252011-09-18 15:58:35 -07002604 if (!can_run_clinit) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002605 // Don't set status to error when we can't run <clinit>.
2606 CHECK_EQ(klass->GetStatus(), Class::kStatusInitializing) << PrettyClass(klass);
2607 klass->SetStatus(Class::kStatusVerified);
2608 return false;
Brian Carlstrom25c33252011-09-18 15:58:35 -07002609 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002610 klass->SetStatus(Class::kStatusError);
2611 klass->NotifyAll();
2612 return false;
2613 }
2614 }
2615 }
2616 return true;
2617}
2618
Ian Rogers0045a292012-03-31 21:08:41 -07002619bool ClassLinker::EnsureInitialized(Class* c, bool can_run_clinit, bool can_init_fields) {
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002620 CHECK(c != NULL);
2621 if (c->IsInitialized()) {
2622 return true;
2623 }
2624
Elliott Hughes5f791332011-09-15 17:45:30 -07002625 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -07002626 ScopedThreadStateChange tsc(self, kRunnable);
Ian Rogers0045a292012-03-31 21:08:41 -07002627 bool success = InitializeClass(c, can_run_clinit, can_init_fields);
Ian Rogers595799e2012-01-11 17:32:51 -08002628 if (!success) {
Ian Rogers1bddec32012-02-04 12:27:34 -08002629 CHECK(self->IsExceptionPending() || !can_run_clinit) << PrettyClass(c);
Ian Rogers595799e2012-01-11 17:32:51 -08002630 }
2631 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07002632}
2633
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002634void ClassLinker::ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Elliott Hughesa0e18062012-04-13 15:59:59 -07002635 Class* c, SafeMap<uint32_t, Field*>& field_map) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002636 const ClassLoader* cl = c->GetClassLoader();
2637 const byte* class_data = dex_file.GetClassData(dex_class_def);
Ian Rogers0571d352011-11-03 19:51:38 -07002638 ClassDataItemIterator it(dex_file, class_data);
2639 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002640 field_map.Put(i, ResolveField(dex_file, it.GetMemberIndex(), c->GetDexCache(), cl, true));
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002641 }
2642}
2643
Ian Rogers0045a292012-03-31 21:08:41 -07002644bool ClassLinker::InitializeStaticFields(Class* klass) {
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002645 size_t num_static_fields = klass->NumStaticFields();
2646 if (num_static_fields == 0) {
Ian Rogers0045a292012-03-31 21:08:41 -07002647 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002648 }
Brian Carlstromf615a612011-07-23 12:50:34 -07002649 DexCache* dex_cache = klass->GetDexCache();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002650 // TODO: this seems like the wrong check. do we really want !IsPrimitive && !IsArray?
Brian Carlstromf615a612011-07-23 12:50:34 -07002651 if (dex_cache == NULL) {
Ian Rogers0045a292012-03-31 21:08:41 -07002652 return false;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002653 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002654 ClassHelper kh(klass);
2655 const DexFile::ClassDef* dex_class_def = kh.GetClassDef();
Brian Carlstromf615a612011-07-23 12:50:34 -07002656 CHECK(dex_class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002657 const DexFile& dex_file = kh.GetDexFile();
Ian Rogers0571d352011-11-03 19:51:38 -07002658 EncodedStaticFieldValueIterator it(dex_file, dex_cache, this, *dex_class_def);
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002659
Ian Rogers0571d352011-11-03 19:51:38 -07002660 if (it.HasNext()) {
2661 // 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 -07002662 SafeMap<uint32_t, Field*> field_map;
Ian Rogers0571d352011-11-03 19:51:38 -07002663 ConstructFieldMap(dex_file, *dex_class_def, klass, field_map);
2664 for (size_t i = 0; it.HasNext(); i++, it.Next()) {
Elliott Hughesa0e18062012-04-13 15:59:59 -07002665 it.ReadValueToField(field_map.Get(i));
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07002666 }
Ian Rogers0045a292012-03-31 21:08:41 -07002667 return true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002668 }
Ian Rogers0045a292012-03-31 21:08:41 -07002669 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002670}
2671
Ian Rogersc2b44472011-12-14 21:17:17 -08002672bool ClassLinker::LinkClass(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002673 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002674 if (!LinkSuperClass(klass)) {
2675 return false;
2676 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002677 if (!LinkMethods(klass, interfaces)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002678 return false;
2679 }
2680 if (!LinkInstanceFields(klass)) {
2681 return false;
2682 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07002683 if (!LinkStaticFields(klass)) {
2684 return false;
2685 }
2686 CreateReferenceInstanceOffsets(klass);
2687 CreateReferenceStaticOffsets(klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002688 CHECK_EQ(Class::kStatusLoaded, klass->GetStatus());
2689 klass->SetStatus(Class::kStatusResolved);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002690 return true;
2691}
2692
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002693bool ClassLinker::LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002694 CHECK_EQ(Class::kStatusIdx, klass->GetStatus());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002695 StringPiece descriptor(dex_file.StringByTypeIdx(klass->GetDexTypeIndex()));
2696 const DexFile::ClassDef* class_def = dex_file.FindClassDef(descriptor);
Ian Rogerscab01012012-01-10 17:35:46 -08002697 CHECK(class_def != NULL);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002698 uint16_t super_class_idx = class_def->superclass_idx_;
2699 if (super_class_idx != DexFile::kDexNoIndex16) {
2700 Class* super_class = ResolveType(dex_file, super_class_idx, klass.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002701 if (super_class == NULL) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07002702 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002703 return false;
2704 }
Ian Rogersbe125a92012-01-11 15:19:49 -08002705 // Verify
2706 if (!klass->CanAccess(super_class)) {
2707 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2708 "Class %s extended by class %s is inaccessible",
2709 PrettyDescriptor(super_class).c_str(),
2710 PrettyDescriptor(klass.get()).c_str());
2711 return false;
2712 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002713 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002714 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002715 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(*class_def);
2716 if (interfaces != NULL) {
2717 for (size_t i = 0; i < interfaces->Size(); i++) {
2718 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
2719 Class* interface = ResolveType(dex_file, idx, klass.get());
2720 if (interface == NULL) {
2721 DCHECK(Thread::Current()->IsExceptionPending());
2722 return false;
2723 }
2724 // Verify
2725 if (!klass->CanAccess(interface)) {
2726 // TODO: the RI seemed to ignore this in my testing.
2727 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
2728 "Interface %s implemented by class %s is inaccessible",
2729 PrettyDescriptor(interface).c_str(),
2730 PrettyDescriptor(klass.get()).c_str());
2731 return false;
2732 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002733 }
2734 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002735 // Mark the class as loaded.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002736 klass->SetStatus(Class::kStatusLoaded);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002737 return true;
2738}
2739
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002740bool ClassLinker::LinkSuperClass(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002741 CHECK(!klass->IsPrimitive());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002742 Class* super = klass->GetSuperClass();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002743 if (klass.get() == GetClassRoot(kJavaLangObject)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002744 if (super != NULL) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002745 Thread::Current()->ThrowNewExceptionF("Ljava/lang/ClassFormatError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002746 "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002747 return false;
2748 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002749 return true;
2750 }
2751 if (super == NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002752 ThrowLinkageError("No superclass defined for class %s", PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002753 return false;
2754 }
2755 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002756 if (super->IsFinal() || super->IsInterface()) {
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002757 Thread* self = Thread::Current();
2758 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002759 "Superclass %s of %s is %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002760 PrettyDescriptor(super).c_str(),
2761 PrettyDescriptor(klass.get()).c_str(),
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002762 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002763 return false;
2764 }
2765 if (!klass->CanAccess(super)) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002766 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughese555dc02011-09-25 10:46:35 -07002767 "Superclass %s is inaccessible by %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002768 PrettyDescriptor(super).c_str(),
2769 PrettyDescriptor(klass.get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002770 return false;
2771 }
Elliott Hughes20cde902011-10-04 17:37:27 -07002772
2773 // Inherit kAccClassIsFinalizable from the superclass in case this class doesn't override finalize.
2774 if (super->IsFinalizable()) {
2775 klass->SetFinalizable();
2776 }
2777
Elliott Hughes2da50362011-10-10 16:57:08 -07002778 // Inherit reference flags (if any) from the superclass.
2779 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
2780 if (reference_flags != 0) {
2781 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
2782 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002783 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07002784 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002785 ThrowLinkageError("Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002786 PrettyDescriptor(klass.get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07002787 return false;
2788 }
Elliott Hughes2da50362011-10-10 16:57:08 -07002789
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002790#ifndef NDEBUG
2791 // Ensure super classes are fully resolved prior to resolving fields..
2792 while (super != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002793 CHECK(super->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002794 super = super->GetSuperClass();
2795 }
2796#endif
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002797 return true;
2798}
2799
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002800// Populate the class vtable and itable. Compute return type indices.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002801bool ClassLinker::LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002802 if (klass->IsInterface()) {
2803 // No vtable.
2804 size_t count = klass->NumVirtualMethods();
2805 if (!IsUint(16, count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002806 ThrowClassFormatError("Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002807 return false;
2808 }
Carl Shapiro565f5072011-07-10 13:39:43 -07002809 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002810 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002811 }
jeffhaobdb76512011-09-07 11:43:16 -07002812 // Link interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002813 return LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002814 } else {
Elliott Hughesbc258fa2011-10-06 14:45:21 -07002815 // Link virtual and interface method tables
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002816 return LinkVirtualMethods(klass) && LinkInterfaceMethods(klass, interfaces);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002817 }
2818 return true;
2819}
2820
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002821bool ClassLinker::LinkVirtualMethods(SirtRef<Class>& klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002822 if (klass->HasSuperClass()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002823 uint32_t max_count = klass->NumVirtualMethods() + klass->GetSuperClass()->GetVTable()->GetLength();
2824 size_t actual_count = klass->GetSuperClass()->GetVTable()->GetLength();
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002825 CHECK_LE(actual_count, max_count);
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002826 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08002827 SirtRef<ObjectArray<Method> > vtable(klass->GetSuperClass()->GetVTable()->CopyOf(max_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002828 // See if any of our virtual methods override the superclass.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002829 MethodHelper local_mh(NULL, this);
2830 MethodHelper super_mh(NULL, this);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002831 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002832 Method* local_method = klass->GetVirtualMethodDuringLinking(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002833 local_mh.ChangeMethod(local_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002834 size_t j = 0;
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002835 for (; j < actual_count; ++j) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002836 Method* super_method = vtable->Get(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002837 super_mh.ChangeMethod(super_method);
2838 if (local_mh.HasSameNameAndSignature(&super_mh)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002839 // Verify
2840 if (super_method->IsFinal()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002841 MethodHelper mh(local_method);
Elliott Hughese555dc02011-09-25 10:46:35 -07002842 ThrowLinkageError("Method %s.%s overrides final method in class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002843 PrettyDescriptor(klass.get()).c_str(),
2844 mh.GetName(), mh.GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002845 return false;
2846 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002847 vtable->Set(j, local_method);
2848 local_method->SetMethodIndex(j);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002849 break;
2850 }
2851 }
Brian Carlstrom4a96b602011-07-26 16:40:23 -07002852 if (j == actual_count) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002853 // Not overriding, append.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002854 vtable->Set(actual_count, local_method);
2855 local_method->SetMethodIndex(actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002856 actual_count += 1;
2857 }
2858 }
2859 if (!IsUint(16, actual_count)) {
Elliott Hughes92cb4982011-12-16 16:57:28 -08002860 ThrowClassFormatError("Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002861 return false;
2862 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002863 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002864 CHECK_LE(actual_count, max_count);
2865 if (actual_count < max_count) {
Ian Rogers30fab402012-01-23 15:43:46 -08002866 vtable.reset(vtable->CopyOf(actual_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002867 }
Ian Rogers30fab402012-01-23 15:43:46 -08002868 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002869 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002870 CHECK(klass.get() == GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002871 uint32_t num_virtual_methods = klass->NumVirtualMethods();
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002872 if (!IsUint(16, num_virtual_methods)) {
Elliott Hughese555dc02011-09-25 10:46:35 -07002873 ThrowClassFormatError("Too many methods: %d", num_virtual_methods);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002874 return false;
2875 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002876 SirtRef<ObjectArray<Method> > vtable(AllocObjectArray<Method>(num_virtual_methods));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07002877 for (size_t i = 0; i < num_virtual_methods; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002878 Method* virtual_method = klass->GetVirtualMethodDuringLinking(i);
2879 vtable->Set(i, virtual_method);
2880 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002881 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002882 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002883 }
2884 return true;
2885}
2886
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002887bool ClassLinker::LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002888 size_t super_ifcount;
2889 if (klass->HasSuperClass()) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002890 super_ifcount = klass->GetSuperClass()->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002891 } else {
2892 super_ifcount = 0;
2893 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002894 size_t ifcount = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002895 ClassHelper kh(klass.get(), this);
Ian Rogersd24e2642012-06-06 21:21:43 -07002896 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002897 ifcount += num_interfaces;
2898 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002899 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002900 ifcount += interface->GetIfTableCount();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002901 }
Brian Carlstrom913af1b2011-07-23 21:41:13 -07002902 if (ifcount == 0) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002903 // TODO: enable these asserts with klass status validation
Elliott Hughesf5a7a472011-10-07 14:31:02 -07002904 // DCHECK_EQ(klass->GetIfTableCount(), 0);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002905 // DCHECK(klass->GetIfTable() == NULL);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002906 return true;
2907 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002908 SirtRef<ObjectArray<InterfaceEntry> > iftable(AllocObjectArray<InterfaceEntry>(ifcount));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002909 if (super_ifcount != 0) {
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002910 ObjectArray<InterfaceEntry>* super_iftable = klass->GetSuperClass()->GetIfTable();
2911 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogersb52b01a2012-01-12 17:01:38 -08002912 Class* super_interface = super_iftable->Get(i)->GetInterface();
2913 iftable->Set(i, AllocInterfaceEntry(super_interface));
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002914 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002915 }
2916 // Flatten the interface inheritance hierarchy.
2917 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002918 for (size_t i = 0; i < num_interfaces; i++) {
Ian Rogersd24e2642012-06-06 21:21:43 -07002919 Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002920 DCHECK(interface != NULL);
2921 if (!interface->IsInterface()) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002922 ClassHelper ih(interface);
Brian Carlstrom4d9716c2012-01-30 01:49:33 -08002923 Thread* self = Thread::Current();
2924 self->ThrowNewExceptionF("Ljava/lang/IncompatibleClassChangeError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002925 "Class %s implements non-interface class %s",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002926 PrettyDescriptor(klass.get()).c_str(),
2927 PrettyDescriptor(ih.GetDescriptor()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002928 return false;
2929 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002930 // Check if interface is already in iftable
2931 bool duplicate = false;
2932 for (size_t j = 0; j < idx; j++) {
2933 Class* existing_interface = iftable->Get(j)->GetInterface();
2934 if (existing_interface == interface) {
2935 duplicate = true;
2936 break;
2937 }
2938 }
2939 if (!duplicate) {
2940 // Add this non-duplicate interface.
2941 iftable->Set(idx++, AllocInterfaceEntry(interface));
2942 // Add this interface's non-duplicate super-interfaces.
2943 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
2944 Class* super_interface = interface->GetIfTable()->Get(j)->GetInterface();
2945 bool super_duplicate = false;
2946 for (size_t k = 0; k < idx; k++) {
2947 Class* existing_interface = iftable->Get(k)->GetInterface();
2948 if (existing_interface == super_interface) {
2949 super_duplicate = true;
2950 break;
2951 }
2952 }
2953 if (!super_duplicate) {
2954 iftable->Set(idx++, AllocInterfaceEntry(super_interface));
2955 }
2956 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002957 }
2958 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08002959 // Shrink iftable in case duplicates were found
2960 if (idx < ifcount) {
2961 iftable.reset(iftable->CopyOf(idx));
2962 ifcount = idx;
2963 } else {
2964 CHECK_EQ(idx, ifcount);
2965 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002966 klass->SetIfTable(iftable.get());
Elliott Hughes4681c802011-09-25 18:04:37 -07002967
2968 // If we're an interface, we don't need the vtable pointers, so we're done.
2969 if (klass->IsInterface() /*|| super_ifcount == ifcount*/) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002970 return true;
2971 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002972 std::vector<Method*> miranda_list;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002973 MethodHelper vtable_mh(NULL, this);
2974 MethodHelper interface_mh(NULL, this);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002975 for (size_t i = 0; i < ifcount; ++i) {
2976 InterfaceEntry* interface_entry = iftable->Get(i);
2977 Class* interface = interface_entry->GetInterface();
2978 ObjectArray<Method>* method_array = AllocObjectArray<Method>(interface->NumVirtualMethods());
2979 interface_entry->SetMethodArray(method_array);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002980 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002981 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
2982 Method* interface_method = interface->GetVirtualMethod(j);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002983 interface_mh.ChangeMethod(interface_method);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07002984 int32_t k;
Elliott Hughes4681c802011-09-25 18:04:37 -07002985 // For each method listed in the interface's method list, find the
2986 // matching method in our class's method list. We want to favor the
2987 // subclass over the superclass, which just requires walking
2988 // back from the end of the vtable. (This only matters if the
2989 // superclass defines a private method and this class redefines
2990 // it -- otherwise it would use the same vtable slot. In .dex files
2991 // those don't end up in the virtual method table, so it shouldn't
2992 // matter which direction we go. We walk it backward anyway.)
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002993 for (k = vtable->GetLength() - 1; k >= 0; --k) {
2994 Method* vtable_method = vtable->Get(k);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002995 vtable_mh.ChangeMethod(vtable_method);
2996 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Carl Shapiro8860c0e2011-08-04 17:36:16 -07002997 if (!vtable_method->IsPublic()) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -07002998 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalAccessError;",
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002999 "Implementation not public: %s", PrettyMethod(vtable_method).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003000 return false;
3001 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003002 method_array->Set(j, vtable_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003003 break;
3004 }
3005 }
3006 if (k < 0) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003007 SirtRef<Method> miranda_method(NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -07003008 for (size_t mir = 0; mir < miranda_list.size(); mir++) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003009 Method* mir_method = miranda_list[mir];
3010 vtable_mh.ChangeMethod(mir_method);
3011 if (interface_mh.HasSameNameAndSignature(&vtable_mh)) {
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003012 miranda_method.reset(miranda_list[mir]);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003013 break;
3014 }
3015 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003016 if (miranda_method.get() == NULL) {
Elliott Hughes4681c802011-09-25 18:04:37 -07003017 // point the interface table at a phantom slot
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003018 miranda_method.reset(AllocMethod());
3019 memcpy(miranda_method.get(), interface_method, sizeof(Method));
3020 miranda_list.push_back(miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003021 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003022 method_array->Set(j, miranda_method.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003023 }
3024 }
3025 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003026 if (!miranda_list.empty()) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07003027 int old_method_count = klass->NumVirtualMethods();
Elliott Hughes4681c802011-09-25 18:04:37 -07003028 int new_method_count = old_method_count + miranda_list.size();
Brian Carlstrom27ec9612011-09-19 20:20:38 -07003029 klass->SetVirtualMethods((old_method_count == 0)
3030 ? AllocObjectArray<Method>(new_method_count)
3031 : klass->GetVirtualMethods()->CopyOf(new_method_count));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003032
Ian Rogers30fab402012-01-23 15:43:46 -08003033 SirtRef<ObjectArray<Method> > vtable(klass->GetVTableDuringLinking());
3034 CHECK(vtable.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003035 int old_vtable_count = vtable->GetLength();
Elliott Hughes4681c802011-09-25 18:04:37 -07003036 int new_vtable_count = old_vtable_count + miranda_list.size();
Ian Rogers30fab402012-01-23 15:43:46 -08003037 vtable.reset(vtable->CopyOf(new_vtable_count));
Elliott Hughes4681c802011-09-25 18:04:37 -07003038 for (size_t i = 0; i < miranda_list.size(); ++i) {
Brian Carlstrom92827a52011-10-10 15:50:01 -07003039 Method* method = miranda_list[i];
Ian Rogers9074b992011-10-26 17:41:55 -07003040 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07003041 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
3042 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
3043 klass->SetVirtualMethod(old_method_count + i, method);
3044 vtable->Set(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003045 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003046 // TODO: do not assign to the vtable field until it is fully constructed.
Ian Rogers30fab402012-01-23 15:43:46 -08003047 klass->SetVTable(vtable.get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003048 }
Elliott Hughes4681c802011-09-25 18:04:37 -07003049
3050 ObjectArray<Method>* vtable = klass->GetVTableDuringLinking();
3051 for (int i = 0; i < vtable->GetLength(); ++i) {
3052 CHECK(vtable->Get(i) != NULL);
3053 }
3054
3055// klass->DumpClass(std::cerr, Class::kDumpClassFullDetail);
3056
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003057 return true;
3058}
3059
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003060bool ClassLinker::LinkInstanceFields(SirtRef<Class>& klass) {
3061 CHECK(klass.get() != NULL);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003062 return LinkFields(klass, false);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003063}
3064
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003065bool ClassLinker::LinkStaticFields(SirtRef<Class>& klass) {
3066 CHECK(klass.get() != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003067 size_t allocated_class_size = klass->GetClassSize();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003068 bool success = LinkFields(klass, true);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003069 CHECK_EQ(allocated_class_size, klass->GetClassSize());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003070 return success;
3071}
3072
Brian Carlstromdbc05252011-09-09 01:59:59 -07003073struct LinkFieldsComparator {
Elliott Hughesba8eee12012-01-24 20:25:24 -08003074 explicit LinkFieldsComparator(FieldHelper* fh) : fh_(fh) {}
Elliott Hughes3b6baaa2011-10-14 19:13:56 -07003075 bool operator()(const Field* field1, const Field* field2) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003076 // First come reference fields, then 64-bit, and finally 32-bit
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003077 fh_->ChangeField(field1);
3078 Primitive::Type type1 = fh_->GetTypeAsPrimitiveType();
3079 fh_->ChangeField(field2);
3080 Primitive::Type type2 = fh_->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003081 bool isPrimitive1 = type1 != Primitive::kPrimNot;
3082 bool isPrimitive2 = type2 != Primitive::kPrimNot;
3083 bool is64bit1 = isPrimitive1 && (type1 == Primitive::kPrimLong || type1 == Primitive::kPrimDouble);
3084 bool is64bit2 = isPrimitive2 && (type2 == Primitive::kPrimLong || type2 == Primitive::kPrimDouble);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003085 int order1 = (!isPrimitive1 ? 0 : (is64bit1 ? 1 : 2));
3086 int order2 = (!isPrimitive2 ? 0 : (is64bit2 ? 1 : 2));
3087 if (order1 != order2) {
3088 return order1 < order2;
3089 }
3090
3091 // same basic group? then sort by string.
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003092 fh_->ChangeField(field1);
3093 StringPiece name1(fh_->GetName());
3094 fh_->ChangeField(field2);
3095 StringPiece name2(fh_->GetName());
Brian Carlstromdbc05252011-09-09 01:59:59 -07003096 return name1 < name2;
3097 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003098
3099 FieldHelper* fh_;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003100};
3101
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003102bool ClassLinker::LinkFields(SirtRef<Class>& klass, bool is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003103 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003104 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003105
3106 ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003107 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003108
3109 // Initialize size and field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07003110 size_t size;
3111 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003112 if (is_static) {
3113 size = klass->GetClassSize();
3114 field_offset = Class::FieldsOffset();
3115 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003116 Class* super_class = klass->GetSuperClass();
3117 if (super_class != NULL) {
Elliott Hughes5fe594f2011-09-08 12:33:17 -07003118 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003119 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003120 }
3121 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003122 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003123
Brian Carlstromdbc05252011-09-09 01:59:59 -07003124 CHECK_EQ(num_fields == 0, fields == NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003125
Brian Carlstromdbc05252011-09-09 01:59:59 -07003126 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07003127 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromdbc05252011-09-09 01:59:59 -07003128 std::deque<Field*> grouped_and_sorted_fields;
3129 for (size_t i = 0; i < num_fields; i++) {
3130 grouped_and_sorted_fields.push_back(fields->Get(i));
3131 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003132 FieldHelper fh(NULL, this);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003133 std::sort(grouped_and_sorted_fields.begin(),
3134 grouped_and_sorted_fields.end(),
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003135 LinkFieldsComparator(&fh));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003136
3137 // References should be at the front.
3138 size_t current_field = 0;
3139 size_t num_reference_fields = 0;
3140 for (; current_field < num_fields; current_field++) {
3141 Field* field = grouped_and_sorted_fields.front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003142 fh.ChangeField(field);
3143 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003144 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003145 if (isPrimitive) {
3146 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003147 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003148 grouped_and_sorted_fields.pop_front();
3149 num_reference_fields++;
3150 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003151 field->SetOffset(field_offset);
3152 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003153 }
3154
3155 // Now we want to pack all of the double-wide fields together. If
3156 // we're not aligned, though, we want to shuffle one 32-bit field
3157 // into place. If we can't find one, we'll have to pad it.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003158 if (current_field != num_fields && !IsAligned<8>(field_offset.Uint32Value())) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003159 for (size_t i = 0; i < grouped_and_sorted_fields.size(); i++) {
3160 Field* field = grouped_and_sorted_fields[i];
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003161 fh.ChangeField(field);
3162 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003163 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
3164 if (type == Primitive::kPrimLong || type == Primitive::kPrimDouble) {
Brian Carlstromdbc05252011-09-09 01:59:59 -07003165 continue;
3166 }
3167 fields->Set(current_field++, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003168 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003169 // drop the consumed field
3170 grouped_and_sorted_fields.erase(grouped_and_sorted_fields.begin() + i);
3171 break;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003172 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07003173 // whether we found a 32-bit field for padding or not, we advance
3174 field_offset = MemberOffset(field_offset.Uint32Value() + sizeof(uint32_t));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003175 }
3176
3177 // Alignment is good, shuffle any double-wide fields forward, and
3178 // finish assigning field offsets to all fields.
Elliott Hughes06b37d92011-10-16 11:51:29 -07003179 DCHECK(current_field == num_fields || IsAligned<8>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07003180 while (!grouped_and_sorted_fields.empty()) {
3181 Field* field = grouped_and_sorted_fields.front();
3182 grouped_and_sorted_fields.pop_front();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003183 fh.ChangeField(field);
3184 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003185 CHECK(type != Primitive::kPrimNot); // should only be working on primitive types
Brian Carlstromdbc05252011-09-09 01:59:59 -07003186 fields->Set(current_field, field);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003187 field->SetOffset(field_offset);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003188 field_offset = MemberOffset(field_offset.Uint32Value() +
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003189 ((type == Primitive::kPrimLong || type == Primitive::kPrimDouble)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003190 ? sizeof(uint64_t)
3191 : sizeof(uint32_t)));
3192 current_field++;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003193 }
3194
Elliott Hughesadb460d2011-10-05 17:02:34 -07003195 // 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 -08003196 std::string descriptor(ClassHelper(klass.get(), this).GetDescriptor());
3197 if (!is_static && descriptor == "Ljava/lang/ref/Reference;") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003198 // We know there are no non-reference fields in the Reference classes, and we know
3199 // that 'referent' is alphabetically last, so this is easy...
3200 CHECK_EQ(num_reference_fields, num_fields);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003201 fh.ChangeField(fields->Get(num_fields - 1));
Elliott Hughesba8eee12012-01-24 20:25:24 -08003202 CHECK_STREQ(fh.GetName(), "referent");
Elliott Hughesadb460d2011-10-05 17:02:34 -07003203 --num_reference_fields;
3204 }
3205
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003206#ifndef NDEBUG
Brian Carlstrombe977852011-07-19 14:54:54 -07003207 // Make sure that all reference fields appear before
3208 // non-reference fields, and all double-wide fields are aligned.
3209 bool seen_non_ref = false;
Brian Carlstromdbc05252011-09-09 01:59:59 -07003210 for (size_t i = 0; i < num_fields; i++) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003211 Field* field = fields->Get(i);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003212 if (false) { // enable to debug field layout
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003213 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003214 << " class=" << PrettyClass(klass.get())
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003215 << " field=" << PrettyField(field)
Brian Carlstromdbc05252011-09-09 01:59:59 -07003216 << " offset=" << field->GetField32(MemberOffset(Field::OffsetOffset()), false);
3217 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003218 fh.ChangeField(field);
3219 Primitive::Type type = fh.GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003220 bool is_primitive = type != Primitive::kPrimNot;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003221 if (descriptor == "Ljava/lang/ref/Reference;" && StringPiece(fh.GetName()) == "referent") {
Elliott Hughesadb460d2011-10-05 17:02:34 -07003222 is_primitive = true; // We lied above, so we have to expect a lie here.
3223 }
3224 if (is_primitive) {
Brian Carlstrombe977852011-07-19 14:54:54 -07003225 if (!seen_non_ref) {
3226 seen_non_ref = true;
Brian Carlstrom4873d462011-08-21 15:23:39 -07003227 DCHECK_EQ(num_reference_fields, i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003228 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003229 } else {
3230 DCHECK(!seen_non_ref);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003231 }
3232 }
Brian Carlstrombe977852011-07-19 14:54:54 -07003233 if (!seen_non_ref) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003234 DCHECK_EQ(num_fields, num_reference_fields);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003235 }
3236#endif
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003237 size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003238 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003239 if (is_static) {
3240 klass->SetNumReferenceStaticFields(num_reference_fields);
3241 klass->SetClassSize(size);
3242 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003243 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07003244 if (!klass->IsVariableSize()) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003245 klass->SetObjectSize(size);
3246 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003247 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003248 return true;
3249}
3250
3251// Set the bitmap of reference offsets, refOffsets, from the ifields
3252// list.
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003253void ClassLinker::CreateReferenceInstanceOffsets(SirtRef<Class>& klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003254 uint32_t reference_offsets = 0;
3255 Class* super_class = klass->GetSuperClass();
3256 if (super_class != NULL) {
3257 reference_offsets = super_class->GetReferenceInstanceOffsets();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003258 // If our superclass overflowed, we don't stand a chance.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003259 if (reference_offsets == CLASS_WALK_SUPER) {
3260 klass->SetReferenceInstanceOffsets(reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003261 return;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003262 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003263 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003264 CreateReferenceOffsets(klass, false, reference_offsets);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003265}
3266
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003267void ClassLinker::CreateReferenceStaticOffsets(SirtRef<Class>& klass) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003268 CreateReferenceOffsets(klass, true, 0);
Brian Carlstrom4873d462011-08-21 15:23:39 -07003269}
3270
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003271void ClassLinker::CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003272 uint32_t reference_offsets) {
3273 size_t num_reference_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003274 is_static ? klass->NumReferenceStaticFieldsDuringLinking()
3275 : klass->NumReferenceInstanceFieldsDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003276 const ObjectArray<Field>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003277 is_static ? klass->GetSFields() : klass->GetIFields();
Brian Carlstrom4873d462011-08-21 15:23:39 -07003278 // All of the fields that contain object references are guaranteed
3279 // to be at the beginning of the fields list.
3280 for (size_t i = 0; i < num_reference_fields; ++i) {
3281 // Note that byte_offset is the offset from the beginning of
3282 // object, not the offset into instance data
3283 const Field* field = fields->Get(i);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003284 MemberOffset byte_offset = field->GetOffsetDuringLinking();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003285 CHECK_EQ(byte_offset.Uint32Value() & (CLASS_OFFSET_ALIGNMENT - 1), 0U);
3286 if (CLASS_CAN_ENCODE_OFFSET(byte_offset.Uint32Value())) {
3287 uint32_t new_bit = CLASS_BIT_FROM_OFFSET(byte_offset.Uint32Value());
Brian Carlstrom4873d462011-08-21 15:23:39 -07003288 CHECK_NE(new_bit, 0U);
3289 reference_offsets |= new_bit;
3290 } else {
3291 reference_offsets = CLASS_WALK_SUPER;
3292 break;
3293 }
3294 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003295 // Update fields in klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003296 if (is_static) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003297 klass->SetReferenceStaticOffsets(reference_offsets);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07003298 } else {
3299 klass->SetReferenceInstanceOffsets(reference_offsets);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003300 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003301}
3302
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003303String* ClassLinker::ResolveString(const DexFile& dex_file,
Elliott Hughescf4c6c42011-09-01 15:16:42 -07003304 uint32_t string_idx, DexCache* dex_cache) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003305 DCHECK(dex_cache != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003306 String* resolved = dex_cache->GetResolvedString(string_idx);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003307 if (resolved != NULL) {
3308 return resolved;
3309 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003310 const DexFile::StringId& string_id = dex_file.GetStringId(string_idx);
3311 int32_t utf16_length = dex_file.GetStringLength(string_id);
3312 const char* utf8_data = dex_file.GetStringData(string_id);
Brian Carlstrom928bf022011-10-11 02:48:14 -07003313 String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003314 dex_cache->SetResolvedString(string_idx, string);
3315 return string;
3316}
3317
3318Class* ClassLinker::ResolveType(const DexFile& dex_file,
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003319 uint16_t type_idx,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003320 DexCache* dex_cache,
3321 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003322 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003323 Class* resolved = dex_cache->GetResolvedType(type_idx);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003324 if (resolved == NULL) {
Ian Rogers0571d352011-11-03 19:51:38 -07003325 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003326 resolved = FindClass(descriptor, class_loader);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003327 if (resolved != NULL) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05003328 // TODO: we used to throw here if resolved's class loader was not the
3329 // boot class loader. This was to permit different classes with the
3330 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003331 dex_cache->SetResolvedType(type_idx, resolved);
3332 } else {
Ian Rogerscab01012012-01-10 17:35:46 -08003333 CHECK(Thread::Current()->IsExceptionPending())
3334 << "Expected pending exception for failed resolution of: " << descriptor;
jeffhao8cd6dda2012-02-22 10:15:34 -08003335 // Convert a ClassNotFoundException to a NoClassDefFoundError
3336 if (Thread::Current()->GetException()->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
3337 Thread::Current()->ClearException();
3338 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
3339 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003340 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003341 }
3342 return resolved;
3343}
3344
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003345Method* ClassLinker::ResolveMethod(const DexFile& dex_file,
3346 uint32_t method_idx,
3347 DexCache* dex_cache,
3348 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003349 bool is_direct) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003350 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003351 Method* resolved = dex_cache->GetResolvedMethod(method_idx);
3352 if (resolved != NULL) {
3353 return resolved;
3354 }
3355 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
3356 Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
3357 if (klass == NULL) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07003358 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003359 return NULL;
3360 }
3361
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003362 if (is_direct) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003363 resolved = klass->FindDirectMethod(dex_cache, method_idx);
Brian Carlstrom7540ff42011-09-04 16:38:46 -07003364 } else if (klass->IsInterface()) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003365 resolved = klass->FindInterfaceMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003366 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003367 resolved = klass->FindVirtualMethod(dex_cache, method_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003368 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003369
3370 if (resolved == NULL) {
3371 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
3372 std::string signature(dex_file.CreateMethodSignature(method_id.proto_idx_, NULL));
3373 if (is_direct) {
3374 resolved = klass->FindDirectMethod(name, signature);
3375 } else if (klass->IsInterface()) {
3376 resolved = klass->FindInterfaceMethod(name, signature);
3377 } else {
3378 resolved = klass->FindVirtualMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003379 // If a virtual method isn't found, search the direct methods. This can
3380 // happen when trying to access private methods directly, and allows the
3381 // proper exception to be thrown in the caller.
3382 if (resolved == NULL) {
3383 resolved = klass->FindDirectMethod(name, signature);
3384 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003385 }
3386 if (resolved == NULL) {
3387 ThrowNoSuchMethodError(is_direct, klass, name, signature);
3388 return NULL;
3389 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003390 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003391 dex_cache->SetResolvedMethod(method_idx, resolved);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003392 return resolved;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003393}
3394
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003395Field* ClassLinker::ResolveField(const DexFile& dex_file,
3396 uint32_t field_idx,
3397 DexCache* dex_cache,
3398 const ClassLoader* class_loader,
3399 bool is_static) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003400 DCHECK(dex_cache != NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003401 Field* resolved = dex_cache->GetResolvedField(field_idx);
3402 if (resolved != NULL) {
3403 return resolved;
3404 }
3405 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3406 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3407 if (klass == NULL) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08003408 DCHECK(Thread::Current()->IsExceptionPending());
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003409 return NULL;
3410 }
3411
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003412 if (is_static) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003413 resolved = klass->FindStaticField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003414 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003415 resolved = klass->FindInstanceField(dex_cache, field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07003416 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003417
3418 if (resolved == NULL) {
3419 const char* name = dex_file.GetFieldName(field_id);
3420 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3421 if (is_static) {
3422 resolved = klass->FindStaticField(name, type);
3423 } else {
3424 resolved = klass->FindInstanceField(name, type);
3425 }
3426 if (resolved == NULL) {
3427 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
3428 return NULL;
3429 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003430 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003431 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08003432 return resolved;
3433}
3434
3435Field* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
3436 uint32_t field_idx,
3437 DexCache* dex_cache,
3438 const ClassLoader* class_loader) {
Brian Carlstrom7d776242012-03-06 23:05:49 -08003439 DCHECK(dex_cache != NULL);
Ian Rogersb067ac22011-12-13 18:05:09 -08003440 Field* resolved = dex_cache->GetResolvedField(field_idx);
3441 if (resolved != NULL) {
3442 return resolved;
3443 }
3444 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
3445 Class* klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
3446 if (klass == NULL) {
3447 DCHECK(Thread::Current()->IsExceptionPending());
3448 return NULL;
3449 }
3450
3451 const char* name = dex_file.GetFieldName(field_id);
3452 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
3453 resolved = klass->FindField(name, type);
3454 if (resolved != NULL) {
3455 dex_cache->SetResolvedField(field_idx, resolved);
3456 } else {
3457 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003458 }
3459 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07003460}
3461
Ian Rogers19846512012-02-24 11:42:47 -08003462const char* ClassLinker::MethodShorty(uint32_t method_idx, Method* referrer, uint32_t* length) {
Ian Rogersad25ac52011-10-04 19:13:33 -07003463 Class* declaring_class = referrer->GetDeclaringClass();
3464 DexCache* dex_cache = declaring_class->GetDexCache();
3465 const DexFile& dex_file = FindDexFile(dex_cache);
3466 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08003467 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07003468}
3469
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003470void ClassLinker::DumpAllClasses(int flags) const {
3471 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
3472 // lock held, because it might need to resolve a field's type, which would try to take the lock.
3473 std::vector<Class*> all_classes;
3474 {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003475 MutexLock mu(classes_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003476 typedef Table::const_iterator It; // TODO: C++0x auto
3477 for (It it = classes_.begin(), end = classes_.end(); it != end; ++it) {
3478 all_classes.push_back(it->second);
3479 }
Ian Rogers5d76c432011-10-31 21:42:49 -07003480 for (It it = image_classes_.begin(), end = image_classes_.end(); it != end; ++it) {
3481 all_classes.push_back(it->second);
3482 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07003483 }
3484
3485 for (size_t i = 0; i < all_classes.size(); ++i) {
3486 all_classes[i]->DumpClass(std::cerr, flags);
3487 }
3488}
3489
Elliott Hughescac6cc72011-11-03 20:31:21 -07003490void ClassLinker::DumpForSigQuit(std::ostream& os) const {
3491 MutexLock mu(classes_lock_);
3492 os << "Loaded classes: " << image_classes_.size() << " image classes; "
3493 << classes_.size() << " allocated classes\n";
3494}
3495
Elliott Hughese27955c2011-08-26 15:21:24 -07003496size_t ClassLinker::NumLoadedClasses() const {
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003497 MutexLock mu(classes_lock_);
Ian Rogers5d76c432011-10-31 21:42:49 -07003498 return classes_.size() + image_classes_.size();
Elliott Hughese27955c2011-08-26 15:21:24 -07003499}
3500
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003501pid_t ClassLinker::GetClassesLockOwner() {
3502 return classes_lock_.GetOwner();
3503}
3504
3505pid_t ClassLinker::GetDexLockOwner() {
3506 return dex_lock_.GetOwner();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07003507}
3508
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003509void ClassLinker::SetClassRoot(ClassRoot class_root, Class* klass) {
3510 DCHECK(!init_done_);
3511
3512 DCHECK(klass != NULL);
3513 DCHECK(klass->GetClassLoader() == NULL);
3514
3515 DCHECK(class_roots_ != NULL);
3516 DCHECK(class_roots_->Get(class_root) == NULL);
3517 class_roots_->Set(class_root, klass);
3518}
3519
Logan Chien0c717dd2012-03-28 18:31:07 +08003520void ClassLinker::RelocateExecutable() {
Elliott Hughesf8349362012-06-18 15:00:06 -07003521 MutexLock mu(dex_lock_);
Logan Chien0c717dd2012-03-28 18:31:07 +08003522 for (size_t i = 0; i < oat_files_.size(); ++i) {
3523 const_cast<OatFile*>(oat_files_[i])->RelocateExecutable();
3524 }
3525}
3526
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003527} // namespace art