blob: 1f4cf8fcfc9a33c069905e7d0ca80b390fab9474 [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 Carlstromdbc05252011-09-09 01:59:59 -070019#include <deque>
Ian Rogerscf7f1912014-10-22 22:06:39 -070020#include <iostream>
Ian Rogers700a4022014-05-19 16:49:03 -070021#include <memory>
Fred Shih381e4ca2014-08-25 17:24:27 -070022#include <queue>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070023#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070024#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070025#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070026
Elliott Hughes1aa246d2012-12-13 09:29:36 -080027#include "base/casts.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080028#include "base/logging.h"
Narayan Kamathd1c606f2014-06-09 16:50:19 +010029#include "base/scoped_flock.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080030#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080031#include "base/unix_file/fd_file.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032#include "class_linker-inl.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000033#include "compiler_callbacks.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080034#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070035#include "dex_file-inl.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070036#include "entrypoints/runtime_asm_entrypoints.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070037#include "gc_root-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070038#include "gc/accounting/card_table-inl.h"
39#include "gc/accounting/heap_bitmap.h"
40#include "gc/heap.h"
41#include "gc/space/image_space.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070042#include "handle_scope.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070043#include "intern_table.h"
Ian Rogers64b6d142012-10-29 16:34:15 -070044#include "interpreter/interpreter.h"
Ian Rogers0571d352011-11-03 19:51:38 -070045#include "leb128.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080046#include "oat.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070047#include "oat_file.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070048#include "object_lock.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070049#include "mirror/art_field-inl.h"
50#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "mirror/class.h"
52#include "mirror/class-inl.h"
53#include "mirror/class_loader.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070054#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080055#include "mirror/iftable-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080056#include "mirror/object-inl.h"
57#include "mirror/object_array-inl.h"
58#include "mirror/proxy.h"
Fred Shih4ee7a662014-07-11 09:59:27 -070059#include "mirror/reference-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080060#include "mirror/stack_trace_element.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070061#include "mirror/string-inl.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080062#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070063#include "runtime.h"
Ian Rogers7655f292013-07-29 11:07:13 -070064#include "entrypoints/entrypoint_utils.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070065#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070066#include "scoped_thread_state_change.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070067#include "handle_scope-inl.h"
Ian Rogers7b078e82014-09-10 14:44:24 -070068#include "thread-inl.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070069#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080070#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070071#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070072
73namespace art {
74
Ian Rogers00f7d0e2012-07-19 15:28:27 -070075static void ThrowNoClassDefFoundError(const char* fmt, ...)
76 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070077 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070078static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070079 va_list args;
80 va_start(args, fmt);
Ian Rogers62d6c772013-02-27 08:32:07 -080081 Thread* self = Thread::Current();
82 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
83 self->ThrowNewExceptionV(throw_location, "Ljava/lang/NoClassDefFoundError;", fmt, args);
Ian Rogerscab01012012-01-10 17:35:46 -080084 va_end(args);
85}
86
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080087static void ThrowEarlierClassFailure(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -070088 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes5c599942012-06-13 16:45:05 -070089 // The class failed to initialize on a previous attempt, so we want to throw
90 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
91 // failed in verification, in which case v2 5.4.1 says we need to re-throw
92 // the previous error.
Ian Rogers7b078e82014-09-10 14:44:24 -070093 Runtime* runtime = Runtime::Current();
94 bool is_compiler = runtime->IsCompiler();
95 if (!is_compiler) { // Give info if this occurs at runtime.
Ian Rogers87e552d2012-08-31 15:54:48 -070096 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
97 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -070098
Elliott Hughes5c599942012-06-13 16:45:05 -070099 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Ian Rogers62d6c772013-02-27 08:32:07 -0800100 Thread* self = Thread::Current();
Ian Rogers7b078e82014-09-10 14:44:24 -0700101 if (is_compiler) {
102 // At compile time, accurate errors and NCDFE are disabled to speed compilation.
103 mirror::Throwable* pre_allocated = runtime->GetPreAllocatedNoClassDefFoundError();
104 self->SetException(ThrowLocation(), pre_allocated);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700105 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -0700106 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
107 if (c->GetVerifyErrorClass() != NULL) {
108 // TODO: change the verifier to store an _instance_, with a useful detail message?
109 std::string temp;
110 self->ThrowNewException(throw_location, c->GetVerifyErrorClass()->GetDescriptor(&temp),
111 PrettyDescriptor(c).c_str());
112 } else {
113 self->ThrowNewException(throw_location, "Ljava/lang/NoClassDefFoundError;",
114 PrettyDescriptor(c).c_str());
115 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700116 }
117}
118
Brian Carlstromb23eab12014-10-08 17:55:21 -0700119static void VlogClassInitializationFailure(Handle<mirror::Class> klass)
120 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
121 if (VLOG_IS_ON(class_linker)) {
122 std::string temp;
123 LOG(INFO) << "Failed to initialize class " << klass->GetDescriptor(&temp) << " from "
124 << klass->GetLocation() << "\n" << Thread::Current()->GetException(nullptr)->Dump();
125 }
126}
127
128static void WrapExceptionInInitializer(Handle<mirror::Class> klass)
129 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700130 Thread* self = Thread::Current();
131 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700132
133 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700134 CHECK(cause.get() != nullptr);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700135
136 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700137 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
138 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700139
Elliott Hughesa4f94742012-05-29 16:28:38 -0700140 // We only wrap non-Error exceptions; an Error can just be used as-is.
141 if (!is_error) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800142 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700143 self->ThrowNewWrappedException(throw_location, "Ljava/lang/ExceptionInInitializerError;",
144 nullptr);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700145 }
Brian Carlstromb23eab12014-10-08 17:55:21 -0700146 VlogClassInitializationFailure(klass);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700147}
148
Fred Shih381e4ca2014-08-25 17:24:27 -0700149// Gap between two fields in object layout.
150struct FieldGap {
151 uint32_t start_offset; // The offset from the start of the object.
152 uint32_t size; // The gap size of 1, 2, or 4 bytes.
153};
154struct FieldGapsComparator {
155 explicit FieldGapsComparator() {
156 }
157 bool operator() (const FieldGap& lhs, const FieldGap& rhs)
158 NO_THREAD_SAFETY_ANALYSIS {
159 // Sort by gap size, largest first.
160 return lhs.size > rhs.size;
161 }
162};
163typedef std::priority_queue<FieldGap, std::vector<FieldGap>, FieldGapsComparator> FieldGaps;
164
165// Adds largest aligned gaps to queue of gaps.
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800166static void AddFieldGap(uint32_t gap_start, uint32_t gap_end, FieldGaps* gaps) {
Fred Shih381e4ca2014-08-25 17:24:27 -0700167 DCHECK(gaps != nullptr);
168
169 uint32_t current_offset = gap_start;
170 while (current_offset != gap_end) {
171 size_t remaining = gap_end - current_offset;
172 if (remaining >= sizeof(uint32_t) && IsAligned<4>(current_offset)) {
173 gaps->push(FieldGap {current_offset, sizeof(uint32_t)});
174 current_offset += sizeof(uint32_t);
175 } else if (remaining >= sizeof(uint16_t) && IsAligned<2>(current_offset)) {
176 gaps->push(FieldGap {current_offset, sizeof(uint16_t)});
177 current_offset += sizeof(uint16_t);
178 } else {
179 gaps->push(FieldGap {current_offset, sizeof(uint8_t)});
180 current_offset += sizeof(uint8_t);
181 }
182 DCHECK_LE(current_offset, gap_end) << "Overran gap";
183 }
184}
185// Shuffle fields forward, making use of gaps whenever possible.
186template<int n>
Vladimir Marko76649e82014-11-10 18:32:59 +0000187static void ShuffleForward(size_t* current_field_idx,
Fred Shih381e4ca2014-08-25 17:24:27 -0700188 MemberOffset* field_offset,
Fred Shih381e4ca2014-08-25 17:24:27 -0700189 std::deque<mirror::ArtField*>* grouped_and_sorted_fields,
190 FieldGaps* gaps)
191 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
192 DCHECK(current_field_idx != nullptr);
193 DCHECK(grouped_and_sorted_fields != nullptr);
Fred Shih381e4ca2014-08-25 17:24:27 -0700194 DCHECK(gaps != nullptr);
195 DCHECK(field_offset != nullptr);
196
197 DCHECK(IsPowerOfTwo(n));
198 while (!grouped_and_sorted_fields->empty()) {
199 mirror::ArtField* field = grouped_and_sorted_fields->front();
200 Primitive::Type type = field->GetTypeAsPrimitiveType();
201 if (Primitive::ComponentSize(type) < n) {
202 break;
203 }
204 if (!IsAligned<n>(field_offset->Uint32Value())) {
205 MemberOffset old_offset = *field_offset;
206 *field_offset = MemberOffset(RoundUp(field_offset->Uint32Value(), n));
207 AddFieldGap(old_offset.Uint32Value(), field_offset->Uint32Value(), gaps);
208 }
209 CHECK(type != Primitive::kPrimNot) << PrettyField(field); // should be primitive types
210 grouped_and_sorted_fields->pop_front();
Fred Shih381e4ca2014-08-25 17:24:27 -0700211 if (!gaps->empty() && gaps->top().size >= n) {
212 FieldGap gap = gaps->top();
213 gaps->pop();
214 DCHECK(IsAligned<n>(gap.start_offset));
215 field->SetOffset(MemberOffset(gap.start_offset));
216 if (gap.size > n) {
217 AddFieldGap(gap.start_offset + n, gap.start_offset + gap.size, gaps);
218 }
219 } else {
220 DCHECK(IsAligned<n>(field_offset->Uint32Value()));
221 field->SetOffset(*field_offset);
222 *field_offset = MemberOffset(field_offset->Uint32Value() + n);
223 }
224 ++(*current_field_idx);
225 }
226}
227
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800228ClassLinker::ClassLinker(InternTable* intern_table)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700229 // dex_lock_ is recursive as it may be used in stack dumping.
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700230 : dex_lock_("ClassLinker dex lock", kDefaultMutexLevel),
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700231 dex_cache_image_class_lookup_required_(false),
232 failed_dex_cache_class_lookups_(0),
Ian Rogers98379392014-02-24 16:53:16 -0800233 class_roots_(nullptr),
234 array_iftable_(nullptr),
235 find_array_class_cache_next_victim_(0),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700236 init_done_(false),
Mathieu Chartier893263b2014-03-04 11:07:42 -0800237 log_new_dex_caches_roots_(false),
238 log_new_class_table_roots_(false),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700239 intern_table_(intern_table),
Ian Rogers98379392014-02-24 16:53:16 -0800240 portable_resolution_trampoline_(nullptr),
241 quick_resolution_trampoline_(nullptr),
242 portable_imt_conflict_trampoline_(nullptr),
Andreas Gampe2da88232014-02-27 12:26:20 -0800243 quick_imt_conflict_trampoline_(nullptr),
Vladimir Marko8a630572014-04-09 18:45:35 +0100244 quick_generic_jni_trampoline_(nullptr),
Mathieu Chartier2d721012014-11-10 11:08:06 -0800245 quick_to_interpreter_bridge_trampoline_(nullptr),
246 image_pointer_size_(sizeof(void*)) {
Ian Rogers98379392014-02-24 16:53:16 -0800247 memset(find_array_class_cache_, 0, kFindArrayCacheSize * sizeof(mirror::Class*));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700248}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700249
Alex Light64ad14d2014-08-19 14:23:13 -0700250void ClassLinker::InitWithoutImage(const std::vector<const DexFile*>& boot_class_path) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800251 VLOG(startup) << "ClassLinker::Init";
Alex Light64ad14d2014-08-19 14:23:13 -0700252 CHECK(!Runtime::Current()->GetHeap()->HasImageSpace()) << "Runtime has image. We should use it.";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700253
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700254 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700255
Elliott Hughes30646832011-10-13 16:59:46 -0700256 // java_lang_Class comes first, it's needed for AllocClass
Ian Rogers1f539342012-10-03 21:09:42 -0700257 Thread* self = Thread::Current();
Ian Rogers1d54e732013-05-02 21:10:01 -0700258 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700259 // The GC can't handle an object with a null class since we can't get the size of this object.
Mathieu Chartier1d27b342014-01-28 12:51:09 -0800260 heap->IncrementDisableMovingGC(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700261 StackHandleScope<64> hs(self); // 64 is picked arbitrarily.
262 Handle<mirror::Class> java_lang_Class(hs.NewHandle(down_cast<mirror::Class*>(
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700263 heap->AllocNonMovableObject<true>(self, nullptr,
264 mirror::Class::ClassClassSize(),
Brian Carlstromf3632832014-05-20 15:36:53 -0700265 VoidFunctor()))));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700266 CHECK(java_lang_Class.Get() != nullptr);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700267 mirror::Class::SetClassClass(java_lang_Class.Get());
268 java_lang_Class->SetClass(java_lang_Class.Get());
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700269 if (kUseBakerOrBrooksReadBarrier) {
270 java_lang_Class->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800271 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700272 java_lang_Class->SetClassSize(mirror::Class::ClassClassSize());
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700273 java_lang_Class->SetPrimitiveType(Primitive::kPrimNot);
Mathieu Chartier1d27b342014-01-28 12:51:09 -0800274 heap->DecrementDisableMovingGC(self);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800275 // AllocClass(mirror::Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700276
Elliott Hughes418d20f2011-09-22 14:00:39 -0700277 // Class[] is used for reflection support.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700278 Handle<mirror::Class> class_array_class(hs.NewHandle(
279 AllocClass(self, java_lang_Class.Get(), mirror::ObjectArray<mirror::Class>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700280 class_array_class->SetComponentType(java_lang_Class.Get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700281
Ian Rogers23435d02012-09-24 11:23:12 -0700282 // java_lang_Object comes next so that object_array_class can be created.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700283 Handle<mirror::Class> java_lang_Object(hs.NewHandle(
284 AllocClass(self, java_lang_Class.Get(), mirror::Object::ClassSize())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700285 CHECK(java_lang_Object.Get() != nullptr);
Ian Rogers23435d02012-09-24 11:23:12 -0700286 // backfill Object as the super class of Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700287 java_lang_Class->SetSuperClass(java_lang_Object.Get());
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700288 java_lang_Object->SetStatus(mirror::Class::kStatusLoaded, self);
Brian Carlstroma0808032011-07-18 00:39:23 -0700289
Ian Rogers23435d02012-09-24 11:23:12 -0700290 // Object[] next to hold class roots.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700291 Handle<mirror::Class> object_array_class(hs.NewHandle(
292 AllocClass(self, java_lang_Class.Get(), mirror::ObjectArray<mirror::Object>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700293 object_array_class->SetComponentType(java_lang_Object.Get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700294
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700295 // Setup the char (primitive) class to be used for char[].
296 Handle<mirror::Class> char_class(hs.NewHandle(
297 AllocClass(self, java_lang_Class.Get(), mirror::Class::PrimitiveClassSize())));
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700298 // The primitive char class won't be initialized by
299 // InitializePrimitiveClass until line 459, but strings (and
300 // internal char arrays) will be allocated before that and the
301 // component size, which is computed from the primitive type, needs
302 // to be set here.
303 char_class->SetPrimitiveType(Primitive::kPrimChar);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700304
Ian Rogers23435d02012-09-24 11:23:12 -0700305 // Setup the char[] class to be used for String.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700306 Handle<mirror::Class> char_array_class(hs.NewHandle(
307 AllocClass(self, java_lang_Class.Get(),
308 mirror::Array::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700309 char_array_class->SetComponentType(char_class.Get());
310 mirror::CharArray::SetArrayClass(char_array_class.Get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700311
Ian Rogers23435d02012-09-24 11:23:12 -0700312 // Setup String.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700313 Handle<mirror::Class> java_lang_String(hs.NewHandle(
314 AllocClass(self, java_lang_Class.Get(), mirror::String::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700315 mirror::String::SetClass(java_lang_String.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700316 java_lang_String->SetObjectSize(mirror::String::InstanceSize());
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700317 java_lang_String->SetStatus(mirror::Class::kStatusResolved, self);
Jesse Wilson14150742011-07-29 19:04:44 -0400318
Fred Shih4ee7a662014-07-11 09:59:27 -0700319 // Setup Reference.
320 Handle<mirror::Class> java_lang_ref_Reference(hs.NewHandle(
321 AllocClass(self, java_lang_Class.Get(), mirror::Reference::ClassSize())));
322 mirror::Reference::SetClass(java_lang_ref_Reference.Get());
323 java_lang_ref_Reference->SetObjectSize(mirror::Reference::InstanceSize());
324 java_lang_ref_Reference->SetStatus(mirror::Class::kStatusResolved, self);
325
Ian Rogers23435d02012-09-24 11:23:12 -0700326 // Create storage for root classes, save away our work so far (requires descriptors).
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700327 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class> >(
328 mirror::ObjectArray<mirror::Class>::Alloc(self, object_array_class.Get(),
329 kClassRootsMax));
330 CHECK(!class_roots_.IsNull());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700331 SetClassRoot(kJavaLangClass, java_lang_Class.Get());
332 SetClassRoot(kJavaLangObject, java_lang_Object.Get());
333 SetClassRoot(kClassArrayClass, class_array_class.Get());
334 SetClassRoot(kObjectArrayClass, object_array_class.Get());
335 SetClassRoot(kCharArrayClass, char_array_class.Get());
336 SetClassRoot(kJavaLangString, java_lang_String.Get());
Fred Shih4ee7a662014-07-11 09:59:27 -0700337 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700338
339 // Setup the primitive type classes.
Ian Rogers50b35e22012-10-04 10:09:15 -0700340 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass(self, Primitive::kPrimBoolean));
341 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass(self, Primitive::kPrimByte));
342 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass(self, Primitive::kPrimShort));
343 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass(self, Primitive::kPrimInt));
344 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass(self, Primitive::kPrimLong));
345 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass(self, Primitive::kPrimFloat));
346 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass(self, Primitive::kPrimDouble));
347 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass(self, Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348
Ian Rogers23435d02012-09-24 11:23:12 -0700349 // Create array interface entries to populate once we can load system classes.
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700350 array_iftable_ = GcRoot<mirror::IfTable>(AllocIfTable(self, 2));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700351
Ian Rogers23435d02012-09-24 11:23:12 -0700352 // Create int array type for AllocDexCache (done in AppendToBootClassPath).
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700353 Handle<mirror::Class> int_array_class(hs.NewHandle(
354 AllocClass(self, java_lang_Class.Get(), mirror::Array::ClassSize())));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700355 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700356 mirror::IntArray::SetArrayClass(int_array_class.Get());
357 SetClassRoot(kIntArrayClass, int_array_class.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700359 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700360
Ian Rogers52813c92012-10-11 11:50:38 -0700361 // Set up DexCache. This cannot be done later since AppendToBootClassPath calls AllocDexCache.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700362 Handle<mirror::Class> java_lang_DexCache(hs.NewHandle(
363 AllocClass(self, java_lang_Class.Get(), mirror::DexCache::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700364 SetClassRoot(kJavaLangDexCache, java_lang_DexCache.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700365 java_lang_DexCache->SetObjectSize(mirror::DexCache::InstanceSize());
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700366 java_lang_DexCache->SetStatus(mirror::Class::kStatusResolved, self);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700367
Brian Carlstromf3632832014-05-20 15:36:53 -0700368 // Constructor, Field, Method, and AbstractMethod are necessary so
369 // that FindClass can link members.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700370 Handle<mirror::Class> java_lang_reflect_ArtField(hs.NewHandle(
371 AllocClass(self, java_lang_Class.Get(), mirror::ArtField::ClassSize())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700372 CHECK(java_lang_reflect_ArtField.Get() != nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700373 java_lang_reflect_ArtField->SetObjectSize(mirror::ArtField::InstanceSize());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700374 SetClassRoot(kJavaLangReflectArtField, java_lang_reflect_ArtField.Get());
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700375 java_lang_reflect_ArtField->SetStatus(mirror::Class::kStatusResolved, self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700376 mirror::ArtField::SetClass(java_lang_reflect_ArtField.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700377
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700378 Handle<mirror::Class> java_lang_reflect_ArtMethod(hs.NewHandle(
379 AllocClass(self, java_lang_Class.Get(), mirror::ArtMethod::ClassSize())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700380 CHECK(java_lang_reflect_ArtMethod.Get() != nullptr);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800381 java_lang_reflect_ArtMethod->SetObjectSize(mirror::ArtMethod::InstanceSize(sizeof(void*)));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700382 SetClassRoot(kJavaLangReflectArtMethod, java_lang_reflect_ArtMethod.Get());
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700383 java_lang_reflect_ArtMethod->SetStatus(mirror::Class::kStatusResolved, self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700384 mirror::ArtMethod::SetClass(java_lang_reflect_ArtMethod.Get());
Mathieu Chartier66f19252012-09-18 08:57:04 -0700385
386 // Set up array classes for string, field, method
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700387 Handle<mirror::Class> object_array_string(hs.NewHandle(
388 AllocClass(self, java_lang_Class.Get(),
389 mirror::ObjectArray<mirror::String>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700390 object_array_string->SetComponentType(java_lang_String.Get());
391 SetClassRoot(kJavaLangStringArrayClass, object_array_string.Get());
Mathieu Chartier66f19252012-09-18 08:57:04 -0700392
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700393 Handle<mirror::Class> object_array_art_method(hs.NewHandle(
394 AllocClass(self, java_lang_Class.Get(),
395 mirror::ObjectArray<mirror::ArtMethod>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700396 object_array_art_method->SetComponentType(java_lang_reflect_ArtMethod.Get());
397 SetClassRoot(kJavaLangReflectArtMethodArrayClass, object_array_art_method.Get());
Ian Rogers4445a7e2012-10-05 17:19:13 -0700398
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700399 Handle<mirror::Class> object_array_art_field(hs.NewHandle(
400 AllocClass(self, java_lang_Class.Get(),
401 mirror::ObjectArray<mirror::ArtField>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700402 object_array_art_field->SetComponentType(java_lang_reflect_ArtField.Get());
403 SetClassRoot(kJavaLangReflectArtFieldArrayClass, object_array_art_field.Get());
Mathieu Chartier66f19252012-09-18 08:57:04 -0700404
Ian Rogers23435d02012-09-24 11:23:12 -0700405 // Setup boot_class_path_ and register class_path now that we can use AllocObjectArray to create
406 // DexCache instances. Needs to be after String, Field, Method arrays since AllocDexCache uses
407 // these roots.
Mathieu Chartier66f19252012-09-18 08:57:04 -0700408 CHECK_NE(0U, boot_class_path.size());
Mathieu Chartier2d721012014-11-10 11:08:06 -0800409 for (const DexFile* dex_file : boot_class_path) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700410 CHECK(dex_file != nullptr);
Ian Rogers7b078e82014-09-10 14:44:24 -0700411 AppendToBootClassPath(self, *dex_file);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700412 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700413
414 // now we can use FindSystemClass
415
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700416 // run char class through InitializePrimitiveClass to finish init
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700417 InitializePrimitiveClass(char_class.Get(), Primitive::kPrimChar);
418 SetClassRoot(kPrimitiveChar, char_class.Get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700419
Jeff Hao88474b42013-10-23 16:24:40 -0700420 // Create runtime resolution and imt conflict methods. Also setup the default imt.
421 Runtime* runtime = Runtime::Current();
422 runtime->SetResolutionMethod(runtime->CreateResolutionMethod());
423 runtime->SetImtConflictMethod(runtime->CreateImtConflictMethod());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700424 runtime->SetImtUnimplementedMethod(runtime->CreateImtConflictMethod());
Jeff Hao88474b42013-10-23 16:24:40 -0700425 runtime->SetDefaultImt(runtime->CreateDefaultImt(this));
426
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700427 // Set up GenericJNI entrypoint. That is mainly a hack for common_compiler_test.h so that
428 // we do not need friend classes or a publicly exposed setter.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700429 quick_generic_jni_trampoline_ = GetQuickGenericJniStub();
Alex Light64ad14d2014-08-19 14:23:13 -0700430 if (!runtime->IsCompiler()) {
431 // We need to set up the generic trampolines since we don't have an image.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700432 quick_resolution_trampoline_ = GetQuickResolutionStub();
433 quick_imt_conflict_trampoline_ = GetQuickImtConflictStub();
434 quick_to_interpreter_bridge_trampoline_ = GetQuickToInterpreterBridge();
Alex Light64ad14d2014-08-19 14:23:13 -0700435 }
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700436
Mathieu Chartier66f19252012-09-18 08:57:04 -0700437 // Object, String and DexCache need to be rerun through FindSystemClass to finish init
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700438 java_lang_Object->SetStatus(mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800439 mirror::Class* Object_class = FindSystemClass(self, "Ljava/lang/Object;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700440 CHECK_EQ(java_lang_Object.Get(), Object_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700441 CHECK_EQ(java_lang_Object->GetObjectSize(), mirror::Object::InstanceSize());
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700442 java_lang_String->SetStatus(mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800443 mirror::Class* String_class = FindSystemClass(self, "Ljava/lang/String;");
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700444 std::ostringstream os1, os2;
445 java_lang_String->DumpClass(os1, mirror::Class::kDumpClassFullDetail);
446 String_class->DumpClass(os2, mirror::Class::kDumpClassFullDetail);
447 CHECK_EQ(java_lang_String.Get(), String_class) << os1.str() << "\n\n" << os2.str();
448 CHECK_EQ(java_lang_String->GetObjectSize(), mirror::String::InstanceSize());
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700449 java_lang_DexCache->SetStatus(mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800450 mirror::Class* DexCache_class = FindSystemClass(self, "Ljava/lang/DexCache;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700451 CHECK_EQ(java_lang_String.Get(), String_class);
452 CHECK_EQ(java_lang_DexCache.Get(), DexCache_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700453 CHECK_EQ(java_lang_DexCache->GetObjectSize(), mirror::DexCache::InstanceSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700454
Ian Rogers23435d02012-09-24 11:23:12 -0700455 // Setup the primitive array type classes - can't be done until Object has a vtable.
Ian Rogers98379392014-02-24 16:53:16 -0800456 SetClassRoot(kBooleanArrayClass, FindSystemClass(self, "[Z"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800457 mirror::BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700458
Ian Rogers98379392014-02-24 16:53:16 -0800459 SetClassRoot(kByteArrayClass, FindSystemClass(self, "[B"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800460 mirror::ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700461
Ian Rogers98379392014-02-24 16:53:16 -0800462 mirror::Class* found_char_array_class = FindSystemClass(self, "[C");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700463 CHECK_EQ(char_array_class.Get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700464
Ian Rogers98379392014-02-24 16:53:16 -0800465 SetClassRoot(kShortArrayClass, FindSystemClass(self, "[S"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800466 mirror::ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700467
Ian Rogers98379392014-02-24 16:53:16 -0800468 mirror::Class* found_int_array_class = FindSystemClass(self, "[I");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700469 CHECK_EQ(int_array_class.Get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700470
Ian Rogers98379392014-02-24 16:53:16 -0800471 SetClassRoot(kLongArrayClass, FindSystemClass(self, "[J"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800472 mirror::LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700473
Ian Rogers98379392014-02-24 16:53:16 -0800474 SetClassRoot(kFloatArrayClass, FindSystemClass(self, "[F"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800475 mirror::FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700476
Ian Rogers98379392014-02-24 16:53:16 -0800477 SetClassRoot(kDoubleArrayClass, FindSystemClass(self, "[D"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800478 mirror::DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700479
Ian Rogers98379392014-02-24 16:53:16 -0800480 mirror::Class* found_class_array_class = FindSystemClass(self, "[Ljava/lang/Class;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700481 CHECK_EQ(class_array_class.Get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700482
Ian Rogers98379392014-02-24 16:53:16 -0800483 mirror::Class* found_object_array_class = FindSystemClass(self, "[Ljava/lang/Object;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700484 CHECK_EQ(object_array_class.Get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700485
Ian Rogers23435d02012-09-24 11:23:12 -0700486 // Setup the single, global copy of "iftable".
Ian Rogers98379392014-02-24 16:53:16 -0800487 mirror::Class* java_lang_Cloneable = FindSystemClass(self, "Ljava/lang/Cloneable;");
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700488 CHECK(java_lang_Cloneable != nullptr);
Ian Rogers98379392014-02-24 16:53:16 -0800489 mirror::Class* java_io_Serializable = FindSystemClass(self, "Ljava/io/Serializable;");
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700490 CHECK(java_io_Serializable != nullptr);
Ian Rogers23435d02012-09-24 11:23:12 -0700491 // We assume that Cloneable/Serializable don't have superinterfaces -- normally we'd have to
492 // crawl up and explicitly list all of the supers as well.
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700493 {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700494 mirror::IfTable* array_iftable = array_iftable_.Read();
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700495 array_iftable->SetInterface(0, java_lang_Cloneable);
496 array_iftable->SetInterface(1, java_io_Serializable);
497 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700498
Ian Rogers23435d02012-09-24 11:23:12 -0700499 // Sanity check Class[] and Object[]'s interfaces.
Mathieu Chartierf8322842014-05-16 10:59:25 -0700500 CHECK_EQ(java_lang_Cloneable, mirror::Class::GetDirectInterface(self, class_array_class, 0));
501 CHECK_EQ(java_io_Serializable, mirror::Class::GetDirectInterface(self, class_array_class, 1));
502 CHECK_EQ(java_lang_Cloneable, mirror::Class::GetDirectInterface(self, object_array_class, 0));
503 CHECK_EQ(java_io_Serializable, mirror::Class::GetDirectInterface(self, object_array_class, 1));
Brian Carlstromea46f952013-07-30 01:26:50 -0700504 // Run Class, ArtField, and ArtMethod through FindSystemClass. This initializes their
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700505 // dex_cache_ fields and register them in class_table_.
Ian Rogers98379392014-02-24 16:53:16 -0800506 mirror::Class* Class_class = FindSystemClass(self, "Ljava/lang/Class;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700507 CHECK_EQ(java_lang_Class.Get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700508
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700509 java_lang_reflect_ArtMethod->SetStatus(mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800510 mirror::Class* Art_method_class = FindSystemClass(self, "Ljava/lang/reflect/ArtMethod;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700511 CHECK_EQ(java_lang_reflect_ArtMethod.Get(), Art_method_class);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700512
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700513 java_lang_reflect_ArtField->SetStatus(mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800514 mirror::Class* Art_field_class = FindSystemClass(self, "Ljava/lang/reflect/ArtField;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700515 CHECK_EQ(java_lang_reflect_ArtField.Get(), Art_field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700516
Brian Carlstromf3632832014-05-20 15:36:53 -0700517 mirror::Class* String_array_class =
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700518 FindSystemClass(self, GetClassRootDescriptor(kJavaLangStringArrayClass));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700519 CHECK_EQ(object_array_string.Get(), String_array_class);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700520
Brian Carlstromea46f952013-07-30 01:26:50 -0700521 mirror::Class* Art_method_array_class =
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700522 FindSystemClass(self, GetClassRootDescriptor(kJavaLangReflectArtMethodArrayClass));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700523 CHECK_EQ(object_array_art_method.Get(), Art_method_array_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700524
Brian Carlstromea46f952013-07-30 01:26:50 -0700525 mirror::Class* Art_field_array_class =
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700526 FindSystemClass(self, GetClassRootDescriptor(kJavaLangReflectArtFieldArrayClass));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700527 CHECK_EQ(object_array_art_field.Get(), Art_field_array_class);
Ian Rogers4445a7e2012-10-05 17:19:13 -0700528
Ian Rogers23435d02012-09-24 11:23:12 -0700529 // End of special init trickery, subsequent classes may be loaded via FindSystemClass.
Ian Rogers466bb252011-10-14 03:29:56 -0700530
Ian Rogers23435d02012-09-24 11:23:12 -0700531 // Create java.lang.reflect.Proxy root.
Ian Rogers98379392014-02-24 16:53:16 -0800532 mirror::Class* java_lang_reflect_Proxy = FindSystemClass(self, "Ljava/lang/reflect/Proxy;");
Ian Rogers466bb252011-10-14 03:29:56 -0700533 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
534
Brian Carlstrom1f870082011-08-23 16:02:11 -0700535 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Fred Shih4ee7a662014-07-11 09:59:27 -0700536 // finish initializing Reference class
537 java_lang_ref_Reference->SetStatus(mirror::Class::kStatusNotReady, self);
538 mirror::Class* Reference_class = FindSystemClass(self, "Ljava/lang/ref/Reference;");
539 CHECK_EQ(java_lang_ref_Reference.Get(), Reference_class);
540 CHECK_EQ(java_lang_ref_Reference->GetObjectSize(), mirror::Reference::InstanceSize());
541 CHECK_EQ(java_lang_ref_Reference->GetClassSize(), mirror::Reference::ClassSize());
Brian Carlstromf3632832014-05-20 15:36:53 -0700542 mirror::Class* java_lang_ref_FinalizerReference =
543 FindSystemClass(self, "Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700544 java_lang_ref_FinalizerReference->SetAccessFlags(
545 java_lang_ref_FinalizerReference->GetAccessFlags() |
546 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstromf3632832014-05-20 15:36:53 -0700547 mirror::Class* java_lang_ref_PhantomReference =
548 FindSystemClass(self, "Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700549 java_lang_ref_PhantomReference->SetAccessFlags(
550 java_lang_ref_PhantomReference->GetAccessFlags() |
551 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstromf3632832014-05-20 15:36:53 -0700552 mirror::Class* java_lang_ref_SoftReference =
553 FindSystemClass(self, "Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700554 java_lang_ref_SoftReference->SetAccessFlags(
555 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstromf3632832014-05-20 15:36:53 -0700556 mirror::Class* java_lang_ref_WeakReference =
557 FindSystemClass(self, "Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700558 java_lang_ref_WeakReference->SetAccessFlags(
559 java_lang_ref_WeakReference->GetAccessFlags() |
560 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700561
Ian Rogers23435d02012-09-24 11:23:12 -0700562 // Setup the ClassLoader, verifying the object_size_.
Ian Rogers98379392014-02-24 16:53:16 -0800563 mirror::Class* java_lang_ClassLoader = FindSystemClass(self, "Ljava/lang/ClassLoader;");
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700564 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), mirror::ClassLoader::InstanceSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700565 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
566
jeffhao8cd6dda2012-02-22 10:15:34 -0800567 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
Ian Rogers23435d02012-09-24 11:23:12 -0700568 // java.lang.StackTraceElement as a convenience.
Ian Rogers98379392014-02-24 16:53:16 -0800569 SetClassRoot(kJavaLangThrowable, FindSystemClass(self, "Ljava/lang/Throwable;"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800570 mirror::Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Brian Carlstromf3632832014-05-20 15:36:53 -0700571 SetClassRoot(kJavaLangClassNotFoundException,
572 FindSystemClass(self, "Ljava/lang/ClassNotFoundException;"));
Ian Rogers98379392014-02-24 16:53:16 -0800573 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass(self, "Ljava/lang/StackTraceElement;"));
Brian Carlstromf3632832014-05-20 15:36:53 -0700574 SetClassRoot(kJavaLangStackTraceElementArrayClass,
575 FindSystemClass(self, "[Ljava/lang/StackTraceElement;"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800576 mirror::StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700577
Ian Rogers98379392014-02-24 16:53:16 -0800578 FinishInit(self);
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700579
Brian Carlstroma004aa92012-02-08 18:05:09 -0800580 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700581}
582
Ian Rogers98379392014-02-24 16:53:16 -0800583void ClassLinker::FinishInit(Thread* self) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800584 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700585
586 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700587 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700588 // as the types of the field can't be resolved prior to the runtime being
589 // fully initialized
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800590 mirror::Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700591 mirror::Class* java_lang_ref_FinalizerReference =
Ian Rogers98379392014-02-24 16:53:16 -0800592 FindSystemClass(self, "Ljava/lang/ref/FinalizerReference;");
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800593
Brian Carlstromea46f952013-07-30 01:26:50 -0700594 mirror::ArtField* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700595 CHECK_STREQ(pendingNext->GetName(), "pendingNext");
596 CHECK_STREQ(pendingNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700597
Brian Carlstromea46f952013-07-30 01:26:50 -0700598 mirror::ArtField* queue = java_lang_ref_Reference->GetInstanceField(1);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700599 CHECK_STREQ(queue->GetName(), "queue");
600 CHECK_STREQ(queue->GetTypeDescriptor(), "Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700601
Brian Carlstromea46f952013-07-30 01:26:50 -0700602 mirror::ArtField* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700603 CHECK_STREQ(queueNext->GetName(), "queueNext");
604 CHECK_STREQ(queueNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700605
Brian Carlstromea46f952013-07-30 01:26:50 -0700606 mirror::ArtField* referent = java_lang_ref_Reference->GetInstanceField(3);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700607 CHECK_STREQ(referent->GetName(), "referent");
608 CHECK_STREQ(referent->GetTypeDescriptor(), "Ljava/lang/Object;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700609
Brian Carlstromea46f952013-07-30 01:26:50 -0700610 mirror::ArtField* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700611 CHECK_STREQ(zombie->GetName(), "zombie");
612 CHECK_STREQ(zombie->GetTypeDescriptor(), "Ljava/lang/Object;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700613
Brian Carlstroma663ea52011-08-19 23:33:41 -0700614 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700615 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700616 ClassRoot class_root = static_cast<ClassRoot>(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800617 mirror::Class* klass = GetClassRoot(class_root);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700618 CHECK(klass != nullptr);
619 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != nullptr);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700620 // note SetClassRoot does additional validation.
621 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700622 }
623
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700624 CHECK(!array_iftable_.IsNull());
Elliott Hughes92f14b22011-10-06 12:29:54 -0700625
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700626 // disable the slow paths in FindClass and CreatePrimitiveClass now
627 // that Object, Class, and Object[] are setup
628 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700629
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800630 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700631}
632
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700633void ClassLinker::RunRootClinits() {
634 Thread* self = Thread::Current();
635 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800636 mirror::Class* c = GetClassRoot(ClassRoot(i));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700637 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700638 StackHandleScope<1> hs(self);
639 Handle<mirror::Class> h_class(hs.NewHandle(GetClassRoot(ClassRoot(i))));
Ian Rogers7b078e82014-09-10 14:44:24 -0700640 EnsureInitialized(self, h_class, true, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700641 self->AssertNoPendingException();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700642 }
643 }
644}
645
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700646bool ClassLinker::GenerateOatFile(const char* dex_filename,
Brian Carlstromd601af82012-01-06 10:15:19 -0800647 int oat_fd,
Vladimir Marko60836d52014-01-16 15:53:38 +0000648 const char* oat_cache_filename,
649 std::string* error_msg) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700650 Locks::mutator_lock_->AssertNotHeld(Thread::Current()); // Avoid starving GC.
Tsu Chiang Chuang12e6d742014-05-22 10:22:25 -0700651 std::string dex2oat(Runtime::Current()->GetCompilerExecutable());
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800652
Ian Rogers1d54e732013-05-02 21:10:01 -0700653 gc::Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom6449c622014-02-10 23:48:36 -0800654 std::string boot_image_option("--boot-image=");
Alex Light64ad14d2014-08-19 14:23:13 -0700655 if (heap->GetImageSpace() == nullptr) {
656 // TODO If we get a dex2dex compiler working we could maybe use that, OTOH since we are likely
657 // out of space anyway it might not matter.
658 *error_msg = StringPrintf("Cannot create oat file for '%s' because we are running "
659 "without an image.", dex_filename);
660 return false;
661 }
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -0700662 boot_image_option += heap->GetImageSpace()->GetImageLocation();
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800663
Brian Carlstrom6449c622014-02-10 23:48:36 -0800664 std::string dex_file_option("--dex-file=");
665 dex_file_option += dex_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800666
Brian Carlstrom6449c622014-02-10 23:48:36 -0800667 std::string oat_fd_option("--oat-fd=");
668 StringAppendF(&oat_fd_option, "%d", oat_fd);
Brian Carlstromd601af82012-01-06 10:15:19 -0800669
Brian Carlstrom6449c622014-02-10 23:48:36 -0800670 std::string oat_location_option("--oat-location=");
671 oat_location_option += oat_cache_filename;
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800672
Brian Carlstrom6449c622014-02-10 23:48:36 -0800673 std::vector<std::string> argv;
674 argv.push_back(dex2oat);
675 argv.push_back("--runtime-arg");
Brian Carlstrom6449c622014-02-10 23:48:36 -0800676 argv.push_back("-classpath");
677 argv.push_back("--runtime-arg");
Brian Carlstrom35d8b8e2014-02-25 10:51:11 -0800678 argv.push_back(Runtime::Current()->GetClassPathString());
Dave Allisonb373e092014-02-20 16:06:36 -0800679
Ian Rogers8afeb852014-04-02 14:55:49 -0700680 Runtime::Current()->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv);
Dave Allisonb373e092014-02-20 16:06:36 -0800681
Jeff Hao4a200f52014-04-01 14:58:49 -0700682 if (!Runtime::Current()->IsVerificationEnabled()) {
683 argv.push_back("--compiler-filter=verify-none");
684 }
685
Alex Light6e183f22014-07-18 14:57:04 -0700686 if (Runtime::Current()->MustRelocateIfPossible()) {
687 argv.push_back("--runtime-arg");
688 argv.push_back("-Xrelocate");
689 } else {
690 argv.push_back("--runtime-arg");
691 argv.push_back("-Xnorelocate");
692 }
693
Brian Carlstrom6449c622014-02-10 23:48:36 -0800694 if (!kIsTargetBuild) {
695 argv.push_back("--host");
buzbeea024a062013-07-31 10:47:37 -0700696 }
Ian Rogers8afeb852014-04-02 14:55:49 -0700697
Brian Carlstrom6449c622014-02-10 23:48:36 -0800698 argv.push_back(boot_image_option);
699 argv.push_back(dex_file_option);
700 argv.push_back(oat_fd_option);
701 argv.push_back(oat_location_option);
702 const std::vector<std::string>& compiler_options = Runtime::Current()->GetCompilerOptions();
Brian Carlstrom2ec65202014-03-03 15:16:37 -0800703 for (size_t i = 0; i < compiler_options.size(); ++i) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800704 argv.push_back(compiler_options[i].c_str());
jeffhao262bf462011-10-20 18:36:32 -0700705 }
Brian Carlstrom6449c622014-02-10 23:48:36 -0800706
707 return Exec(argv, error_msg);
jeffhao262bf462011-10-20 18:36:32 -0700708}
709
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700710const OatFile* ClassLinker::RegisterOatFile(const OatFile* oat_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700711 WriterMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800712 if (kIsDebugBuild) {
713 for (size_t i = 0; i < oat_files_.size(); ++i) {
714 CHECK_NE(oat_file, oat_files_[i]) << oat_file->GetLocation();
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700715 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800716 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700717 VLOG(class_linker) << "Registering " << oat_file->GetLocation();
718 oat_files_.push_back(oat_file);
719 return oat_file;
Brian Carlstrom866c8622012-01-06 16:35:13 -0800720}
721
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700722OatFile& ClassLinker::GetImageOatFile(gc::space::ImageSpace* space) {
723 VLOG(startup) << "ClassLinker::GetImageOatFile entering";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700724 OatFile* oat_file = space->ReleaseOatFile();
725 CHECK_EQ(RegisterOatFile(oat_file), oat_file);
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700726 VLOG(startup) << "ClassLinker::GetImageOatFile exiting";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700727 return *oat_file;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700728}
729
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100730const OatFile::OatDexFile* ClassLinker::FindOpenedOatDexFileForDexFile(const DexFile& dex_file) {
Brian Carlstrom08cbf662013-12-10 16:52:57 -0800731 const char* dex_location = dex_file.GetLocation().c_str();
732 uint32_t dex_location_checksum = dex_file.GetLocationChecksum();
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100733 return FindOpenedOatDexFile(nullptr, dex_location, &dex_location_checksum);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800734}
735
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100736const OatFile::OatDexFile* ClassLinker::FindOpenedOatDexFile(const char* oat_location,
737 const char* dex_location,
738 const uint32_t* dex_location_checksum) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700739 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100740 for (const OatFile* oat_file : oat_files_) {
741 DCHECK(oat_file != nullptr);
Andreas Gampe833a4852014-05-21 18:46:59 -0700742
743 if (oat_location != nullptr) {
744 if (oat_file->GetLocation() != oat_location) {
745 continue;
746 }
747 }
748
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700749 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
Brian Carlstrom08cbf662013-12-10 16:52:57 -0800750 dex_location_checksum,
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700751 false);
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100752 if (oat_dex_file != nullptr) {
753 return oat_dex_file;
Brian Carlstromae826982011-11-09 01:33:42 -0800754 }
755 }
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100756 return nullptr;
Brian Carlstromae826982011-11-09 01:33:42 -0800757}
758
Calin Juravle621962a2014-09-02 15:53:55 +0100759
760// Loads all multi dex files from the given oat file returning true on success.
761//
762// Parameters:
763// oat_file - the oat file to load from
764// dex_location - the dex location used to generate the oat file
765// dex_location_checksum - the checksum of the dex_location (may be null for pre-opted files)
766// generated - whether or not the oat_file existed before or was just (re)generated
767// error_msgs - any error messages will be appended here
768// dex_files - the loaded dex_files will be appended here (only if the loading succeeds)
769static bool LoadMultiDexFilesFromOatFile(const OatFile* oat_file,
770 const char* dex_location,
771 const uint32_t* dex_location_checksum,
Andreas Gampe833a4852014-05-21 18:46:59 -0700772 bool generated,
773 std::vector<std::string>* error_msgs,
774 std::vector<const DexFile*>* dex_files) {
775 if (oat_file == nullptr) {
776 return false;
777 }
778
779 size_t old_size = dex_files->size(); // To rollback on error.
780
781 bool success = true;
782 for (size_t i = 0; success; ++i) {
Calin Juravle4e1d5792014-07-15 23:56:47 +0100783 std::string next_name_str = DexFile::GetMultiDexClassesDexName(i, dex_location);
Andreas Gampe833a4852014-05-21 18:46:59 -0700784 const char* next_name = next_name_str.c_str();
785
Calin Juravle621962a2014-09-02 15:53:55 +0100786 uint32_t next_location_checksum;
787 uint32_t* next_location_checksum_pointer = &next_location_checksum;
Andreas Gampe833a4852014-05-21 18:46:59 -0700788 std::string error_msg;
Calin Juravle621962a2014-09-02 15:53:55 +0100789 if ((i == 0) && (strcmp(next_name, dex_location) == 0)) {
790 // When i=0 the multidex name should be the same as the location name. We already have the
791 // checksum it so we don't need to recompute it.
792 if (dex_location_checksum == nullptr) {
793 next_location_checksum_pointer = nullptr;
794 } else {
795 next_location_checksum = *dex_location_checksum;
796 }
797 } else if (!DexFile::GetChecksum(next_name, next_location_checksum_pointer, &error_msg)) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700798 DCHECK_EQ(false, i == 0 && generated);
Calin Juravle621962a2014-09-02 15:53:55 +0100799 next_location_checksum_pointer = nullptr;
Andreas Gampe833a4852014-05-21 18:46:59 -0700800 }
801
802 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(next_name, nullptr, false);
803
804 if (oat_dex_file == nullptr) {
805 if (i == 0 && generated) {
Andreas Gampe833a4852014-05-21 18:46:59 -0700806 error_msg = StringPrintf("\nFailed to find dex file '%s' (checksum 0x%x) in generated out "
Calin Juravle621962a2014-09-02 15:53:55 +0100807 " file'%s'", dex_location, next_location_checksum,
Andreas Gampe833a4852014-05-21 18:46:59 -0700808 oat_file->GetLocation().c_str());
809 error_msgs->push_back(error_msg);
810 }
811 break; // Not found, done.
812 }
813
814 // Checksum test. Test must succeed when generated.
815 success = !generated;
Calin Juravle621962a2014-09-02 15:53:55 +0100816 if (next_location_checksum_pointer != nullptr) {
817 success = next_location_checksum == oat_dex_file->GetDexFileLocationChecksum();
Andreas Gampe833a4852014-05-21 18:46:59 -0700818 }
819
820 if (success) {
821 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
822 if (dex_file == nullptr) {
823 success = false;
824 error_msgs->push_back(error_msg);
825 } else {
826 dex_files->push_back(dex_file);
827 }
828 }
829
830 // When we generated the file, we expect success, or something is terribly wrong.
831 CHECK_EQ(false, generated && !success)
832 << "dex_location=" << next_name << " oat_location=" << oat_file->GetLocation().c_str()
Calin Juravle621962a2014-09-02 15:53:55 +0100833 << std::hex << " dex_location_checksum=" << next_location_checksum
Andreas Gampe833a4852014-05-21 18:46:59 -0700834 << " OatDexFile::GetLocationChecksum()=" << oat_dex_file->GetDexFileLocationChecksum();
835 }
836
837 if (dex_files->size() == old_size) {
838 success = false; // We did not even find classes.dex
839 }
840
841 if (success) {
842 return true;
843 } else {
844 // Free all the dex files we have loaded.
845 auto it = dex_files->begin() + old_size;
846 auto it_end = dex_files->end();
847 for (; it != it_end; it++) {
848 delete *it;
849 }
850 dex_files->erase(dex_files->begin() + old_size, it_end);
851
852 return false;
853 }
854}
855
856// Multidex files make it possible that some, but not all, dex files can be broken/outdated. This
857// complicates the loading process, as we should not use an iterative loading process, because that
858// would register the oat file and dex files that come before the broken one. Instead, check all
859// multidex ahead of time.
860bool ClassLinker::OpenDexFilesFromOat(const char* dex_location, const char* oat_location,
861 std::vector<std::string>* error_msgs,
862 std::vector<const DexFile*>* dex_files) {
863 // 1) Check whether we have an open oat file.
864 // This requires a dex checksum, use the "primary" one.
865 uint32_t dex_location_checksum;
866 uint32_t* dex_location_checksum_pointer = &dex_location_checksum;
867 bool have_checksum = true;
868 std::string checksum_error_msg;
869 if (!DexFile::GetChecksum(dex_location, dex_location_checksum_pointer, &checksum_error_msg)) {
Calin Juravle621962a2014-09-02 15:53:55 +0100870 // This happens for pre-opted files since the corresponding dex files are no longer on disk.
Andreas Gampe833a4852014-05-21 18:46:59 -0700871 dex_location_checksum_pointer = nullptr;
872 have_checksum = false;
873 }
874
875 bool needs_registering = false;
876
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100877 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFile(oat_location, dex_location,
878 dex_location_checksum_pointer);
879 std::unique_ptr<const OatFile> open_oat_file(
880 oat_dex_file != nullptr ? oat_dex_file->GetOatFile() : nullptr);
Andreas Gampe833a4852014-05-21 18:46:59 -0700881
882 // 2) If we do not have an open one, maybe there's one on disk already.
883
884 // In case the oat file is not open, we play a locking game here so
885 // that if two different processes race to load and register or generate
886 // (or worse, one tries to open a partial generated file) we will be okay.
887 // This is actually common with apps that use DexClassLoader to work
888 // around the dex method reference limit and that have a background
889 // service running in a separate process.
890 ScopedFlock scoped_flock;
891
892 if (open_oat_file.get() == nullptr) {
893 if (oat_location != nullptr) {
894 // Can only do this if we have a checksum, else error.
895 if (!have_checksum) {
896 error_msgs->push_back(checksum_error_msg);
897 return false;
898 }
899
900 std::string error_msg;
901
902 // We are loading or creating one in the future. Time to set up the file lock.
903 if (!scoped_flock.Init(oat_location, &error_msg)) {
904 error_msgs->push_back(error_msg);
905 return false;
906 }
907
Alex Lighta59dd802014-07-02 16:28:08 -0700908 // TODO Caller specifically asks for this oat_location. We should honor it. Probably?
Andreas Gampe833a4852014-05-21 18:46:59 -0700909 open_oat_file.reset(FindOatFileInOatLocationForDexFile(dex_location, dex_location_checksum,
910 oat_location, &error_msg));
911
912 if (open_oat_file.get() == nullptr) {
913 std::string compound_msg = StringPrintf("Failed to find dex file '%s' in oat location '%s': %s",
914 dex_location, oat_location, error_msg.c_str());
915 VLOG(class_linker) << compound_msg;
916 error_msgs->push_back(compound_msg);
917 }
918 } else {
919 // TODO: What to lock here?
Calin Juravlec54aea72014-07-16 14:45:03 +0100920 bool obsolete_file_cleanup_failed;
Andreas Gampe833a4852014-05-21 18:46:59 -0700921 open_oat_file.reset(FindOatFileContainingDexFileFromDexLocation(dex_location,
922 dex_location_checksum_pointer,
Calin Juravlec54aea72014-07-16 14:45:03 +0100923 kRuntimeISA, error_msgs,
924 &obsolete_file_cleanup_failed));
925 // There's no point in going forward and eventually try to regenerate the
926 // file if we couldn't remove the obsolete one. Mostly likely we will fail
927 // with the same error when trying to write the new file.
Calin Juravlec54aea72014-07-16 14:45:03 +0100928 // TODO: should we maybe do this only when we get permission issues? (i.e. EACCESS).
929 if (obsolete_file_cleanup_failed) {
930 return false;
931 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700932 }
933 needs_registering = true;
934 }
935
936 // 3) If we have an oat file, check all contained multidex files for our dex_location.
937 // Note: LoadMultiDexFilesFromOatFile will check for nullptr in the first argument.
Calin Juravle621962a2014-09-02 15:53:55 +0100938 bool success = LoadMultiDexFilesFromOatFile(open_oat_file.get(), dex_location,
939 dex_location_checksum_pointer,
940 false, error_msgs, dex_files);
Andreas Gampe833a4852014-05-21 18:46:59 -0700941 if (success) {
942 const OatFile* oat_file = open_oat_file.release(); // Avoid deleting it.
943 if (needs_registering) {
944 // We opened the oat file, so we must register it.
945 RegisterOatFile(oat_file);
946 }
Alex Light9dcc4572014-08-14 14:16:26 -0700947 // If the file isn't executable we failed patchoat but did manage to get the dex files.
948 return oat_file->IsExecutable();
Andreas Gampe833a4852014-05-21 18:46:59 -0700949 } else {
950 if (needs_registering) {
951 // We opened it, delete it.
952 open_oat_file.reset();
953 } else {
954 open_oat_file.release(); // Do not delete open oat files.
955 }
956 }
957
958 // 4) If it's not the case (either no oat file or mismatches), regenerate and load.
959
960 // Need a checksum, fail else.
961 if (!have_checksum) {
962 error_msgs->push_back(checksum_error_msg);
963 return false;
964 }
965
966 // Look in cache location if no oat_location is given.
967 std::string cache_location;
968 if (oat_location == nullptr) {
969 // Use the dalvik cache.
970 const std::string dalvik_cache(GetDalvikCacheOrDie(GetInstructionSetString(kRuntimeISA)));
971 cache_location = GetDalvikCacheFilenameOrDie(dex_location, dalvik_cache.c_str());
972 oat_location = cache_location.c_str();
973 }
974
Alex Light64ad14d2014-08-19 14:23:13 -0700975 bool has_flock = true;
Andreas Gampe833a4852014-05-21 18:46:59 -0700976 // Definitely need to lock now.
977 if (!scoped_flock.HasFile()) {
978 std::string error_msg;
979 if (!scoped_flock.Init(oat_location, &error_msg)) {
980 error_msgs->push_back(error_msg);
Alex Light64ad14d2014-08-19 14:23:13 -0700981 has_flock = false;
Andreas Gampe833a4852014-05-21 18:46:59 -0700982 }
983 }
984
Alex Light64ad14d2014-08-19 14:23:13 -0700985 if (Runtime::Current()->IsDex2OatEnabled() && has_flock && scoped_flock.HasFile()) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +0100986 // Create the oat file.
987 open_oat_file.reset(CreateOatFileForDexLocation(dex_location, scoped_flock.GetFile()->Fd(),
988 oat_location, error_msgs));
989 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700990
991 // Failed, bail.
992 if (open_oat_file.get() == nullptr) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +0100993 std::string error_msg;
994 // dex2oat was disabled or crashed. Add the dex file in the list of dex_files to make progress.
995 DexFile::Open(dex_location, dex_location, &error_msg, dex_files);
996 error_msgs->push_back(error_msg);
Andreas Gampe833a4852014-05-21 18:46:59 -0700997 return false;
998 }
999
1000 // Try to load again, but stronger checks.
Vladimir Markoaa4497d2014-09-05 14:01:17 +01001001 success = LoadMultiDexFilesFromOatFile(open_oat_file.get(), dex_location,
1002 dex_location_checksum_pointer,
Calin Juravle621962a2014-09-02 15:53:55 +01001003 true, error_msgs, dex_files);
Andreas Gampe833a4852014-05-21 18:46:59 -07001004 if (success) {
1005 RegisterOatFile(open_oat_file.release());
1006 return true;
1007 } else {
1008 return false;
1009 }
1010}
1011
1012const OatFile* ClassLinker::FindOatFileInOatLocationForDexFile(const char* dex_location,
1013 uint32_t dex_location_checksum,
1014 const char* oat_location,
1015 std::string* error_msg) {
Igor Murashkin46774762014-10-22 11:37:02 -07001016 std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_location, oat_location, nullptr, nullptr,
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001017 !Runtime::Current()->IsCompiler(),
1018 error_msg));
1019 if (oat_file.get() == nullptr) {
1020 *error_msg = StringPrintf("Failed to find existing oat file at %s: %s", oat_location,
1021 error_msg->c_str());
1022 return nullptr;
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001023 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001024 Runtime* runtime = Runtime::Current();
Alex Light7adb7ac2014-08-29 10:28:25 -07001025 const gc::space::ImageSpace* image_space = runtime->GetHeap()->GetImageSpace();
1026 if (image_space != nullptr) {
1027 const ImageHeader& image_header = image_space->GetImageHeader();
1028 uint32_t expected_image_oat_checksum = image_header.GetOatChecksum();
1029 uint32_t actual_image_oat_checksum = oat_file->GetOatHeader().GetImageFileLocationOatChecksum();
1030 if (expected_image_oat_checksum != actual_image_oat_checksum) {
1031 *error_msg = StringPrintf("Failed to find oat file at '%s' with expected image oat checksum of "
1032 "0x%x, found 0x%x", oat_location, expected_image_oat_checksum,
1033 actual_image_oat_checksum);
1034 return nullptr;
1035 }
1036
1037 uintptr_t expected_image_oat_offset = reinterpret_cast<uintptr_t>(image_header.GetOatDataBegin());
1038 uint32_t actual_image_oat_offset = oat_file->GetOatHeader().GetImageFileLocationOatDataBegin();
1039 if (expected_image_oat_offset != actual_image_oat_offset) {
1040 *error_msg = StringPrintf("Failed to find oat file at '%s' with expected image oat offset %"
1041 PRIuPTR ", found %ud", oat_location, expected_image_oat_offset,
1042 actual_image_oat_offset);
1043 return nullptr;
1044 }
1045 int32_t expected_patch_delta = image_header.GetPatchDelta();
1046 int32_t actual_patch_delta = oat_file->GetOatHeader().GetImagePatchDelta();
1047 if (expected_patch_delta != actual_patch_delta) {
1048 *error_msg = StringPrintf("Failed to find oat file at '%s' with expected patch delta %d, "
1049 " found %d", oat_location, expected_patch_delta, actual_patch_delta);
1050 return nullptr;
1051 }
Brian Carlstrom28db0122012-10-18 16:20:41 -07001052 }
Brian Carlstrom7571e8b2013-08-12 17:04:14 -07001053
Vladimir Marko64e7ac02014-05-01 15:43:47 +01001054 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
1055 &dex_location_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001056 if (oat_dex_file == nullptr) {
1057 *error_msg = StringPrintf("Failed to find oat file at '%s' containing '%s'", oat_location,
1058 dex_location);
1059 return nullptr;
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001060 }
Brian Carlstrom7571e8b2013-08-12 17:04:14 -07001061 uint32_t expected_dex_checksum = dex_location_checksum;
1062 uint32_t actual_dex_checksum = oat_dex_file->GetDexFileLocationChecksum();
1063 if (expected_dex_checksum != actual_dex_checksum) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001064 *error_msg = StringPrintf("Failed to find oat file at '%s' with expected dex checksum of 0x%x, "
1065 "found 0x%x", oat_location, expected_dex_checksum,
1066 actual_dex_checksum);
1067 return nullptr;
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001068 }
Andreas Gampe833a4852014-05-21 18:46:59 -07001069 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(error_msg));
1070 if (dex_file.get() != nullptr) {
1071 return oat_file.release();
1072 } else {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001073 return nullptr;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -07001074 }
Andreas Gampe833a4852014-05-21 18:46:59 -07001075}
Brian Carlstrom7571e8b2013-08-12 17:04:14 -07001076
Andreas Gampe833a4852014-05-21 18:46:59 -07001077const OatFile* ClassLinker::CreateOatFileForDexLocation(const char* dex_location,
1078 int fd, const char* oat_location,
1079 std::vector<std::string>* error_msgs) {
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001080 // Generate the output oat file for the dex file
Brian Carlstrom7571e8b2013-08-12 17:04:14 -07001081 VLOG(class_linker) << "Generating oat file " << oat_location << " for " << dex_location;
Andreas Gampe833a4852014-05-21 18:46:59 -07001082 std::string error_msg;
1083 if (!GenerateOatFile(dex_location, fd, oat_location, &error_msg)) {
Andreas Gampe329d1882014-04-08 10:32:19 -07001084 CHECK(!error_msg.empty());
1085 error_msgs->push_back(error_msg);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001086 return nullptr;
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001087 }
Igor Murashkin46774762014-10-22 11:37:02 -07001088 std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_location, oat_location, nullptr, nullptr,
Vladimir Marko64e7ac02014-05-01 15:43:47 +01001089 !Runtime::Current()->IsCompiler(),
1090 &error_msg));
1091 if (oat_file.get() == nullptr) {
Andreas Gampe833a4852014-05-21 18:46:59 -07001092 std::string compound_msg = StringPrintf("\nFailed to open generated oat file '%s': %s",
1093 oat_location, error_msg.c_str());
Andreas Gampe329d1882014-04-08 10:32:19 -07001094 error_msgs->push_back(compound_msg);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001095 return nullptr;
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001096 }
Andreas Gampe833a4852014-05-21 18:46:59 -07001097
1098 return oat_file.release();
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001099}
1100
Alex Light6e183f22014-07-18 14:57:04 -07001101bool ClassLinker::VerifyOatImageChecksum(const OatFile* oat_file,
1102 const InstructionSet instruction_set) {
1103 Runtime* runtime = Runtime::Current();
1104 const gc::space::ImageSpace* image_space = runtime->GetHeap()->GetImageSpace();
Alex Light64ad14d2014-08-19 14:23:13 -07001105 if (image_space == nullptr) {
1106 return false;
1107 }
Alex Light6e183f22014-07-18 14:57:04 -07001108 uint32_t image_oat_checksum = 0;
1109 if (instruction_set == kRuntimeISA) {
1110 const ImageHeader& image_header = image_space->GetImageHeader();
1111 image_oat_checksum = image_header.GetOatChecksum();
1112 } else {
1113 std::unique_ptr<ImageHeader> image_header(gc::space::ImageSpace::ReadImageHeaderOrDie(
1114 image_space->GetImageLocation().c_str(), instruction_set));
1115 image_oat_checksum = image_header->GetOatChecksum();
1116 }
1117 return oat_file->GetOatHeader().GetImageFileLocationOatChecksum() == image_oat_checksum;
1118}
1119
1120bool ClassLinker::VerifyOatChecksums(const OatFile* oat_file,
1121 const InstructionSet instruction_set,
1122 std::string* error_msg) {
Brian Carlstromafe25512012-06-27 17:02:58 -07001123 Runtime* runtime = Runtime::Current();
Narayan Kamath52f84882014-05-02 10:10:39 +01001124 const gc::space::ImageSpace* image_space = runtime->GetHeap()->GetImageSpace();
Alex Light64ad14d2014-08-19 14:23:13 -07001125 if (image_space == nullptr) {
1126 *error_msg = "No image space for verification against";
1127 return false;
1128 }
Narayan Kamath52f84882014-05-02 10:10:39 +01001129
1130 // If the requested instruction set is the same as the current runtime,
1131 // we can use the checksums directly. If it isn't, we'll have to read the
1132 // image header from the image for the right instruction set.
1133 uint32_t image_oat_checksum = 0;
1134 uintptr_t image_oat_data_begin = 0;
Alex Lighta59dd802014-07-02 16:28:08 -07001135 int32_t image_patch_delta = 0;
Brian Carlstrom31d8f522014-09-29 11:22:54 -07001136 if (instruction_set == runtime->GetInstructionSet()) {
Narayan Kamath52f84882014-05-02 10:10:39 +01001137 const ImageHeader& image_header = image_space->GetImageHeader();
1138 image_oat_checksum = image_header.GetOatChecksum();
1139 image_oat_data_begin = reinterpret_cast<uintptr_t>(image_header.GetOatDataBegin());
Alex Lighta59dd802014-07-02 16:28:08 -07001140 image_patch_delta = image_header.GetPatchDelta();
Narayan Kamath52f84882014-05-02 10:10:39 +01001141 } else {
Ian Rogers700a4022014-05-19 16:49:03 -07001142 std::unique_ptr<ImageHeader> image_header(gc::space::ImageSpace::ReadImageHeaderOrDie(
Narayan Kamath52f84882014-05-02 10:10:39 +01001143 image_space->GetImageLocation().c_str(), instruction_set));
1144 image_oat_checksum = image_header->GetOatChecksum();
1145 image_oat_data_begin = reinterpret_cast<uintptr_t>(image_header->GetOatDataBegin());
Alex Lighta59dd802014-07-02 16:28:08 -07001146 image_patch_delta = image_header->GetPatchDelta();
Narayan Kamath52f84882014-05-02 10:10:39 +01001147 }
1148 const OatHeader& oat_header = oat_file->GetOatHeader();
Igor Murashkin96e83932014-10-29 19:45:42 -07001149 bool ret = (oat_header.GetImageFileLocationOatChecksum() == image_oat_checksum);
1150
1151 // If the oat file is PIC, it doesn't care if/how image was relocated. Ignore these checks.
1152 if (!oat_file->IsPic()) {
1153 ret = ret && (oat_header.GetImagePatchDelta() == image_patch_delta)
1154 && (oat_header.GetImageFileLocationOatDataBegin() == image_oat_data_begin);
1155 }
Alex Light6e183f22014-07-18 14:57:04 -07001156 if (!ret) {
1157 *error_msg = StringPrintf("oat file '%s' mismatch (0x%x, %d, %d) with (0x%x, %" PRIdPTR ", %d)",
1158 oat_file->GetLocation().c_str(),
1159 oat_file->GetOatHeader().GetImageFileLocationOatChecksum(),
1160 oat_file->GetOatHeader().GetImageFileLocationOatDataBegin(),
1161 oat_file->GetOatHeader().GetImagePatchDelta(),
1162 image_oat_checksum, image_oat_data_begin, image_patch_delta);
1163 }
1164 return ret;
1165}
1166
1167bool ClassLinker::VerifyOatAndDexFileChecksums(const OatFile* oat_file,
1168 const char* dex_location,
1169 uint32_t dex_location_checksum,
1170 const InstructionSet instruction_set,
1171 std::string* error_msg) {
1172 if (!VerifyOatChecksums(oat_file, instruction_set, error_msg)) {
1173 return false;
1174 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -07001175
Brian Carlstromf3632832014-05-20 15:36:53 -07001176 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
1177 &dex_location_checksum);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001178 if (oat_dex_file == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001179 *error_msg = StringPrintf("oat file '%s' does not contain contents for '%s' with checksum 0x%x",
1180 oat_file->GetLocation().c_str(), dex_location, dex_location_checksum);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001181 for (const OatFile::OatDexFile* oat_dex_file_in : oat_file->GetOatDexFiles()) {
Vladimir Markoaa4497d2014-09-05 14:01:17 +01001182 *error_msg += StringPrintf("\noat file '%s' contains contents for '%s' with checksum 0x%x",
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001183 oat_file->GetLocation().c_str(),
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001184 oat_dex_file_in->GetDexFileLocation().c_str(),
1185 oat_dex_file_in->GetDexFileLocationChecksum());
Brian Carlstromafe25512012-06-27 17:02:58 -07001186 }
1187 return false;
1188 }
Brian Carlstrom46b8a622012-06-19 23:13:22 -07001189
Calin Juravlea8c55ae2014-09-05 16:14:19 +01001190 DCHECK_EQ(dex_location_checksum, oat_dex_file->GetDexFileLocationChecksum());
Alex Light6e183f22014-07-18 14:57:04 -07001191 return true;
Brian Carlstromafe25512012-06-27 17:02:58 -07001192}
1193
Alex Lighta59dd802014-07-02 16:28:08 -07001194bool ClassLinker::VerifyOatWithDexFile(const OatFile* oat_file,
1195 const char* dex_location,
Calin Juravle621962a2014-09-02 15:53:55 +01001196 const uint32_t* dex_location_checksum,
Alex Lighta59dd802014-07-02 16:28:08 -07001197 std::string* error_msg) {
1198 CHECK(oat_file != nullptr);
1199 CHECK(dex_location != nullptr);
Andreas Gampe833a4852014-05-21 18:46:59 -07001200 std::unique_ptr<const DexFile> dex_file;
Calin Juravle621962a2014-09-02 15:53:55 +01001201 if (dex_location_checksum == nullptr) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001202 // If no classes.dex found in dex_location, it has been stripped or is corrupt, assume oat is
1203 // up-to-date. This is the common case in user builds for jar's and apk's in the /system
1204 // directory.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001205 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, nullptr);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001206 if (oat_dex_file == nullptr) {
1207 *error_msg = StringPrintf("Dex checksum mismatch for location '%s' and failed to find oat "
Alex Lighta59dd802014-07-02 16:28:08 -07001208 "dex file '%s': %s", oat_file->GetLocation().c_str(), dex_location,
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001209 error_msg->c_str());
Alex Lighta59dd802014-07-02 16:28:08 -07001210 return false;
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001211 }
Andreas Gampe833a4852014-05-21 18:46:59 -07001212 dex_file.reset(oat_dex_file->OpenDexFile(error_msg));
Vladimir Marko64e7ac02014-05-01 15:43:47 +01001213 } else {
Calin Juravle621962a2014-09-02 15:53:55 +01001214 bool verified = VerifyOatAndDexFileChecksums(oat_file, dex_location, *dex_location_checksum,
Alex Light6e183f22014-07-18 14:57:04 -07001215 kRuntimeISA, error_msg);
Vladimir Marko64e7ac02014-05-01 15:43:47 +01001216 if (!verified) {
Alex Lighta59dd802014-07-02 16:28:08 -07001217 return false;
Vladimir Marko64e7ac02014-05-01 15:43:47 +01001218 }
Andreas Gampe833a4852014-05-21 18:46:59 -07001219 dex_file.reset(oat_file->GetOatDexFile(dex_location,
Calin Juravle621962a2014-09-02 15:53:55 +01001220 dex_location_checksum)->OpenDexFile(error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001221 }
Alex Lighta59dd802014-07-02 16:28:08 -07001222 return dex_file.get() != nullptr;
Brian Carlstrom46b8a622012-06-19 23:13:22 -07001223}
1224
Andreas Gampe833a4852014-05-21 18:46:59 -07001225const OatFile* ClassLinker::FindOatFileContainingDexFileFromDexLocation(
Brian Carlstromf3632832014-05-20 15:36:53 -07001226 const char* dex_location,
Vladimir Markoaa4497d2014-09-05 14:01:17 +01001227 const uint32_t* dex_location_checksum,
Brian Carlstromf3632832014-05-20 15:36:53 -07001228 InstructionSet isa,
Calin Juravlec54aea72014-07-16 14:45:03 +01001229 std::vector<std::string>* error_msgs,
1230 bool* obsolete_file_cleanup_failed) {
1231 *obsolete_file_cleanup_failed = false;
Alex Lighta59dd802014-07-02 16:28:08 -07001232 bool already_opened = false;
1233 std::string dex_location_str(dex_location);
1234 std::unique_ptr<const OatFile> oat_file(OpenOatFileFromDexLocation(dex_location_str, isa,
1235 &already_opened,
1236 obsolete_file_cleanup_failed,
1237 error_msgs));
Andreas Gampe329d1882014-04-08 10:32:19 -07001238 std::string error_msg;
Alex Lighta59dd802014-07-02 16:28:08 -07001239 if (oat_file.get() == nullptr) {
1240 error_msgs->push_back(StringPrintf("Failed to open oat file from dex location '%s'",
1241 dex_location));
1242 return nullptr;
Alex Light9dcc4572014-08-14 14:16:26 -07001243 } else if (oat_file->IsExecutable() &&
Calin Juravle621962a2014-09-02 15:53:55 +01001244 !VerifyOatWithDexFile(oat_file.get(), dex_location,
1245 dex_location_checksum, &error_msg)) {
Alex Lighta59dd802014-07-02 16:28:08 -07001246 error_msgs->push_back(StringPrintf("Failed to verify oat file '%s' found for dex location "
1247 "'%s': %s", oat_file->GetLocation().c_str(), dex_location,
Andreas Gampe329d1882014-04-08 10:32:19 -07001248 error_msg.c_str()));
Brian Carlstrom08cbf662013-12-10 16:52:57 -08001249 return nullptr;
Alex Light9dcc4572014-08-14 14:16:26 -07001250 } else if (!oat_file->IsExecutable() &&
Alex Light84d76052014-08-22 17:49:35 -07001251 Runtime::Current()->GetHeap()->HasImageSpace() &&
Alex Light9dcc4572014-08-14 14:16:26 -07001252 !VerifyOatImageChecksum(oat_file.get(), isa)) {
1253 error_msgs->push_back(StringPrintf("Failed to verify non-executable oat file '%s' found for "
1254 "dex location '%s'. Image checksum incorrect.",
1255 oat_file->GetLocation().c_str(), dex_location));
1256 return nullptr;
Alex Lighta59dd802014-07-02 16:28:08 -07001257 } else {
1258 return oat_file.release();
Brian Carlstrom08cbf662013-12-10 16:52:57 -08001259 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001260}
1261
Brian Carlstromae826982011-11-09 01:33:42 -08001262const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001263 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001264 for (size_t i = 0; i < oat_files_.size(); i++) {
1265 const OatFile* oat_file = oat_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001266 DCHECK(oat_file != nullptr);
Brian Carlstromae826982011-11-09 01:33:42 -08001267 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001268 return oat_file;
1269 }
1270 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001271 return nullptr;
Brian Carlstromfad71432011-10-16 20:25:10 -07001272}
Brian Carlstromaded5f72011-10-07 17:15:04 -07001273
Alex Lighta59dd802014-07-02 16:28:08 -07001274const OatFile* ClassLinker::OpenOatFileFromDexLocation(const std::string& dex_location,
1275 InstructionSet isa,
1276 bool *already_opened,
1277 bool *obsolete_file_cleanup_failed,
1278 std::vector<std::string>* error_msgs) {
1279 // Find out if we've already opened the file
1280 const OatFile* ret = nullptr;
1281 std::string odex_filename(DexFilenameToOdexFilename(dex_location, isa));
1282 ret = FindOpenedOatFileFromOatLocation(odex_filename);
1283 if (ret != nullptr) {
1284 *already_opened = true;
1285 return ret;
1286 }
1287
1288 std::string dalvik_cache;
1289 bool have_android_data = false;
1290 bool have_dalvik_cache = false;
Andreas Gampe3c13a792014-09-18 20:56:04 -07001291 bool is_global_cache = false;
Alex Lighta59dd802014-07-02 16:28:08 -07001292 GetDalvikCache(GetInstructionSetString(kRuntimeISA), false, &dalvik_cache,
Andreas Gampe3c13a792014-09-18 20:56:04 -07001293 &have_android_data, &have_dalvik_cache, &is_global_cache);
Alex Lighta59dd802014-07-02 16:28:08 -07001294 std::string cache_filename;
1295 if (have_dalvik_cache) {
1296 cache_filename = GetDalvikCacheFilenameOrDie(dex_location.c_str(), dalvik_cache.c_str());
1297 ret = FindOpenedOatFileFromOatLocation(cache_filename);
1298 if (ret != nullptr) {
1299 *already_opened = true;
1300 return ret;
1301 }
1302 } else {
1303 // If we need to relocate we should just place odex back where it started.
1304 cache_filename = odex_filename;
1305 }
1306
1307 ret = nullptr;
1308
1309 // We know that neither the odex nor the cache'd version is already in use, if it even exists.
1310 //
1311 // Now we do the following:
1312 // 1) Try and open the odex version
1313 // 2) If present, checksum-verified & relocated correctly return it
1314 // 3) Close the odex version to free up its address space.
1315 // 4) Try and open the cache version
1316 // 5) If present, checksum-verified & relocated correctly return it
1317 // 6) Close the cache version to free up its address space.
1318 // 7) If we should relocate:
1319 // a) If we have opened and checksum-verified the odex version relocate it to
1320 // 'cache_filename' and return it
1321 // b) If we have opened and checksum-verified the cache version relocate it in place and return
1322 // it. This should not happen often (I think only the run-test's will hit this case).
1323 // 8) If the cache-version was present we should delete it since it must be obsolete if we get to
1324 // this point.
1325 // 9) Return nullptr
1326
1327 *already_opened = false;
1328 const Runtime* runtime = Runtime::Current();
1329 CHECK(runtime != nullptr);
1330 bool executable = !runtime->IsCompiler();
1331
1332 std::string odex_error_msg;
1333 bool should_patch_system = false;
1334 bool odex_checksum_verified = false;
Alex Light84d76052014-08-22 17:49:35 -07001335 bool have_system_odex = false;
Alex Lighta59dd802014-07-02 16:28:08 -07001336 {
Andreas Gampe7ba64962014-10-23 11:37:40 -07001337 // There is a high probability that both these oat files map similar/the same address
Alex Lighta59dd802014-07-02 16:28:08 -07001338 // spaces so we must scope them like this so they each gets its turn.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001339 std::unique_ptr<OatFile> odex_oat_file(OatFile::Open(odex_filename, odex_filename, nullptr,
Igor Murashkin46774762014-10-22 11:37:02 -07001340 nullptr,
Alex Lighta59dd802014-07-02 16:28:08 -07001341 executable, &odex_error_msg));
Andreas Gampe7ba64962014-10-23 11:37:40 -07001342 if (odex_oat_file.get() != nullptr && CheckOatFile(runtime, odex_oat_file.get(), isa,
Alex Lighta59dd802014-07-02 16:28:08 -07001343 &odex_checksum_verified,
1344 &odex_error_msg)) {
Alex Lighta59dd802014-07-02 16:28:08 -07001345 return odex_oat_file.release();
Alex Light84d76052014-08-22 17:49:35 -07001346 } else {
1347 if (odex_checksum_verified) {
1348 // We can just relocate
1349 should_patch_system = true;
1350 odex_error_msg = "Image Patches are incorrect";
1351 }
1352 if (odex_oat_file.get() != nullptr) {
1353 have_system_odex = true;
1354 }
Alex Lighta59dd802014-07-02 16:28:08 -07001355 }
1356 }
1357
Alex Lighta59dd802014-07-02 16:28:08 -07001358 std::string cache_error_msg;
1359 bool should_patch_cache = false;
1360 bool cache_checksum_verified = false;
1361 if (have_dalvik_cache) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001362 std::unique_ptr<OatFile> cache_oat_file(OatFile::Open(cache_filename, cache_filename, nullptr,
Igor Murashkin46774762014-10-22 11:37:02 -07001363 nullptr,
Alex Lighta59dd802014-07-02 16:28:08 -07001364 executable, &cache_error_msg));
Andreas Gampe7ba64962014-10-23 11:37:40 -07001365 if (cache_oat_file.get() != nullptr && CheckOatFile(runtime, cache_oat_file.get(), isa,
Alex Lighta59dd802014-07-02 16:28:08 -07001366 &cache_checksum_verified,
1367 &cache_error_msg)) {
Alex Lighta59dd802014-07-02 16:28:08 -07001368 return cache_oat_file.release();
1369 } else if (cache_checksum_verified) {
1370 // We can just relocate
1371 should_patch_cache = true;
1372 cache_error_msg = "Image Patches are incorrect";
1373 }
1374 } else if (have_android_data) {
1375 // dalvik_cache does not exist but android data does. This means we should be able to create
1376 // it, so we should try.
1377 GetDalvikCacheOrDie(GetInstructionSetString(kRuntimeISA), true);
1378 }
1379
1380 ret = nullptr;
1381 std::string error_msg;
1382 if (runtime->CanRelocate()) {
1383 // Run relocation
Alex Light64ad14d2014-08-19 14:23:13 -07001384 gc::space::ImageSpace* space = Runtime::Current()->GetHeap()->GetImageSpace();
1385 if (space != nullptr) {
1386 const std::string& image_location = space->GetImageLocation();
1387 if (odex_checksum_verified && should_patch_system) {
1388 ret = PatchAndRetrieveOat(odex_filename, cache_filename, image_location, isa, &error_msg);
1389 } else if (cache_checksum_verified && should_patch_cache) {
1390 CHECK(have_dalvik_cache);
1391 ret = PatchAndRetrieveOat(cache_filename, cache_filename, image_location, isa, &error_msg);
1392 }
Alex Light84d76052014-08-22 17:49:35 -07001393 } else if (have_system_odex) {
1394 ret = GetInterpretedOnlyOat(odex_filename, isa, &error_msg);
Alex Lighta59dd802014-07-02 16:28:08 -07001395 }
1396 }
1397 if (ret == nullptr && have_dalvik_cache && OS::FileExists(cache_filename.c_str())) {
1398 // implicitly: were able to fine where the cached version is but we were unable to use it,
1399 // either as a destination for relocation or to open a file. We should delete it if it is
1400 // there.
1401 if (TEMP_FAILURE_RETRY(unlink(cache_filename.c_str())) != 0) {
1402 std::string rm_error_msg = StringPrintf("Failed to remove obsolete file from %s when "
1403 "searching for dex file %s: %s",
1404 cache_filename.c_str(), dex_location.c_str(),
1405 strerror(errno));
1406 error_msgs->push_back(rm_error_msg);
1407 VLOG(class_linker) << rm_error_msg;
1408 // Let the caller know that we couldn't remove the obsolete file.
1409 // This is a good indication that further writes may fail as well.
1410 *obsolete_file_cleanup_failed = true;
1411 }
1412 }
1413 if (ret == nullptr) {
1414 VLOG(class_linker) << error_msg;
1415 error_msgs->push_back(error_msg);
1416 std::string relocation_msg;
1417 if (runtime->CanRelocate()) {
1418 relocation_msg = StringPrintf(" and relocation failed");
1419 }
1420 if (have_dalvik_cache && cache_checksum_verified) {
1421 error_msg = StringPrintf("Failed to open oat file from %s (error %s) or %s "
1422 "(error %s)%s.", odex_filename.c_str(), odex_error_msg.c_str(),
1423 cache_filename.c_str(), cache_error_msg.c_str(),
1424 relocation_msg.c_str());
1425 } else {
1426 error_msg = StringPrintf("Failed to open oat file from %s (error %s) (no "
1427 "dalvik_cache availible)%s.", odex_filename.c_str(),
1428 odex_error_msg.c_str(), relocation_msg.c_str());
1429 }
1430 VLOG(class_linker) << error_msg;
1431 error_msgs->push_back(error_msg);
1432 }
1433 return ret;
1434}
1435
Alex Light9dcc4572014-08-14 14:16:26 -07001436const OatFile* ClassLinker::GetInterpretedOnlyOat(const std::string& oat_path,
1437 InstructionSet isa,
1438 std::string* error_msg) {
1439 // We open it non-executable
Igor Murashkin46774762014-10-22 11:37:02 -07001440 std::unique_ptr<OatFile> output(OatFile::Open(oat_path, oat_path, nullptr, nullptr, false, error_msg));
Alex Light9dcc4572014-08-14 14:16:26 -07001441 if (output.get() == nullptr) {
1442 return nullptr;
1443 }
Alex Light84d76052014-08-22 17:49:35 -07001444 if (!Runtime::Current()->GetHeap()->HasImageSpace() ||
1445 VerifyOatImageChecksum(output.get(), isa)) {
Alex Light9dcc4572014-08-14 14:16:26 -07001446 return output.release();
1447 } else {
1448 *error_msg = StringPrintf("Could not use oat file '%s', image checksum failed to verify.",
1449 oat_path.c_str());
1450 return nullptr;
1451 }
1452}
1453
Alex Lighta59dd802014-07-02 16:28:08 -07001454const OatFile* ClassLinker::PatchAndRetrieveOat(const std::string& input_oat,
1455 const std::string& output_oat,
1456 const std::string& image_location,
1457 InstructionSet isa,
1458 std::string* error_msg) {
Andreas Gampe7ba64962014-10-23 11:37:40 -07001459 Runtime* runtime = Runtime::Current();
1460 DCHECK(runtime != nullptr);
1461 if (!runtime->GetHeap()->HasImageSpace()) {
Alex Light64ad14d2014-08-19 14:23:13 -07001462 // We don't have an image space so there is no point in trying to patchoat.
1463 LOG(WARNING) << "Patching of oat file '" << input_oat << "' not attempted because we are "
1464 << "running without an image. Attempting to use oat file for interpretation.";
1465 return GetInterpretedOnlyOat(input_oat, isa, error_msg);
1466 }
Andreas Gampe7ba64962014-10-23 11:37:40 -07001467 if (!runtime->IsDex2OatEnabled()) {
Alex Light9dcc4572014-08-14 14:16:26 -07001468 // We don't have dex2oat so we can assume we don't have patchoat either. We should just use the
1469 // input_oat but make sure we only do interpretation on it's dex files.
1470 LOG(WARNING) << "Patching of oat file '" << input_oat << "' not attempted due to dex2oat being "
1471 << "disabled. Attempting to use oat file for interpretation";
1472 return GetInterpretedOnlyOat(input_oat, isa, error_msg);
1473 }
Alex Lighta59dd802014-07-02 16:28:08 -07001474 Locks::mutator_lock_->AssertNotHeld(Thread::Current()); // Avoid starving GC.
Andreas Gampe7ba64962014-10-23 11:37:40 -07001475 std::string patchoat(runtime->GetPatchoatExecutable());
Alex Lighta59dd802014-07-02 16:28:08 -07001476
1477 std::string isa_arg("--instruction-set=");
1478 isa_arg += GetInstructionSetString(isa);
1479 std::string input_oat_filename_arg("--input-oat-file=");
1480 input_oat_filename_arg += input_oat;
1481 std::string output_oat_filename_arg("--output-oat-file=");
1482 output_oat_filename_arg += output_oat;
1483 std::string patched_image_arg("--patched-image-location=");
1484 patched_image_arg += image_location;
1485
1486 std::vector<std::string> argv;
1487 argv.push_back(patchoat);
1488 argv.push_back(isa_arg);
1489 argv.push_back(input_oat_filename_arg);
1490 argv.push_back(output_oat_filename_arg);
1491 argv.push_back(patched_image_arg);
1492
1493 std::string command_line(Join(argv, ' '));
1494 LOG(INFO) << "Relocate Oat File: " << command_line;
1495 bool success = Exec(argv, error_msg);
1496 if (success) {
Igor Murashkin46774762014-10-22 11:37:02 -07001497 std::unique_ptr<OatFile> output(OatFile::Open(output_oat, output_oat, nullptr, nullptr,
Andreas Gampe7ba64962014-10-23 11:37:40 -07001498 !runtime->IsCompiler(), error_msg));
Alex Lighta59dd802014-07-02 16:28:08 -07001499 bool checksum_verified = false;
Andreas Gampe7ba64962014-10-23 11:37:40 -07001500 if (output.get() != nullptr && CheckOatFile(runtime, output.get(), isa, &checksum_verified,
1501 error_msg)) {
Alex Lighta59dd802014-07-02 16:28:08 -07001502 return output.release();
1503 } else if (output.get() != nullptr) {
1504 *error_msg = StringPrintf("Patching of oat file '%s' succeeded "
1505 "but output file '%s' failed verifcation: %s",
1506 input_oat.c_str(), output_oat.c_str(), error_msg->c_str());
1507 } else {
1508 *error_msg = StringPrintf("Patching of oat file '%s' succeeded "
1509 "but was unable to open output file '%s': %s",
1510 input_oat.c_str(), output_oat.c_str(), error_msg->c_str());
1511 }
Andreas Gampe7ba64962014-10-23 11:37:40 -07001512 } else if (!runtime->IsCompiler()) {
Alex Light9dcc4572014-08-14 14:16:26 -07001513 // patchoat failed which means we probably don't have enough room to place the output oat file,
1514 // instead of failing we should just run the interpreter from the dex files in the input oat.
1515 LOG(WARNING) << "Patching of oat file '" << input_oat << "' failed. Attempting to use oat file "
1516 << "for interpretation. patchoat failure was: " << *error_msg;
1517 return GetInterpretedOnlyOat(input_oat, isa, error_msg);
Alex Lighta59dd802014-07-02 16:28:08 -07001518 } else {
1519 *error_msg = StringPrintf("Patching of oat file '%s to '%s' "
1520 "failed: %s", input_oat.c_str(), output_oat.c_str(),
1521 error_msg->c_str());
1522 }
1523 return nullptr;
1524}
1525
Andreas Gampe7ba64962014-10-23 11:37:40 -07001526bool ClassLinker::CheckOatFile(const Runtime* runtime, const OatFile* oat_file, InstructionSet isa,
Alex Lighta59dd802014-07-02 16:28:08 -07001527 bool* checksum_verified,
1528 std::string* error_msg) {
Alex Lighta59dd802014-07-02 16:28:08 -07001529 const gc::space::ImageSpace* image_space = runtime->GetHeap()->GetImageSpace();
Alex Light64ad14d2014-08-19 14:23:13 -07001530 if (image_space == nullptr) {
1531 *error_msg = "No image space present";
1532 return false;
1533 }
Vladimir Marko30c2e1b2014-09-08 09:55:29 +01001534 uint32_t real_image_checksum;
1535 void* real_image_oat_offset;
1536 int32_t real_patch_delta;
1537 if (isa == runtime->GetInstructionSet()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001538 const ImageHeader& image_header = image_space->GetImageHeader();
1539 real_image_checksum = image_header.GetOatChecksum();
1540 real_image_oat_offset = image_header.GetOatDataBegin();
1541 real_patch_delta = image_header.GetPatchDelta();
1542 } else {
1543 std::unique_ptr<ImageHeader> image_header(gc::space::ImageSpace::ReadImageHeaderOrDie(
1544 image_space->GetImageLocation().c_str(), isa));
1545 real_image_checksum = image_header->GetOatChecksum();
1546 real_image_oat_offset = image_header->GetOatDataBegin();
1547 real_patch_delta = image_header->GetPatchDelta();
1548 }
1549
1550 const OatHeader& oat_header = oat_file->GetOatHeader();
Vladimir Marko30c2e1b2014-09-08 09:55:29 +01001551 std::string compound_msg;
Alex Lighta59dd802014-07-02 16:28:08 -07001552
1553 uint32_t oat_image_checksum = oat_header.GetImageFileLocationOatChecksum();
1554 *checksum_verified = oat_image_checksum == real_image_checksum;
1555 if (!*checksum_verified) {
Vladimir Marko30c2e1b2014-09-08 09:55:29 +01001556 StringAppendF(&compound_msg, " Oat Image Checksum Incorrect (expected 0x%x, received 0x%x)",
1557 real_image_checksum, oat_image_checksum);
Alex Lighta59dd802014-07-02 16:28:08 -07001558 }
1559
Andreas Gampe7ba64962014-10-23 11:37:40 -07001560 bool offset_verified;
1561 bool patch_delta_verified;
Alex Lighta59dd802014-07-02 16:28:08 -07001562
Andreas Gampe7ba64962014-10-23 11:37:40 -07001563 if (!oat_file->IsPic()) {
1564 // If an oat file is not PIC, we need to check that the image is at the expected location and
1565 // patched in the same way.
1566 void* oat_image_oat_offset =
1567 reinterpret_cast<void*>(oat_header.GetImageFileLocationOatDataBegin());
1568 offset_verified = oat_image_oat_offset == real_image_oat_offset;
1569 if (!offset_verified) {
1570 StringAppendF(&compound_msg, " Oat Image oat offset incorrect (expected 0x%p, received 0x%p)",
1571 real_image_oat_offset, oat_image_oat_offset);
1572 }
1573
1574 int32_t oat_patch_delta = oat_header.GetImagePatchDelta();
1575 patch_delta_verified = oat_patch_delta == real_patch_delta;
1576 if (!patch_delta_verified) {
1577 StringAppendF(&compound_msg, " Oat image patch delta incorrect (expected 0x%x, "
1578 "received 0x%x)", real_patch_delta, oat_patch_delta);
1579 }
1580 } else {
1581 // If an oat file is PIC, we ignore offset and patching delta.
1582 offset_verified = true;
1583 patch_delta_verified = true;
Alex Lighta59dd802014-07-02 16:28:08 -07001584 }
1585
1586 bool ret = (*checksum_verified && offset_verified && patch_delta_verified);
Vladimir Marko30c2e1b2014-09-08 09:55:29 +01001587 if (!ret) {
1588 *error_msg = "Oat file failed to verify:" + compound_msg;
Alex Lighta59dd802014-07-02 16:28:08 -07001589 }
1590 return ret;
1591}
1592
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001593const OatFile* ClassLinker::FindOatFileFromOatLocation(const std::string& oat_location,
1594 std::string* error_msg) {
jeffhaof6174e82012-01-31 16:14:17 -08001595 const OatFile* oat_file = FindOpenedOatFileFromOatLocation(oat_location);
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001596 if (oat_file != nullptr) {
jeffhaof6174e82012-01-31 16:14:17 -08001597 return oat_file;
1598 }
1599
Igor Murashkin46774762014-10-22 11:37:02 -07001600 return OatFile::Open(oat_location, oat_location, nullptr, nullptr, !Runtime::Current()->IsCompiler(),
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001601 error_msg);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001602}
1603
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -08001604void ClassLinker::InitFromImageInterpretOnlyCallback(mirror::Object* obj, void* arg) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001605 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001606 DCHECK(obj != nullptr);
1607 DCHECK(class_linker != nullptr);
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -08001608 size_t pointer_size = class_linker->image_pointer_size_;
Ian Rogers848871b2013-08-05 10:56:33 -07001609
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001610 if (obj->IsArtMethod()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001611 mirror::ArtMethod* method = obj->AsArtMethod();
Ian Rogers848871b2013-08-05 10:56:33 -07001612 if (!method->IsNative()) {
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -08001613 method->SetEntryPointFromInterpreterPtrSize(artInterpreterToInterpreterBridge, pointer_size);
Ian Rogers848871b2013-08-05 10:56:33 -07001614 if (method != Runtime::Current()->GetResolutionMethod()) {
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -08001615 method->SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(),
1616 pointer_size);
1617 method->SetEntryPointFromPortableCompiledCodePtrSize(GetPortableToInterpreterBridge(),
1618 pointer_size);
Ian Rogers848871b2013-08-05 10:56:33 -07001619 }
1620 }
1621 }
1622}
1623
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001624void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001625 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -07001626 CHECK(!init_done_);
1627
Mathieu Chartier590fee92013-09-13 13:46:47 -07001628 Thread* self = Thread::Current();
Ian Rogers1d54e732013-05-02 21:10:01 -07001629 gc::Heap* heap = Runtime::Current()->GetHeap();
1630 gc::space::ImageSpace* space = heap->GetImageSpace();
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001631 dex_cache_image_class_lookup_required_ = true;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001632 CHECK(space != nullptr);
Brian Carlstrom56d947f2013-07-15 13:14:23 -07001633 OatFile& oat_file = GetImageOatFile(space);
1634 CHECK_EQ(oat_file.GetOatHeader().GetImageFileLocationOatChecksum(), 0U);
1635 CHECK_EQ(oat_file.GetOatHeader().GetImageFileLocationOatDataBegin(), 0U);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001636 const char* image_file_location = oat_file.GetOatHeader().
1637 GetStoreValueByKey(OatHeader::kImageLocationKey);
1638 CHECK(image_file_location == nullptr || *image_file_location == 0);
Brian Carlstrom56d947f2013-07-15 13:14:23 -07001639 portable_resolution_trampoline_ = oat_file.GetOatHeader().GetPortableResolutionTrampoline();
1640 quick_resolution_trampoline_ = oat_file.GetOatHeader().GetQuickResolutionTrampoline();
Jeff Hao88474b42013-10-23 16:24:40 -07001641 portable_imt_conflict_trampoline_ = oat_file.GetOatHeader().GetPortableImtConflictTrampoline();
1642 quick_imt_conflict_trampoline_ = oat_file.GetOatHeader().GetQuickImtConflictTrampoline();
Andreas Gampe2da88232014-02-27 12:26:20 -08001643 quick_generic_jni_trampoline_ = oat_file.GetOatHeader().GetQuickGenericJniTrampoline();
Vladimir Marko8a630572014-04-09 18:45:35 +01001644 quick_to_interpreter_bridge_trampoline_ = oat_file.GetOatHeader().GetQuickToInterpreterBridge();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001645 mirror::Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
1646 mirror::ObjectArray<mirror::DexCache>* dex_caches =
1647 dex_caches_object->AsObjectArray<mirror::DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001648
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001649 StackHandleScope<1> hs(self);
1650 Handle<mirror::ObjectArray<mirror::Class>> class_roots(hs.NewHandle(
1651 space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)->
1652 AsObjectArray<mirror::Class>()));
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001653 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(class_roots.Get());
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001654
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001655 // Special case of setting up the String class early so that we can test arbitrary objects
1656 // as being Strings or not
Anwar Ghuloumc4f105d2013-04-10 16:12:11 -07001657 mirror::String::SetClass(GetClassRoot(kJavaLangString));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001658
Brian Carlstrom56d947f2013-07-15 13:14:23 -07001659 CHECK_EQ(oat_file.GetOatHeader().GetDexFileCount(),
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001660 static_cast<uint32_t>(dex_caches->GetLength()));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001661 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001662 StackHandleScope<1> hs2(self);
1663 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(dex_caches->Get(i)));
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001664 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001665 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location.c_str(),
1666 nullptr);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001667 CHECK(oat_dex_file != nullptr) << oat_file.GetLocation() << " " << dex_file_location;
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001668 std::string error_msg;
1669 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001670 if (dex_file == nullptr) {
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001671 LOG(FATAL) << "Failed to open dex file " << dex_file_location
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001672 << " from within oat file " << oat_file.GetLocation()
1673 << " error '" << error_msg << "'";
Ian Rogerse0a02da2014-12-02 14:10:53 -08001674 UNREACHABLE();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001675 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001676
1677 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
1678
1679 AppendToBootClassPath(*dex_file, dex_cache);
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001680 }
1681
Anwar Ghuloumc4f105d2013-04-10 16:12:11 -07001682 // Set classes on AbstractMethod early so that IsMethod tests can be performed during the live
1683 // bitmap walk.
Brian Carlstromea46f952013-07-30 01:26:50 -07001684 mirror::ArtMethod::SetClass(GetClassRoot(kJavaLangReflectArtMethod));
Mathieu Chartier2d721012014-11-10 11:08:06 -08001685 size_t art_method_object_size = mirror::ArtMethod::GetJavaLangReflectArtMethod()->GetObjectSize();
1686 if (!Runtime::Current()->IsCompiler()) {
1687 // Compiler supports having an image with a different pointer size than the runtime. This
1688 // happens on the host for compile 32 bit tests since we use a 64 bit libart compiler. We may
1689 // also use 32 bit dex2oat on a system with 64 bit apps.
1690 CHECK_EQ(art_method_object_size, mirror::ArtMethod::InstanceSize(sizeof(void*)))
1691 << sizeof(void*);
1692 }
1693 if (art_method_object_size == mirror::ArtMethod::InstanceSize(4)) {
1694 image_pointer_size_ = 4;
1695 } else {
1696 CHECK_EQ(art_method_object_size, mirror::ArtMethod::InstanceSize(8));
1697 image_pointer_size_ = 8;
1698 }
Anwar Ghuloumc4f105d2013-04-10 16:12:11 -07001699
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001700 // Set entry point to interpreter if in InterpretOnly mode.
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -08001701 Runtime* runtime = Runtime::Current();
1702 if (!runtime->IsCompiler() && runtime->GetInstrumentation()->InterpretOnly()) {
Ian Rogers50b35e22012-10-04 10:09:15 -07001703 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001704 heap->VisitObjects(InitFromImageInterpretOnlyCallback, this);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07001705 }
Brian Carlstroma663ea52011-08-19 23:33:41 -07001706
1707 // reinit class_roots_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001708 mirror::Class::SetClassClass(class_roots->Get(kJavaLangClass));
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001709 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(class_roots.Get());
Brian Carlstroma663ea52011-08-19 23:33:41 -07001710
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001711 // reinit array_iftable_ from any array class instance, they should be ==
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001712 array_iftable_ = GcRoot<mirror::IfTable>(GetClassRoot(kObjectArrayClass)->GetIfTable());
Mathieu Chartier2d721012014-11-10 11:08:06 -08001713 DCHECK_EQ(array_iftable_.Read(), GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001714 // String class root was set above
Fred Shih4ee7a662014-07-11 09:59:27 -07001715 mirror::Reference::SetClass(GetClassRoot(kJavaLangRefReference));
Brian Carlstromea46f952013-07-30 01:26:50 -07001716 mirror::ArtField::SetClass(GetClassRoot(kJavaLangReflectArtField));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001717 mirror::BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
1718 mirror::ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
1719 mirror::CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
1720 mirror::DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
1721 mirror::FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
1722 mirror::IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
1723 mirror::LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
1724 mirror::ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
1725 mirror::Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
1726 mirror::StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -07001727
Ian Rogers98379392014-02-24 16:53:16 -08001728 FinishInit(self);
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -07001729
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001730 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -07001731}
1732
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001733void ClassLinker::VisitClassRoots(RootCallback* callback, void* arg, VisitRootFlags flags) {
1734 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
1735 if ((flags & kVisitRootFlagAllRoots) != 0) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08001736 for (GcRoot<mirror::Class>& root : class_table_) {
1737 root.VisitRoot(callback, arg, 0, kRootStickyClass);
1738 }
1739 for (GcRoot<mirror::Class>& root : pre_zygote_class_table_) {
1740 root.VisitRoot(callback, arg, 0, kRootStickyClass);
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001741 }
1742 } else if ((flags & kVisitRootFlagNewRoots) != 0) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08001743 for (auto& root : new_class_roots_) {
1744 mirror::Class* old_ref = root.Read<kWithoutReadBarrier>();
1745 root.VisitRoot(callback, arg, 0, kRootStickyClass);
1746 mirror::Class* new_ref = root.Read<kWithoutReadBarrier>();
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001747 if (UNLIKELY(new_ref != old_ref)) {
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001748 // Uh ohes, GC moved a root in the log. Need to search the class_table and update the
1749 // corresponding object. This is slow, but luckily for us, this may only happen with a
1750 // concurrent moving GC.
Mathieu Chartierc2e20622014-11-03 11:41:47 -08001751 auto it = class_table_.Find(GcRoot<mirror::Class>(old_ref));
1752 class_table_.Erase(it);
1753 class_table_.Insert(GcRoot<mirror::Class>(new_ref));
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001754 }
1755 }
1756 }
1757 if ((flags & kVisitRootFlagClearRootLog) != 0) {
1758 new_class_roots_.clear();
1759 }
1760 if ((flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
1761 log_new_class_table_roots_ = true;
1762 } else if ((flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
1763 log_new_class_table_roots_ = false;
1764 }
1765 // We deliberately ignore the class roots in the image since we
1766 // handle image roots by using the MS/CMS rescanning of dirty cards.
1767}
1768
Brian Carlstroma663ea52011-08-19 23:33:41 -07001769// Keep in sync with InitCallback. Anything we visit, we need to
1770// reinit references to when reinitializing a ClassLinker from a
1771// mapped image.
Mathieu Chartier893263b2014-03-04 11:07:42 -08001772void ClassLinker::VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001773 class_roots_.VisitRoot(callback, arg, 0, kRootVMInternal);
Ian Rogers50b35e22012-10-04 10:09:15 -07001774 Thread* self = Thread::Current();
Elliott Hughesf8349362012-06-18 15:00:06 -07001775 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07001776 ReaderMutexLock mu(self, dex_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -08001777 if ((flags & kVisitRootFlagAllRoots) != 0) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001778 for (GcRoot<mirror::DexCache>& dex_cache : dex_caches_) {
1779 dex_cache.VisitRoot(callback, arg, 0, kRootVMInternal);
Mathieu Chartierc4621982013-09-16 19:43:47 -07001780 }
Mathieu Chartier893263b2014-03-04 11:07:42 -08001781 } else if ((flags & kVisitRootFlagNewRoots) != 0) {
1782 for (size_t index : new_dex_cache_roots_) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001783 dex_caches_[index].VisitRoot(callback, arg, 0, kRootVMInternal);
Mathieu Chartierc4621982013-09-16 19:43:47 -07001784 }
Elliott Hughesf8349362012-06-18 15:00:06 -07001785 }
Mathieu Chartier893263b2014-03-04 11:07:42 -08001786 if ((flags & kVisitRootFlagClearRootLog) != 0) {
1787 new_dex_cache_roots_.clear();
1788 }
1789 if ((flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
1790 log_new_dex_caches_roots_ = true;
1791 } else if ((flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
1792 log_new_dex_caches_roots_ = false;
1793 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001794 }
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001795 VisitClassRoots(callback, arg, flags);
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001796 array_iftable_.VisitRoot(callback, arg, 0, kRootVMInternal);
1797 DCHECK(!array_iftable_.IsNull());
Ian Rogers98379392014-02-24 16:53:16 -08001798 for (size_t i = 0; i < kFindArrayCacheSize; ++i) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001799 if (!find_array_class_cache_[i].IsNull()) {
1800 find_array_class_cache_[i].VisitRoot(callback, arg, 0, kRootVMInternal);
Ian Rogers98379392014-02-24 16:53:16 -08001801 }
1802 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001803}
1804
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001805void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) {
1806 if (dex_cache_image_class_lookup_required_) {
1807 MoveImageClassesToClassTable();
Elliott Hughesa2155262011-11-16 16:26:58 -08001808 }
Ian Rogersdbf3be02014-08-29 15:40:08 -07001809 // TODO: why isn't this a ReaderMutexLock?
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001810 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08001811 for (GcRoot<mirror::Class>& root : class_table_) {
1812 if (!visitor(root.Read(), arg)) {
1813 return;
1814 }
1815 }
1816 for (GcRoot<mirror::Class>& root : pre_zygote_class_table_) {
1817 if (!visitor(root.Read(), arg)) {
Elliott Hughesa2155262011-11-16 16:26:58 -08001818 return;
1819 }
1820 }
1821}
1822
Ian Rogersdbf3be02014-08-29 15:40:08 -07001823static bool GetClassesVisitorSet(mirror::Class* c, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001824 std::set<mirror::Class*>* classes = reinterpret_cast<std::set<mirror::Class*>*>(arg);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001825 classes->insert(c);
1826 return true;
1827}
1828
Ian Rogersdbf3be02014-08-29 15:40:08 -07001829struct GetClassesVisitorArrayArg {
1830 Handle<mirror::ObjectArray<mirror::Class>>* classes;
1831 int32_t index;
1832 bool success;
1833};
1834
1835static bool GetClassesVisitorArray(mirror::Class* c, void* varg)
1836 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1837 GetClassesVisitorArrayArg* arg = reinterpret_cast<GetClassesVisitorArrayArg*>(varg);
1838 if (arg->index < (*arg->classes)->GetLength()) {
1839 (*arg->classes)->Set(arg->index, c);
1840 arg->index++;
1841 return true;
1842 } else {
1843 arg->success = false;
1844 return false;
1845 }
1846}
1847
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001848void ClassLinker::VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg) {
Ian Rogersdbf3be02014-08-29 15:40:08 -07001849 // TODO: it may be possible to avoid secondary storage if we iterate over dex caches. The problem
1850 // is avoiding duplicates.
1851 if (!kMovingClasses) {
1852 std::set<mirror::Class*> classes;
1853 VisitClasses(GetClassesVisitorSet, &classes);
1854 for (mirror::Class* klass : classes) {
1855 if (!visitor(klass, arg)) {
1856 return;
1857 }
1858 }
1859 } else {
1860 Thread* self = Thread::Current();
1861 StackHandleScope<1> hs(self);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001862 MutableHandle<mirror::ObjectArray<mirror::Class>> classes =
Ian Rogersdbf3be02014-08-29 15:40:08 -07001863 hs.NewHandle<mirror::ObjectArray<mirror::Class>>(nullptr);
1864 GetClassesVisitorArrayArg local_arg;
1865 local_arg.classes = &classes;
1866 local_arg.success = false;
1867 // We size the array assuming classes won't be added to the class table during the visit.
1868 // If this assumption fails we iterate again.
1869 while (!local_arg.success) {
1870 size_t class_table_size;
1871 {
Ian Rogers7b078e82014-09-10 14:44:24 -07001872 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08001873 class_table_size = class_table_.Size() + pre_zygote_class_table_.Size();
Ian Rogersdbf3be02014-08-29 15:40:08 -07001874 }
1875 mirror::Class* class_type = mirror::Class::GetJavaLangClass();
1876 mirror::Class* array_of_class = FindArrayClass(self, &class_type);
1877 classes.Assign(
1878 mirror::ObjectArray<mirror::Class>::Alloc(self, array_of_class, class_table_size));
1879 CHECK(classes.Get() != nullptr); // OOME.
1880 local_arg.index = 0;
1881 local_arg.success = true;
1882 VisitClasses(GetClassesVisitorArray, &local_arg);
1883 }
1884 for (int32_t i = 0; i < classes->GetLength(); ++i) {
1885 // If the class table shrank during creation of the clases array we expect null elements. If
1886 // the class table grew then the loop repeats. If classes are created after the loop has
1887 // finished then we don't visit.
1888 mirror::Class* klass = classes->Get(i);
1889 if (klass != nullptr && !visitor(klass, arg)) {
1890 return;
1891 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001892 }
1893 }
1894}
1895
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001896ClassLinker::~ClassLinker() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001897 mirror::Class::ResetClass();
1898 mirror::String::ResetClass();
Fred Shih4ee7a662014-07-11 09:59:27 -07001899 mirror::Reference::ResetClass();
Brian Carlstromea46f952013-07-30 01:26:50 -07001900 mirror::ArtField::ResetClass();
1901 mirror::ArtMethod::ResetClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001902 mirror::BooleanArray::ResetArrayClass();
1903 mirror::ByteArray::ResetArrayClass();
1904 mirror::CharArray::ResetArrayClass();
1905 mirror::DoubleArray::ResetArrayClass();
1906 mirror::FloatArray::ResetArrayClass();
1907 mirror::IntArray::ResetArrayClass();
1908 mirror::LongArray::ResetArrayClass();
1909 mirror::ShortArray::ResetArrayClass();
1910 mirror::Throwable::ResetClass();
1911 mirror::StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001912 STLDeleteElements(&boot_class_path_);
1913 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001914}
1915
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001916mirror::DexCache* ClassLinker::AllocDexCache(Thread* self, const DexFile& dex_file) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001917 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001918 StackHandleScope<16> hs(self);
1919 Handle<mirror::Class> dex_cache_class(hs.NewHandle(GetClassRoot(kJavaLangDexCache)));
1920 Handle<mirror::DexCache> dex_cache(
1921 hs.NewHandle(down_cast<mirror::DexCache*>(
1922 heap->AllocObject<true>(self, dex_cache_class.Get(), dex_cache_class->GetObjectSize(),
1923 VoidFunctor()))));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001924 if (dex_cache.Get() == nullptr) {
1925 return nullptr;
Elliott Hughes30646832011-10-13 16:59:46 -07001926 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001927 Handle<mirror::String>
1928 location(hs.NewHandle(intern_table_->InternStrong(dex_file.GetLocation().c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001929 if (location.Get() == nullptr) {
1930 return nullptr;
Elliott Hughes30646832011-10-13 16:59:46 -07001931 }
Ian Rogers700a4022014-05-19 16:49:03 -07001932 Handle<mirror::ObjectArray<mirror::String>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001933 strings(hs.NewHandle(AllocStringArray(self, dex_file.NumStringIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001934 if (strings.Get() == nullptr) {
1935 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001936 }
Ian Rogers700a4022014-05-19 16:49:03 -07001937 Handle<mirror::ObjectArray<mirror::Class>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001938 types(hs.NewHandle(AllocClassArray(self, dex_file.NumTypeIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001939 if (types.Get() == nullptr) {
1940 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001941 }
Ian Rogers700a4022014-05-19 16:49:03 -07001942 Handle<mirror::ObjectArray<mirror::ArtMethod>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001943 methods(hs.NewHandle(AllocArtMethodArray(self, dex_file.NumMethodIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001944 if (methods.Get() == nullptr) {
1945 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001946 }
Ian Rogers700a4022014-05-19 16:49:03 -07001947 Handle<mirror::ObjectArray<mirror::ArtField>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001948 fields(hs.NewHandle(AllocArtFieldArray(self, dex_file.NumFieldIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001949 if (fields.Get() == nullptr) {
1950 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001951 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001952 dex_cache->Init(&dex_file, location.Get(), strings.Get(), types.Get(), methods.Get(),
1953 fields.Get());
1954 return dex_cache.Get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001955}
1956
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001957mirror::Class* ClassLinker::AllocClass(Thread* self, mirror::Class* java_lang_Class,
Ian Rogers6fac4472014-02-25 17:01:10 -08001958 uint32_t class_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001959 DCHECK_GE(class_size, sizeof(mirror::Class));
Ian Rogers1d54e732013-05-02 21:10:01 -07001960 gc::Heap* heap = Runtime::Current()->GetHeap();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001961 mirror::Class::InitializeClassVisitor visitor(class_size);
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001962 mirror::Object* k = kMovingClasses ?
Brian Carlstromf3632832014-05-20 15:36:53 -07001963 heap->AllocObject<true>(self, java_lang_Class, class_size, visitor) :
1964 heap->AllocNonMovableObject<true>(self, java_lang_Class, class_size, visitor);
Ian Rogers6fac4472014-02-25 17:01:10 -08001965 if (UNLIKELY(k == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001966 CHECK(self->IsExceptionPending()); // OOME.
Ian Rogers6fac4472014-02-25 17:01:10 -08001967 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07001968 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001969 return k->AsClass();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001970}
1971
Ian Rogers6fac4472014-02-25 17:01:10 -08001972mirror::Class* ClassLinker::AllocClass(Thread* self, uint32_t class_size) {
Ian Rogers50b35e22012-10-04 10:09:15 -07001973 return AllocClass(self, GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001974}
1975
Brian Carlstromea46f952013-07-30 01:26:50 -07001976mirror::ArtField* ClassLinker::AllocArtField(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001977 return down_cast<mirror::ArtField*>(
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001978 GetClassRoot(kJavaLangReflectArtField)->AllocNonMovableObject(self));
Brian Carlstroma0808032011-07-18 00:39:23 -07001979}
1980
Brian Carlstromea46f952013-07-30 01:26:50 -07001981mirror::ArtMethod* ClassLinker::AllocArtMethod(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001982 return down_cast<mirror::ArtMethod*>(
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001983 GetClassRoot(kJavaLangReflectArtMethod)->AllocNonMovableObject(self));
Mathieu Chartier66f19252012-09-18 08:57:04 -07001984}
1985
Mathieu Chartier590fee92013-09-13 13:46:47 -07001986mirror::ObjectArray<mirror::StackTraceElement>* ClassLinker::AllocStackTraceElementArray(
1987 Thread* self, size_t length) {
1988 return mirror::ObjectArray<mirror::StackTraceElement>::Alloc(
1989 self, GetClassRoot(kJavaLangStackTraceElementArrayClass), length);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001990}
1991
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001992mirror::Class* ClassLinker::EnsureResolved(Thread* self, const char* descriptor,
1993 mirror::Class* klass) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001994 DCHECK(klass != nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001995
1996 // For temporary classes we must wait for them to be retired.
1997 if (init_done_ && klass->IsTemp()) {
1998 CHECK(!klass->IsResolved());
1999 if (klass->IsErroneous()) {
2000 ThrowEarlierClassFailure(klass);
2001 return nullptr;
2002 }
2003 StackHandleScope<1> hs(self);
2004 Handle<mirror::Class> h_class(hs.NewHandle(klass));
2005 ObjectLock<mirror::Class> lock(self, h_class);
2006 // Loop and wait for the resolving thread to retire this class.
2007 while (!h_class->IsRetired() && !h_class->IsErroneous()) {
2008 lock.WaitIgnoringInterrupts();
2009 }
2010 if (h_class->IsErroneous()) {
2011 ThrowEarlierClassFailure(h_class.Get());
2012 return nullptr;
2013 }
2014 CHECK(h_class->IsRetired());
2015 // Get the updated class from class table.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002016 klass = LookupClass(self, descriptor, ComputeModifiedUtf8Hash(descriptor),
2017 h_class.Get()->GetClassLoader());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002018 }
2019
Brian Carlstromaded5f72011-10-07 17:15:04 -07002020 // Wait for the class if it has not already been linked.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07002021 if (!klass->IsResolved() && !klass->IsErroneous()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002022 StackHandleScope<1> hs(self);
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002023 HandleWrapper<mirror::Class> h_class(hs.NewHandleWrapper(&klass));
2024 ObjectLock<mirror::Class> lock(self, h_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002025 // Check for circular dependencies between classes.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002026 if (!h_class->IsResolved() && h_class->GetClinitThreadId() == self->GetTid()) {
2027 ThrowClassCircularityError(h_class.Get());
2028 h_class->SetStatus(mirror::Class::kStatusError, self);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002029 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002030 }
2031 // Wait for the pending initialization to complete.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002032 while (!h_class->IsResolved() && !h_class->IsErroneous()) {
Ian Rogers05f30572013-02-20 12:13:11 -08002033 lock.WaitIgnoringInterrupts();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002034 }
2035 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002036
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002037 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002038 ThrowEarlierClassFailure(klass);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002039 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002040 }
2041 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07002042 CHECK(klass->IsResolved()) << PrettyClass(klass);
Ian Rogers62d6c772013-02-27 08:32:07 -08002043 self->AssertNoPendingException();
Brian Carlstromaded5f72011-10-07 17:15:04 -07002044 return klass;
2045}
2046
Ian Rogers68b56852014-08-29 20:19:11 -07002047typedef std::pair<const DexFile*, const DexFile::ClassDef*> ClassPathEntry;
2048
2049// Search a collection of DexFiles for a descriptor
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002050ClassPathEntry FindInClassPath(const char* descriptor,
2051 size_t hash, const std::vector<const DexFile*>& class_path) {
2052 for (const DexFile* dex_file : class_path) {
2053 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor, hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002054 if (dex_class_def != nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07002055 return ClassPathEntry(dex_file, dex_class_def);
2056 }
2057 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002058 return ClassPathEntry(nullptr, nullptr);
Ian Rogers68b56852014-08-29 20:19:11 -07002059}
2060
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002061mirror::Class* ClassLinker::FindClassInPathClassLoader(ScopedObjectAccessAlreadyRunnable& soa,
2062 Thread* self, const char* descriptor,
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002063 size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002064 Handle<mirror::ClassLoader> class_loader) {
Ian Rogers32427292014-11-19 14:05:21 -08002065 // Can we special case for a well understood PathClassLoader with the BootClassLoader as parent?
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002066 if (class_loader->GetClass() !=
2067 soa.Decode<mirror::Class*>(WellKnownClasses::dalvik_system_PathClassLoader) ||
2068 class_loader->GetParent()->GetClass() !=
2069 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_BootClassLoader)) {
2070 return nullptr;
2071 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002072 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002073 // Check if this would be found in the parent boot class loader.
2074 if (pair.second != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002075 mirror::Class* klass = LookupClass(self, descriptor, hash, nullptr);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002076 if (klass != nullptr) {
Ian Rogers32427292014-11-19 14:05:21 -08002077 // May return null if resolution on another thread fails.
2078 klass = EnsureResolved(self, descriptor, klass);
2079 } else {
2080 // May OOME.
2081 klass = DefineClass(self, descriptor, hash, NullHandle<mirror::ClassLoader>(), *pair.first,
2082 *pair.second);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002083 }
Ian Rogers32427292014-11-19 14:05:21 -08002084 if (klass == nullptr) {
2085 CHECK(self->IsExceptionPending()) << descriptor;
2086 self->ClearException();
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002087 }
Ian Rogers32427292014-11-19 14:05:21 -08002088 return klass;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002089 } else {
Ian Rogers32427292014-11-19 14:05:21 -08002090 // Handle as if this is the child PathClassLoader.
2091 // Handles as RegisterDexFile may allocate dex caches (and cause thread suspension).
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002092 StackHandleScope<3> hs(self);
2093 // The class loader is a PathClassLoader which inherits from BaseDexClassLoader.
2094 // We need to get the DexPathList and loop through it.
2095 Handle<mirror::ArtField> cookie_field =
2096 hs.NewHandle(soa.DecodeField(WellKnownClasses::dalvik_system_DexFile_cookie));
2097 Handle<mirror::ArtField> dex_file_field =
2098 hs.NewHandle(
Andreas Gampec8ccf682014-09-29 20:07:43 -07002099 soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile));
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002100 mirror::Object* dex_path_list =
2101 soa.DecodeField(WellKnownClasses::dalvik_system_PathClassLoader_pathList)->
2102 GetObject(class_loader.Get());
2103 if (dex_path_list != nullptr && dex_file_field.Get() != nullptr &&
2104 cookie_field.Get() != nullptr) {
2105 // DexPathList has an array dexElements of Elements[] which each contain a dex file.
2106 mirror::Object* dex_elements_obj =
2107 soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList_dexElements)->
2108 GetObject(dex_path_list);
2109 // Loop through each dalvik.system.DexPathList$Element's dalvik.system.DexFile and look
2110 // at the mCookie which is a DexFile vector.
2111 if (dex_elements_obj != nullptr) {
2112 Handle<mirror::ObjectArray<mirror::Object>> dex_elements =
2113 hs.NewHandle(dex_elements_obj->AsObjectArray<mirror::Object>());
2114 for (int32_t i = 0; i < dex_elements->GetLength(); ++i) {
2115 mirror::Object* element = dex_elements->GetWithoutChecks(i);
2116 if (element == nullptr) {
2117 // Should never happen, fall back to java code to throw a NPE.
2118 break;
2119 }
2120 mirror::Object* dex_file = dex_file_field->GetObject(element);
2121 if (dex_file != nullptr) {
2122 const uint64_t cookie = cookie_field->GetLong(dex_file);
2123 auto* dex_files =
2124 reinterpret_cast<std::vector<const DexFile*>*>(static_cast<uintptr_t>(cookie));
2125 if (dex_files == nullptr) {
2126 // This should never happen so log a warning.
2127 LOG(WARNING) << "Null DexFile::mCookie for " << descriptor;
2128 break;
2129 }
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002130 for (const DexFile* cp_dex_file : *dex_files) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002131 const DexFile::ClassDef* dex_class_def = cp_dex_file->FindClassDef(descriptor, hash);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002132 if (dex_class_def != nullptr) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002133 RegisterDexFile(*cp_dex_file);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002134 mirror::Class* klass = DefineClass(self, descriptor, hash, class_loader,
2135 *cp_dex_file, *dex_class_def);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002136 if (klass == nullptr) {
2137 CHECK(self->IsExceptionPending()) << descriptor;
2138 self->ClearException();
2139 return nullptr;
2140 }
2141 return klass;
2142 }
2143 }
2144 }
2145 }
2146 }
2147 }
Ian Rogers32427292014-11-19 14:05:21 -08002148 self->AssertNoPendingException();
2149 return nullptr;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002150 }
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002151}
2152
Ian Rogers98379392014-02-24 16:53:16 -08002153mirror::Class* ClassLinker::FindClass(Thread* self, const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002154 Handle<mirror::ClassLoader> class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08002155 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Ian Rogers98379392014-02-24 16:53:16 -08002156 DCHECK(self != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002157 self->AssertNoPendingException();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002158 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002159 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
2160 // for primitive classes that aren't backed by dex files.
2161 return FindPrimitiveClass(descriptor[0]);
2162 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002163 const size_t hash = ComputeModifiedUtf8Hash(descriptor);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002164 // Find the class in the loaded classes table.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002165 mirror::Class* klass = LookupClass(self, descriptor, hash, class_loader.Get());
Ian Rogers68b56852014-08-29 20:19:11 -07002166 if (klass != nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002167 return EnsureResolved(self, descriptor, klass);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002168 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002169 // Class is not yet loaded.
2170 if (descriptor[0] == '[') {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002171 return CreateArrayClass(self, descriptor, hash, class_loader);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002172 } else if (class_loader.Get() == nullptr) {
Ian Rogers63557452014-06-04 16:57:15 -07002173 // The boot class loader, search the boot class path.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002174 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_);
Ian Rogers68b56852014-08-29 20:19:11 -07002175 if (pair.second != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002176 return DefineClass(self, descriptor, hash, NullHandle<mirror::ClassLoader>(), *pair.first,
Ian Rogers7b078e82014-09-10 14:44:24 -07002177 *pair.second);
Ian Rogers63557452014-06-04 16:57:15 -07002178 } else {
2179 // The boot class loader is searched ahead of the application class loader, failures are
2180 // expected and will be wrapped in a ClassNotFoundException. Use the pre-allocated error to
2181 // trigger the chaining with a proper stack trace.
2182 mirror::Throwable* pre_allocated = Runtime::Current()->GetPreAllocatedNoClassDefFoundError();
2183 self->SetException(ThrowLocation(), pre_allocated);
2184 return nullptr;
Jesse Wilson47daf872011-11-23 11:42:45 -05002185 }
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08002186 } else if (Runtime::Current()->UseCompileTimeClassPath()) {
Ian Rogers68b56852014-08-29 20:19:11 -07002187 // First try with the bootstrap class loader.
2188 if (class_loader.Get() != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002189 klass = LookupClass(self, descriptor, hash, nullptr);
Ian Rogers68b56852014-08-29 20:19:11 -07002190 if (klass != nullptr) {
2191 return EnsureResolved(self, descriptor, klass);
2192 }
2193 }
Ian Rogers63557452014-06-04 16:57:15 -07002194 // If the lookup failed search the boot class path. We don't perform a recursive call to avoid
2195 // a NoClassDefFoundError being allocated.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002196 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_);
Ian Rogers68b56852014-08-29 20:19:11 -07002197 if (pair.second != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002198 return DefineClass(self, descriptor, hash, NullHandle<mirror::ClassLoader>(), *pair.first,
Ian Rogers7b078e82014-09-10 14:44:24 -07002199 *pair.second);
Jesse Wilson47daf872011-11-23 11:42:45 -05002200 }
Ian Rogersbe7149f2013-08-20 09:29:39 -07002201 // Next try the compile time class path.
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002202 const std::vector<const DexFile*>* class_path;
2203 {
Ian Rogersbe7149f2013-08-20 09:29:39 -07002204 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002205 ScopedLocalRef<jobject> jclass_loader(soa.Env(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002206 soa.AddLocalReference<jobject>(class_loader.Get()));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002207 class_path = &Runtime::Current()->GetCompileTimeClassPath(jclass_loader.get());
2208 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002209 pair = FindInClassPath(descriptor, hash, *class_path);
Ian Rogers68b56852014-08-29 20:19:11 -07002210 if (pair.second != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002211 return DefineClass(self, descriptor, hash, class_loader, *pair.first, *pair.second);
Ian Rogers7b078e82014-09-10 14:44:24 -07002212 } else {
2213 // Use the pre-allocated NCDFE at compile time to avoid wasting time constructing exceptions.
2214 mirror::Throwable* pre_allocated = Runtime::Current()->GetPreAllocatedNoClassDefFoundError();
2215 self->SetException(ThrowLocation(), pre_allocated);
2216 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -07002217 }
Jesse Wilson47daf872011-11-23 11:42:45 -05002218 } else {
Ian Rogers98379392014-02-24 16:53:16 -08002219 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002220 mirror::Class* cp_klass = FindClassInPathClassLoader(soa, self, descriptor, hash,
2221 class_loader);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002222 if (cp_klass != nullptr) {
2223 return cp_klass;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -07002224 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002225 ScopedLocalRef<jobject> class_loader_object(soa.Env(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002226 soa.AddLocalReference<jobject>(class_loader.Get()));
Elliott Hughes95572412011-12-13 18:14:20 -08002227 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers68b56852014-08-29 20:19:11 -07002228 ScopedLocalRef<jobject> result(soa.Env(), nullptr);
Ian Rogers365c1022012-06-22 15:05:28 -07002229 {
2230 ScopedThreadStateChange tsc(self, kNative);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002231 ScopedLocalRef<jobject> class_name_object(soa.Env(),
2232 soa.Env()->NewStringUTF(class_name_string.c_str()));
Ian Rogers68b56852014-08-29 20:19:11 -07002233 if (class_name_object.get() == nullptr) {
Ian Rogers63557452014-06-04 16:57:15 -07002234 DCHECK(self->IsExceptionPending()); // OOME.
Ian Rogers68b56852014-08-29 20:19:11 -07002235 return nullptr;
Ian Rogers365c1022012-06-22 15:05:28 -07002236 }
Ian Rogers68b56852014-08-29 20:19:11 -07002237 CHECK(class_loader_object.get() != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002238 result.reset(soa.Env()->CallObjectMethod(class_loader_object.get(),
2239 WellKnownClasses::java_lang_ClassLoader_loadClass,
2240 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05002241 }
Ian Rogers98379392014-02-24 16:53:16 -08002242 if (self->IsExceptionPending()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08002243 // If the ClassLoader threw, pass that exception up.
Ian Rogers68b56852014-08-29 20:19:11 -07002244 return nullptr;
2245 } else if (result.get() == nullptr) {
Ian Rogerscab01012012-01-10 17:35:46 -08002246 // broken loader - throw NPE to be compatible with Dalvik
Ian Rogers68b56852014-08-29 20:19:11 -07002247 ThrowNullPointerException(nullptr, StringPrintf("ClassLoader.loadClass returned null for %s",
Ian Rogers63557452014-06-04 16:57:15 -07002248 class_name_string.c_str()).c_str());
Ian Rogers68b56852014-08-29 20:19:11 -07002249 return nullptr;
Ian Rogers761bfa82012-01-11 10:14:05 -08002250 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002251 // success, return mirror::Class*
2252 return soa.Decode<mirror::Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08002253 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002254 }
Ian Rogers07140832014-09-30 15:43:59 -07002255 UNREACHABLE();
Brian Carlstromaded5f72011-10-07 17:15:04 -07002256}
2257
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002258mirror::Class* ClassLinker::DefineClass(Thread* self, const char* descriptor, size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002259 Handle<mirror::ClassLoader> class_loader,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002260 const DexFile& dex_file,
2261 const DexFile::ClassDef& dex_class_def) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002262 StackHandleScope<3> hs(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002263 auto klass = hs.NewHandle<mirror::Class>(nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002264
Brian Carlstromaded5f72011-10-07 17:15:04 -07002265 // Load the class from the dex file.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002266 if (UNLIKELY(!init_done_)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07002267 // finish up init of hand crafted class_roots_
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002268 if (strcmp(descriptor, "Ljava/lang/Object;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002269 klass.Assign(GetClassRoot(kJavaLangObject));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002270 } else if (strcmp(descriptor, "Ljava/lang/Class;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002271 klass.Assign(GetClassRoot(kJavaLangClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002272 } else if (strcmp(descriptor, "Ljava/lang/String;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002273 klass.Assign(GetClassRoot(kJavaLangString));
Fred Shih4ee7a662014-07-11 09:59:27 -07002274 } else if (strcmp(descriptor, "Ljava/lang/ref/Reference;") == 0) {
2275 klass.Assign(GetClassRoot(kJavaLangRefReference));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002276 } else if (strcmp(descriptor, "Ljava/lang/DexCache;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002277 klass.Assign(GetClassRoot(kJavaLangDexCache));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002278 } else if (strcmp(descriptor, "Ljava/lang/reflect/ArtField;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002279 klass.Assign(GetClassRoot(kJavaLangReflectArtField));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002280 } else if (strcmp(descriptor, "Ljava/lang/reflect/ArtMethod;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002281 klass.Assign(GetClassRoot(kJavaLangReflectArtMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07002282 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002283 }
2284
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002285 if (klass.Get() == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002286 // Allocate a class with the status of not ready.
2287 // Interface object should get the right size here. Regular class will
2288 // figure out the right size later and be replaced with one of the right
2289 // size when the class becomes resolved.
2290 klass.Assign(AllocClass(self, SizeOfClassWithoutEmbeddedTables(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07002291 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07002292 if (UNLIKELY(klass.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002293 CHECK(self->IsExceptionPending()); // Expect an OOME.
Ian Rogersc114b5f2014-07-21 08:55:01 -07002294 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002295 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002296 klass->SetDexCache(FindDexCache(dex_file));
Ian Rogers7b078e82014-09-10 14:44:24 -07002297 LoadClass(self, dex_file, dex_class_def, klass, class_loader.Get());
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002298 ObjectLock<mirror::Class> lock(self, klass);
Ian Rogersc114b5f2014-07-21 08:55:01 -07002299 if (self->IsExceptionPending()) {
2300 // An exception occured during load, set status to erroneous while holding klass' lock in case
2301 // notification is necessary.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07002302 if (!klass->IsErroneous()) {
2303 klass->SetStatus(mirror::Class::kStatusError, self);
2304 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07002305 return nullptr;
2306 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002307 klass->SetClinitThreadId(self->GetTid());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002308
Mathieu Chartier590fee92013-09-13 13:46:47 -07002309 // Add the newly loaded class to the loaded classes table.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002310 mirror::Class* existing = InsertClass(descriptor, klass.Get(), hash);
Ian Rogersc114b5f2014-07-21 08:55:01 -07002311 if (existing != nullptr) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002312 // We failed to insert because we raced with another thread. Calling EnsureResolved may cause
2313 // this thread to block.
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002314 return EnsureResolved(self, descriptor, existing);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002315 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002316
Brian Carlstromaded5f72011-10-07 17:15:04 -07002317 // Finish loading (if necessary) by finding parents
2318 CHECK(!klass->IsLoaded());
2319 if (!LoadSuperAndInterfaces(klass, dex_file)) {
2320 // Loading failed.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07002321 if (!klass->IsErroneous()) {
2322 klass->SetStatus(mirror::Class::kStatusError, self);
2323 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07002324 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -07002325 }
2326 CHECK(klass->IsLoaded());
2327 // Link the class (if necessary)
2328 CHECK(!klass->IsResolved());
Mathieu Chartier590fee92013-09-13 13:46:47 -07002329 // TODO: Use fast jobjects?
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002330 auto interfaces = hs.NewHandle<mirror::ObjectArray<mirror::Class>>(nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002331
2332 mirror::Class* new_class = nullptr;
2333 if (!LinkClass(self, descriptor, klass, interfaces, &new_class)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07002334 // Linking failed.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07002335 if (!klass->IsErroneous()) {
2336 klass->SetStatus(mirror::Class::kStatusError, self);
2337 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07002338 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -07002339 }
Mathieu Chartier524507a2014-08-27 15:28:28 -07002340 self->AssertNoPendingException();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002341 CHECK(new_class != nullptr) << descriptor;
2342 CHECK(new_class->IsResolved()) << descriptor;
2343
2344 Handle<mirror::Class> new_class_h(hs.NewHandle(new_class));
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002345
2346 /*
2347 * We send CLASS_PREPARE events to the debugger from here. The
2348 * definition of "preparation" is creating the static fields for a
2349 * class and initializing them to the standard default values, but not
2350 * executing any code (that comes later, during "initialization").
2351 *
2352 * We did the static preparation in LinkClass.
2353 *
2354 * The class has been prepared and resolved but possibly not yet verified
2355 * at this point.
2356 */
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002357 Dbg::PostClassPrepare(new_class_h.Get());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002358
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002359 return new_class_h.Get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002360}
2361
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002362uint32_t ClassLinker::SizeOfClassWithoutEmbeddedTables(const DexFile& dex_file,
2363 const DexFile::ClassDef& dex_class_def) {
Ian Rogers13735952014-10-08 12:43:28 -07002364 const uint8_t* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002365 size_t num_ref = 0;
Fred Shih37f05ef2014-07-16 18:38:08 -07002366 size_t num_8 = 0;
2367 size_t num_16 = 0;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002368 size_t num_32 = 0;
2369 size_t num_64 = 0;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002370 if (class_data != nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -07002371 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
2372 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002373 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002374 char c = descriptor[0];
Fred Shih37f05ef2014-07-16 18:38:08 -07002375 switch (c) {
2376 case 'L':
2377 case '[':
2378 num_ref++;
2379 break;
2380 case 'J':
2381 case 'D':
2382 num_64++;
2383 break;
2384 case 'I':
2385 case 'F':
2386 num_32++;
2387 break;
2388 case 'S':
2389 case 'C':
2390 num_16++;
2391 break;
2392 case 'B':
2393 case 'Z':
2394 num_8++;
2395 break;
2396 default:
2397 LOG(FATAL) << "Unknown descriptor: " << c;
Ian Rogerse0a02da2014-12-02 14:10:53 -08002398 UNREACHABLE();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002399 }
2400 }
2401 }
Fred Shih37f05ef2014-07-16 18:38:08 -07002402 return mirror::Class::ComputeClassSize(false, 0, num_8, num_16, num_32, num_64, num_ref);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002403}
2404
Ian Rogers97b52f82014-08-14 11:34:07 -07002405OatFile::OatClass ClassLinker::FindOatClass(const DexFile& dex_file, uint16_t class_def_idx,
2406 bool* found) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002407 DCHECK_NE(class_def_idx, DexFile::kDexNoIndex16);
Vladimir Markoaa4497d2014-09-05 14:01:17 +01002408 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file);
2409 if (oat_dex_file == nullptr) {
Ian Rogers97b52f82014-08-14 11:34:07 -07002410 *found = false;
2411 return OatFile::OatClass::Invalid();
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002412 }
Ian Rogers97b52f82014-08-14 11:34:07 -07002413 *found = true;
2414 return oat_dex_file->GetOatClass(class_def_idx);
Ian Rogers19846512012-02-24 11:42:47 -08002415}
2416
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002417static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file, uint16_t class_def_idx,
2418 uint32_t method_idx) {
2419 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
Ian Rogers13735952014-10-08 12:43:28 -07002420 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002421 CHECK(class_data != nullptr);
Mathieu Chartiere35517a2012-10-30 18:49:55 -07002422 ClassDataItemIterator it(dex_file, class_data);
2423 // Skip fields
2424 while (it.HasNextStaticField()) {
2425 it.Next();
2426 }
2427 while (it.HasNextInstanceField()) {
2428 it.Next();
2429 }
2430 // Process methods
2431 size_t class_def_method_index = 0;
2432 while (it.HasNextDirectMethod()) {
2433 if (it.GetMemberIndex() == method_idx) {
2434 return class_def_method_index;
2435 }
2436 class_def_method_index++;
2437 it.Next();
2438 }
2439 while (it.HasNextVirtualMethod()) {
2440 if (it.GetMemberIndex() == method_idx) {
2441 return class_def_method_index;
2442 }
2443 class_def_method_index++;
2444 it.Next();
2445 }
2446 DCHECK(!it.HasNext());
2447 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
Ian Rogerse0a02da2014-12-02 14:10:53 -08002448 UNREACHABLE();
Mathieu Chartiere35517a2012-10-30 18:49:55 -07002449}
2450
Ian Rogers97b52f82014-08-14 11:34:07 -07002451const OatFile::OatMethod ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, bool* found) {
Ian Rogers19846512012-02-24 11:42:47 -08002452 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08002453 // method for direct methods (or virtual methods made direct).
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002454 mirror::Class* declaring_class = method->GetDeclaringClass();
Ian Rogersfb6adba2012-03-04 21:51:51 -08002455 size_t oat_method_index;
2456 if (method->IsStatic() || method->IsDirect()) {
2457 // Simple case where the oat method index was stashed at load time.
2458 oat_method_index = method->GetMethodIndex();
2459 } else {
2460 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
2461 // by search for its position in the declared virtual methods.
2462 oat_method_index = declaring_class->NumDirectMethods();
2463 size_t end = declaring_class->NumVirtualMethods();
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002464 bool found_virtual = false;
Ian Rogersfb6adba2012-03-04 21:51:51 -08002465 for (size_t i = 0; i < end; i++) {
Jeff Hao68caf9e2014-09-03 13:48:16 -07002466 // Check method index instead of identity in case of duplicate method definitions.
2467 if (method->GetDexMethodIndex() ==
2468 declaring_class->GetVirtualMethod(i)->GetDexMethodIndex()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002469 found_virtual = true;
Ian Rogersfb6adba2012-03-04 21:51:51 -08002470 break;
2471 }
Ian Rogersf320b632012-03-13 18:47:47 -07002472 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08002473 }
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002474 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
2475 << PrettyMethod(method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08002476 }
Mathieu Chartiere35517a2012-10-30 18:49:55 -07002477 DCHECK_EQ(oat_method_index,
2478 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002479 method->GetDeclaringClass()->GetDexClassDefIndex(),
Mathieu Chartiere35517a2012-10-30 18:49:55 -07002480 method->GetDexMethodIndex()));
Ian Rogers97b52f82014-08-14 11:34:07 -07002481 OatFile::OatClass oat_class = FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
2482 declaring_class->GetDexClassDefIndex(),
2483 found);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002484 if (!(*found)) {
Ian Rogers97b52f82014-08-14 11:34:07 -07002485 return OatFile::OatMethod::Invalid();
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002486 }
Ian Rogers97b52f82014-08-14 11:34:07 -07002487 return oat_class.GetOatMethod(oat_method_index);
TDYa12785321912012-04-01 15:24:56 -07002488}
2489
2490// Special case to get oat code without overwriting a trampoline.
Ian Rogersef7d42f2014-01-06 12:55:46 -08002491const void* ClassLinker::GetQuickOatCodeFor(mirror::ArtMethod* method) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002492 CHECK(!method->IsAbstract()) << PrettyMethod(method);
Jeff Hao8df6cea2013-07-29 13:54:48 -07002493 if (method->IsProxyMethod()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002494 return GetQuickProxyInvokeHandler();
Jeff Hao8df6cea2013-07-29 13:54:48 -07002495 }
Ian Rogers97b52f82014-08-14 11:34:07 -07002496 bool found;
2497 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002498 const void* result = nullptr;
Ian Rogers97b52f82014-08-14 11:34:07 -07002499 if (found) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002500 result = oat_method.GetQuickCode();
2501 }
2502
Ian Rogersef7d42f2014-01-06 12:55:46 -08002503 if (result == nullptr) {
Ian Rogers1a570662014-03-12 01:02:21 -07002504 if (method->IsNative()) {
2505 // No code and native? Use generic trampoline.
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002506 result = GetQuickGenericJniStub();
Ian Rogers1a570662014-03-12 01:02:21 -07002507 } else if (method->IsPortableCompiled()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002508 // No code? Do we expect portable code?
2509 result = GetQuickToPortableBridge();
2510 } else {
2511 // No code? You must mean to go into the interpreter.
2512 result = GetQuickToInterpreterBridge();
2513 }
Ian Rogersf3e98552013-03-20 15:49:49 -07002514 }
2515 return result;
TDYa12785321912012-04-01 15:24:56 -07002516}
2517
Ian Rogersef7d42f2014-01-06 12:55:46 -08002518const void* ClassLinker::GetPortableOatCodeFor(mirror::ArtMethod* method,
2519 bool* have_portable_code) {
2520 CHECK(!method->IsAbstract()) << PrettyMethod(method);
2521 *have_portable_code = false;
2522 if (method->IsProxyMethod()) {
2523 return GetPortableProxyInvokeHandler();
2524 }
Ian Rogers97b52f82014-08-14 11:34:07 -07002525 bool found;
2526 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002527 const void* result = nullptr;
2528 const void* quick_code = nullptr;
Ian Rogers97b52f82014-08-14 11:34:07 -07002529 if (found) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002530 result = oat_method.GetPortableCode();
2531 quick_code = oat_method.GetQuickCode();
2532 }
2533
Ian Rogersef7d42f2014-01-06 12:55:46 -08002534 if (result == nullptr) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002535 if (quick_code == nullptr) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002536 // No code? You must mean to go into the interpreter.
2537 result = GetPortableToInterpreterBridge();
2538 } else {
2539 // No code? But there's quick code, so use a bridge.
2540 result = GetPortableToQuickBridge();
2541 }
2542 } else {
2543 *have_portable_code = true;
2544 }
2545 return result;
2546}
2547
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -07002548const void* ClassLinker::GetOatMethodQuickCodeFor(mirror::ArtMethod* method) {
2549 if (method->IsNative() || method->IsAbstract() || method->IsProxyMethod()) {
2550 return nullptr;
2551 }
2552 bool found;
2553 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
2554 return found ? oat_method.GetQuickCode() : nullptr;
2555}
2556
2557const void* ClassLinker::GetOatMethodPortableCodeFor(mirror::ArtMethod* method) {
2558 if (method->IsNative() || method->IsAbstract() || method->IsProxyMethod()) {
2559 return nullptr;
2560 }
2561 bool found;
2562 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
2563 return found ? oat_method.GetPortableCode() : nullptr;
2564}
2565
Ian Rogersef7d42f2014-01-06 12:55:46 -08002566const void* ClassLinker::GetQuickOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx,
2567 uint32_t method_idx) {
Ian Rogers97b52f82014-08-14 11:34:07 -07002568 bool found;
2569 OatFile::OatClass oat_class = FindOatClass(dex_file, class_def_idx, &found);
2570 if (!found) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002571 return nullptr;
2572 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002573 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx);
Vladimir Markod3c5beb2014-04-11 16:32:51 +01002574 return oat_class.GetOatMethod(oat_method_idx).GetQuickCode();
Ian Rogersef7d42f2014-01-06 12:55:46 -08002575}
2576
2577const void* ClassLinker::GetPortableOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx,
2578 uint32_t method_idx) {
Ian Rogers97b52f82014-08-14 11:34:07 -07002579 bool found;
2580 OatFile::OatClass oat_class = FindOatClass(dex_file, class_def_idx, &found);
2581 if (!found) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002582 return nullptr;
2583 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08002584 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx);
Vladimir Markod3c5beb2014-04-11 16:32:51 +01002585 return oat_class.GetOatMethod(oat_method_idx).GetPortableCode();
Mathieu Chartiere35517a2012-10-30 18:49:55 -07002586}
2587
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002588// Returns true if the method must run with interpreter, false otherwise.
Brian Carlstromf3632832014-05-20 15:36:53 -07002589static bool NeedsInterpreter(
2590 mirror::ArtMethod* method, const void* quick_code, const void* portable_code)
2591 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002592 if ((quick_code == nullptr) && (portable_code == nullptr)) {
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002593 // No code: need interpreter.
Andreas Gampe2da88232014-02-27 12:26:20 -08002594 // May return true for native code, in the case of generic JNI
2595 // DCHECK(!method->IsNative());
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002596 return true;
2597 }
Dragos Sbirlea90af14d2013-08-15 17:50:16 -07002598#ifdef ART_SEA_IR_MODE
2599 ScopedObjectAccess soa(Thread::Current());
2600 if (std::string::npos != PrettyMethod(method).find("fibonacci")) {
2601 LOG(INFO) << "Found " << PrettyMethod(method);
2602 return false;
2603 }
2604#endif
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002605 // If interpreter mode is enabled, every method (except native and proxy) must
2606 // be run with interpreter.
2607 return Runtime::Current()->GetInstrumentation()->InterpretOnly() &&
2608 !method->IsNative() && !method->IsProxyMethod();
2609}
2610
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002611void ClassLinker::FixupStaticTrampolines(mirror::Class* klass) {
Brian Carlstrom073278c2014-02-19 15:21:21 -08002612 DCHECK(klass->IsInitialized()) << PrettyDescriptor(klass);
Ian Rogers1c829822013-09-30 18:18:50 -07002613 if (klass->NumDirectMethods() == 0) {
2614 return; // No direct methods => no static methods.
Ian Rogers19846512012-02-24 11:42:47 -08002615 }
Ian Rogers62d6c772013-02-27 08:32:07 -08002616 Runtime* runtime = Runtime::Current();
2617 if (!runtime->IsStarted() || runtime->UseCompileTimeClassPath()) {
Alex Light64ad14d2014-08-19 14:23:13 -07002618 if (runtime->IsCompiler() || runtime->GetHeap()->HasImageSpace()) {
2619 return; // OAT file unavailable.
2620 }
Ian Rogers19846512012-02-24 11:42:47 -08002621 }
Alex Light64ad14d2014-08-19 14:23:13 -07002622
Mathieu Chartierf8322842014-05-16 10:59:25 -07002623 const DexFile& dex_file = klass->GetDexFile();
2624 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Ian Rogers1c829822013-09-30 18:18:50 -07002625 CHECK(dex_class_def != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -07002626 const uint8_t* class_data = dex_file.GetClassData(*dex_class_def);
Ian Rogers1c829822013-09-30 18:18:50 -07002627 // There should always be class data if there were direct methods.
2628 CHECK(class_data != nullptr) << PrettyDescriptor(klass);
Ian Rogers19846512012-02-24 11:42:47 -08002629 ClassDataItemIterator it(dex_file, class_data);
2630 // Skip fields
2631 while (it.HasNextStaticField()) {
2632 it.Next();
2633 }
2634 while (it.HasNextInstanceField()) {
2635 it.Next();
2636 }
Ian Rogers97b52f82014-08-14 11:34:07 -07002637 bool has_oat_class;
2638 OatFile::OatClass oat_class = FindOatClass(dex_file, klass->GetDexClassDefIndex(),
2639 &has_oat_class);
Ian Rogers1c829822013-09-30 18:18:50 -07002640 // Link the code of methods skipped by LinkCode.
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002641 for (size_t method_index = 0; it.HasNextDirectMethod(); ++method_index, it.Next()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07002642 mirror::ArtMethod* method = klass->GetDirectMethod(method_index);
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002643 if (!method->IsStatic()) {
2644 // Only update static methods.
2645 continue;
Ian Rogers19846512012-02-24 11:42:47 -08002646 }
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002647 const void* portable_code = nullptr;
2648 const void* quick_code = nullptr;
2649 if (has_oat_class) {
2650 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
2651 portable_code = oat_method.GetPortableCode();
2652 quick_code = oat_method.GetQuickCode();
2653 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08002654 const bool enter_interpreter = NeedsInterpreter(method, quick_code, portable_code);
2655 bool have_portable_code = false;
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002656 if (enter_interpreter) {
2657 // Use interpreter entry point.
Ian Rogers1a570662014-03-12 01:02:21 -07002658 // Check whether the method is native, in which case it's generic JNI.
Andreas Gampe2da88232014-02-27 12:26:20 -08002659 if (quick_code == nullptr && portable_code == nullptr && method->IsNative()) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002660 quick_code = GetQuickGenericJniStub();
Ian Rogers1a570662014-03-12 01:02:21 -07002661 portable_code = GetPortableToQuickBridge();
Andreas Gampe2da88232014-02-27 12:26:20 -08002662 } else {
Ian Rogers1a570662014-03-12 01:02:21 -07002663 portable_code = GetPortableToInterpreterBridge();
Andreas Gampe2da88232014-02-27 12:26:20 -08002664 quick_code = GetQuickToInterpreterBridge();
2665 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08002666 } else {
2667 if (portable_code == nullptr) {
2668 portable_code = GetPortableToQuickBridge();
2669 } else {
2670 have_portable_code = true;
2671 }
2672 if (quick_code == nullptr) {
2673 quick_code = GetQuickToPortableBridge();
2674 }
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002675 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08002676 runtime->GetInstrumentation()->UpdateMethodsCode(method, quick_code, portable_code,
2677 have_portable_code);
Ian Rogers19846512012-02-24 11:42:47 -08002678 }
Ian Rogers62d6c772013-02-27 08:32:07 -08002679 // Ignore virtual methods on the iterator.
Ian Rogers19846512012-02-24 11:42:47 -08002680}
2681
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002682void ClassLinker::LinkCode(Handle<mirror::ArtMethod> method,
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002683 const OatFile::OatClass* oat_class,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002684 uint32_t class_def_method_index) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002685 Runtime* runtime = Runtime::Current();
2686 if (runtime->IsCompiler()) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002687 // The following code only applies to a non-compiler runtime.
2688 return;
2689 }
Ian Rogers62d6c772013-02-27 08:32:07 -08002690 // Method shouldn't have already been linked.
Ian Rogersef7d42f2014-01-06 12:55:46 -08002691 DCHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr);
2692 DCHECK(method->GetEntryPointFromPortableCompiledCode() == nullptr);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002693 if (oat_class != nullptr) {
2694 // Every kind of method should at least get an invoke stub from the oat_method.
2695 // non-abstract methods also get their code pointers.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002696 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01002697 oat_method.LinkMethod(method.Get());
2698 }
Brian Carlstrom92827a52011-10-10 15:50:01 -07002699
Jeff Hao16743632013-05-08 10:59:04 -07002700 // Install entry point from interpreter.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002701 bool enter_interpreter = NeedsInterpreter(method.Get(),
Ian Rogersef7d42f2014-01-06 12:55:46 -08002702 method->GetEntryPointFromQuickCompiledCode(),
2703 method->GetEntryPointFromPortableCompiledCode());
Andreas Gampebf6b92a2014-03-05 16:11:04 -08002704 if (enter_interpreter && !method->IsNative()) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002705 method->SetEntryPointFromInterpreter(artInterpreterToInterpreterBridge);
Jeff Hao16743632013-05-08 10:59:04 -07002706 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07002707 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
Jeff Hao16743632013-05-08 10:59:04 -07002708 }
2709
Brian Carlstrom92827a52011-10-10 15:50:01 -07002710 if (method->IsAbstract()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002711 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
2712 method->SetEntryPointFromPortableCompiledCode(GetPortableToInterpreterBridge());
Brian Carlstrom92827a52011-10-10 15:50:01 -07002713 return;
2714 }
Ian Rogers19846512012-02-24 11:42:47 -08002715
Ian Rogersef7d42f2014-01-06 12:55:46 -08002716 bool have_portable_code = false;
Ian Rogers19846512012-02-24 11:42:47 -08002717 if (method->IsStatic() && !method->IsConstructor()) {
Ian Rogers62d6c772013-02-27 08:32:07 -08002718 // For static methods excluding the class initializer, install the trampoline.
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002719 // It will be replaced by the proper entry point by ClassLinker::FixupStaticTrampolines
2720 // after initializing class (see ClassLinker::InitializeClass method).
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002721 method->SetEntryPointFromQuickCompiledCode(GetQuickResolutionStub());
2722 method->SetEntryPointFromPortableCompiledCode(GetPortableResolutionStub());
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002723 } else if (enter_interpreter) {
Andreas Gampebf6b92a2014-03-05 16:11:04 -08002724 if (!method->IsNative()) {
2725 // Set entry point from compiled code if there's no code or in interpreter only mode.
2726 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
2727 method->SetEntryPointFromPortableCompiledCode(GetPortableToInterpreterBridge());
2728 } else {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002729 method->SetEntryPointFromQuickCompiledCode(GetQuickGenericJniStub());
Andreas Gampebf6b92a2014-03-05 16:11:04 -08002730 method->SetEntryPointFromPortableCompiledCode(GetPortableToQuickBridge());
2731 }
Ian Rogersef7d42f2014-01-06 12:55:46 -08002732 } else if (method->GetEntryPointFromPortableCompiledCode() != nullptr) {
2733 DCHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr);
2734 have_portable_code = true;
2735 method->SetEntryPointFromQuickCompiledCode(GetQuickToPortableBridge());
2736 } else {
2737 DCHECK(method->GetEntryPointFromQuickCompiledCode() != nullptr);
2738 method->SetEntryPointFromPortableCompiledCode(GetPortableToQuickBridge());
Ian Rogers0d6de042012-02-29 08:50:26 -08002739 }
jeffhao26c0a1a2012-01-17 16:28:33 -08002740
Ian Rogers62d6c772013-02-27 08:32:07 -08002741 if (method->IsNative()) {
2742 // Unregistering restores the dlsym lookup stub.
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002743 method->UnregisterNative();
Andreas Gampe90546832014-03-12 18:07:19 -07002744
2745 if (enter_interpreter) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002746 // We have a native method here without code. Then it should have either the generic JNI
2747 // trampoline as entrypoint (non-static), or the resolution trampoline (static).
2748 // TODO: this doesn't handle all the cases where trampolines may be installed.
2749 const void* entry_point = method->GetEntryPointFromQuickCompiledCode();
2750 DCHECK(IsQuickGenericJniStub(entry_point) || IsQuickResolutionStub(entry_point));
Andreas Gampe90546832014-03-12 18:07:19 -07002751 }
Brian Carlstrom92827a52011-10-10 15:50:01 -07002752 }
Ian Rogersf3e98552013-03-20 15:49:49 -07002753
Ian Rogers62d6c772013-02-27 08:32:07 -08002754 // Allow instrumentation its chance to hijack code.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002755 runtime->GetInstrumentation()->UpdateMethodsCode(method.Get(),
Ian Rogersef7d42f2014-01-06 12:55:46 -08002756 method->GetEntryPointFromQuickCompiledCode(),
2757 method->GetEntryPointFromPortableCompiledCode(),
2758 have_portable_code);
Brian Carlstrom92827a52011-10-10 15:50:01 -07002759}
2760
Fred Shih37f05ef2014-07-16 18:38:08 -07002761
Fred Shih37f05ef2014-07-16 18:38:08 -07002762
Ian Rogers7b078e82014-09-10 14:44:24 -07002763void ClassLinker::LoadClass(Thread* self, const DexFile& dex_file,
Brian Carlstromf615a612011-07-23 12:50:34 -07002764 const DexFile::ClassDef& dex_class_def,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002765 Handle<mirror::Class> klass,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002766 mirror::ClassLoader* class_loader) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002767 CHECK(klass.Get() != nullptr);
2768 CHECK(klass->GetDexCache() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002769 CHECK_EQ(mirror::Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07002770 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002771 CHECK(descriptor != nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07002772
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002773 klass->SetClass(GetClassRoot(kJavaLangClass));
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -07002774 if (kUseBakerOrBrooksReadBarrier) {
2775 klass->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -08002776 }
Andreas Gampe51829322014-08-25 15:05:04 -07002777 uint32_t access_flags = dex_class_def.GetJavaAccessFlags();
Brian Carlstrom8e3fb142013-10-09 21:00:27 -07002778 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002779 klass->SetAccessFlags(access_flags);
2780 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08002781 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002782 klass->SetStatus(mirror::Class::kStatusIdx, nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07002783
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002784 klass->SetDexClassDefIndex(dex_file.GetIndexForClassDef(dex_class_def));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002785 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Mathieu Chartier91a6dc42014-12-01 10:31:15 -08002786 CHECK(klass->GetDexCacheStrings() != nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07002787
Ian Rogers13735952014-10-08 12:43:28 -07002788 const uint8_t* class_data = dex_file.GetClassData(dex_class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002789 if (class_data == nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -07002790 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07002791 }
Vladimir Markod3c5beb2014-04-11 16:32:51 +01002792
Ian Rogers97b52f82014-08-14 11:34:07 -07002793
2794 bool has_oat_class = false;
2795 if (Runtime::Current()->IsStarted() && !Runtime::Current()->UseCompileTimeClassPath()) {
2796 OatFile::OatClass oat_class = FindOatClass(dex_file, klass->GetDexClassDefIndex(),
2797 &has_oat_class);
2798 if (has_oat_class) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002799 LoadClassMembers(self, dex_file, class_data, klass, &oat_class);
Ian Rogers97b52f82014-08-14 11:34:07 -07002800 }
2801 }
2802 if (!has_oat_class) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002803 LoadClassMembers(self, dex_file, class_data, klass, nullptr);
Vladimir Markod3c5beb2014-04-11 16:32:51 +01002804 }
2805}
2806
Ian Rogers7b078e82014-09-10 14:44:24 -07002807void ClassLinker::LoadClassMembers(Thread* self, const DexFile& dex_file,
Ian Rogers13735952014-10-08 12:43:28 -07002808 const uint8_t* class_data,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002809 Handle<mirror::Class> klass,
Vladimir Markod3c5beb2014-04-11 16:32:51 +01002810 const OatFile::OatClass* oat_class) {
2811 // Load fields.
Ian Rogers0571d352011-11-03 19:51:38 -07002812 ClassDataItemIterator it(dex_file, class_data);
2813 if (it.NumStaticFields() != 0) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002814 mirror::ObjectArray<mirror::ArtField>* statics = AllocArtFieldArray(self, it.NumStaticFields());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002815 if (UNLIKELY(statics == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002816 CHECK(self->IsExceptionPending()); // OOME.
2817 return;
2818 }
2819 klass->SetSFields(statics);
Ian Rogers0571d352011-11-03 19:51:38 -07002820 }
2821 if (it.NumInstanceFields() != 0) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002822 mirror::ObjectArray<mirror::ArtField>* fields =
2823 AllocArtFieldArray(self, it.NumInstanceFields());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002824 if (UNLIKELY(fields == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002825 CHECK(self->IsExceptionPending()); // OOME.
2826 return;
2827 }
2828 klass->SetIFields(fields);
Ian Rogers0571d352011-11-03 19:51:38 -07002829 }
2830 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002831 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002832 StackHandleScope<1> hs(self);
2833 Handle<mirror::ArtField> sfield(hs.NewHandle(AllocArtField(self)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002834 if (UNLIKELY(sfield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002835 CHECK(self->IsExceptionPending()); // OOME.
2836 return;
2837 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002838 klass->SetStaticField(i, sfield.Get());
Ian Rogers0571d352011-11-03 19:51:38 -07002839 LoadField(dex_file, it, klass, sfield);
2840 }
2841 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002842 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002843 StackHandleScope<1> hs(self);
2844 Handle<mirror::ArtField> ifield(hs.NewHandle(AllocArtField(self)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002845 if (UNLIKELY(ifield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002846 CHECK(self->IsExceptionPending()); // OOME.
2847 return;
2848 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002849 klass->SetInstanceField(i, ifield.Get());
Ian Rogers0571d352011-11-03 19:51:38 -07002850 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07002851 }
2852
Ian Rogers0571d352011-11-03 19:51:38 -07002853 // Load methods.
2854 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07002855 // TODO: append direct methods to class object
Ian Rogersa436fde2013-08-27 23:34:06 -07002856 mirror::ObjectArray<mirror::ArtMethod>* directs =
2857 AllocArtMethodArray(self, it.NumDirectMethods());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002858 if (UNLIKELY(directs == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002859 CHECK(self->IsExceptionPending()); // OOME.
2860 return;
2861 }
2862 klass->SetDirectMethods(directs);
Brian Carlstrom934486c2011-07-12 23:42:50 -07002863 }
Ian Rogers0571d352011-11-03 19:51:38 -07002864 if (it.NumVirtualMethods() != 0) {
2865 // TODO: append direct methods to class object
Ian Rogersa436fde2013-08-27 23:34:06 -07002866 mirror::ObjectArray<mirror::ArtMethod>* virtuals =
2867 AllocArtMethodArray(self, it.NumVirtualMethods());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002868 if (UNLIKELY(virtuals == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002869 CHECK(self->IsExceptionPending()); // OOME.
2870 return;
2871 }
2872 klass->SetVirtualMethods(virtuals);
Brian Carlstrom934486c2011-07-12 23:42:50 -07002873 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08002874 size_t class_def_method_index = 0;
Jeff Hao68caf9e2014-09-03 13:48:16 -07002875 uint32_t last_dex_method_index = DexFile::kDexNoIndex;
2876 size_t last_class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07002877 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002878 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002879 StackHandleScope<1> hs(self);
2880 Handle<mirror::ArtMethod> method(hs.NewHandle(LoadMethod(self, dex_file, it, klass)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002881 if (UNLIKELY(method.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002882 CHECK(self->IsExceptionPending()); // OOME.
2883 return;
2884 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002885 klass->SetDirectMethod(i, method.Get());
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002886 LinkCode(method, oat_class, class_def_method_index);
Jeff Hao68caf9e2014-09-03 13:48:16 -07002887 uint32_t it_method_index = it.GetMemberIndex();
2888 if (last_dex_method_index == it_method_index) {
2889 // duplicate case
2890 method->SetMethodIndex(last_class_def_method_index);
2891 } else {
2892 method->SetMethodIndex(class_def_method_index);
2893 last_dex_method_index = it_method_index;
2894 last_class_def_method_index = class_def_method_index;
2895 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08002896 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07002897 }
2898 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002899 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002900 StackHandleScope<1> hs(self);
2901 Handle<mirror::ArtMethod> method(hs.NewHandle(LoadMethod(self, dex_file, it, klass)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002902 if (UNLIKELY(method.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002903 CHECK(self->IsExceptionPending()); // OOME.
2904 return;
2905 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002906 klass->SetVirtualMethod(i, method.Get());
Ian Rogersfb6adba2012-03-04 21:51:51 -08002907 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002908 LinkCode(method, oat_class, class_def_method_index);
Ian Rogersfb6adba2012-03-04 21:51:51 -08002909 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07002910 }
2911 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07002912}
2913
Elliott Hughes1bac54f2012-03-16 12:48:31 -07002914void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002915 Handle<mirror::Class> klass,
2916 Handle<mirror::ArtField> dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002917 uint32_t field_idx = it.GetMemberIndex();
2918 dst->SetDexFieldIndex(field_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002919 dst->SetDeclaringClass(klass.Get());
Andreas Gampe51829322014-08-25 15:05:04 -07002920 dst->SetAccessFlags(it.GetFieldAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07002921}
2922
Brian Carlstromea46f952013-07-30 01:26:50 -07002923mirror::ArtMethod* ClassLinker::LoadMethod(Thread* self, const DexFile& dex_file,
Ian Rogersa436fde2013-08-27 23:34:06 -07002924 const ClassDataItemIterator& it,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002925 Handle<mirror::Class> klass) {
Ian Rogers19846512012-02-24 11:42:47 -08002926 uint32_t dex_method_idx = it.GetMemberIndex();
Ian Rogers19846512012-02-24 11:42:47 -08002927 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002928 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_);
Mathieu Chartier66f19252012-09-18 08:57:04 -07002929
Brian Carlstromea46f952013-07-30 01:26:50 -07002930 mirror::ArtMethod* dst = AllocArtMethod(self);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002931 if (UNLIKELY(dst == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002932 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002933 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002934 }
Brian Carlstromea46f952013-07-30 01:26:50 -07002935 DCHECK(dst->IsArtMethod()) << PrettyDescriptor(dst->GetClass());
Mathieu Chartier66f19252012-09-18 08:57:04 -07002936
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002937 ScopedAssertNoThreadSuspension ants(self, "LoadMethod");
Mathieu Chartier66f19252012-09-18 08:57:04 -07002938 dst->SetDexMethodIndex(dex_method_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002939 dst->SetDeclaringClass(klass.Get());
Ian Rogers0571d352011-11-03 19:51:38 -07002940 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Brian Carlstrom934486c2011-07-12 23:42:50 -07002941
Ian Rogers19846512012-02-24 11:42:47 -08002942 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002943 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Mathieu Chartier66f19252012-09-18 08:57:04 -07002944
Andreas Gampe51829322014-08-25 15:05:04 -07002945 uint32_t access_flags = it.GetMethodAccessFlags();
Ian Rogers241b5de2013-10-09 17:58:57 -07002946
Ian Rogersdfb325e2013-10-30 01:00:44 -07002947 if (UNLIKELY(strcmp("finalize", method_name) == 0)) {
Ian Rogers241b5de2013-10-09 17:58:57 -07002948 // Set finalizable flag on declaring class.
Ian Rogersdfb325e2013-10-30 01:00:44 -07002949 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) {
2950 // Void return type.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002951 if (klass->GetClassLoader() != nullptr) { // All non-boot finalizer methods are flagged.
Ian Rogersdfb325e2013-10-30 01:00:44 -07002952 klass->SetFinalizable();
2953 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002954 std::string temp;
2955 const char* klass_descriptor = klass->GetDescriptor(&temp);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002956 // The Enum class declares a "final" finalize() method to prevent subclasses from
2957 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
2958 // subclasses, so we exclude it here.
2959 // We also want to avoid setting the flag on Object, where we know that finalize() is
2960 // empty.
Ian Rogers1ff3c982014-08-12 02:30:58 -07002961 if (strcmp(klass_descriptor, "Ljava/lang/Object;") != 0 &&
2962 strcmp(klass_descriptor, "Ljava/lang/Enum;") != 0) {
Ian Rogers241b5de2013-10-09 17:58:57 -07002963 klass->SetFinalizable();
Ian Rogers241b5de2013-10-09 17:58:57 -07002964 }
2965 }
2966 }
2967 } else if (method_name[0] == '<') {
2968 // Fix broken access flags for initializers. Bug 11157540.
Ian Rogersdfb325e2013-10-30 01:00:44 -07002969 bool is_init = (strcmp("<init>", method_name) == 0);
2970 bool is_clinit = !is_init && (strcmp("<clinit>", method_name) == 0);
Ian Rogers241b5de2013-10-09 17:58:57 -07002971 if (UNLIKELY(!is_init && !is_clinit)) {
2972 LOG(WARNING) << "Unexpected '<' at start of method name " << method_name;
2973 } else {
2974 if (UNLIKELY((access_flags & kAccConstructor) == 0)) {
2975 LOG(WARNING) << method_name << " didn't have expected constructor access flag in class "
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002976 << PrettyDescriptor(klass.Get()) << " in dex file " << dex_file.GetLocation();
Ian Rogers241b5de2013-10-09 17:58:57 -07002977 access_flags |= kAccConstructor;
2978 }
2979 }
2980 }
2981 dst->SetAccessFlags(access_flags);
Mathieu Chartier66f19252012-09-18 08:57:04 -07002982
Mathieu Chartier66f19252012-09-18 08:57:04 -07002983 return dst;
Brian Carlstrom934486c2011-07-12 23:42:50 -07002984}
2985
Ian Rogers7b078e82014-09-10 14:44:24 -07002986void ClassLinker::AppendToBootClassPath(Thread* self, const DexFile& dex_file) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002987 StackHandleScope<1> hs(self);
2988 Handle<mirror::DexCache> dex_cache(hs.NewHandle(AllocDexCache(self, dex_file)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002989 CHECK(dex_cache.Get() != nullptr) << "Failed to allocate dex cache for "
2990 << dex_file.GetLocation();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002991 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07002992}
2993
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002994void ClassLinker::AppendToBootClassPath(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002995 Handle<mirror::DexCache> dex_cache) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002996 CHECK(dex_cache.Get() != nullptr) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002997 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07002998 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002999}
3000
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003001bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003002 dex_lock_.AssertSharedHeld(Thread::Current());
Mathieu Chartier66f19252012-09-18 08:57:04 -07003003 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003004 mirror::DexCache* dex_cache = GetDexCache(i);
3005 if (dex_cache->GetDexFile() == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08003006 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07003007 }
3008 }
3009 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07003010}
3011
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003012bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003013 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07003014 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003015}
3016
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003017void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003018 Handle<mirror::DexCache> dex_cache) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003019 dex_lock_.AssertExclusiveHeld(Thread::Current());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003020 CHECK(dex_cache.Get() != nullptr) << dex_file.GetLocation();
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -07003021 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()))
3022 << dex_cache->GetLocation()->ToModifiedUtf8() << " " << dex_file.GetLocation();
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07003023 dex_caches_.push_back(GcRoot<mirror::DexCache>(dex_cache.Get()));
Mathieu Chartier66f19252012-09-18 08:57:04 -07003024 dex_cache->SetDexFile(&dex_file);
Mathieu Chartier893263b2014-03-04 11:07:42 -08003025 if (log_new_dex_caches_roots_) {
3026 // TODO: This is not safe if we can remove dex caches.
3027 new_dex_cache_roots_.push_back(dex_caches_.size() - 1);
3028 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003029}
3030
Brian Carlstromaded5f72011-10-07 17:15:04 -07003031void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Ian Rogers1f539342012-10-03 21:09:42 -07003032 Thread* self = Thread::Current();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003033 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003034 ReaderMutexLock mu(self, dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003035 if (IsDexFileRegisteredLocked(dex_file)) {
3036 return;
3037 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07003038 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003039 // Don't alloc while holding the lock, since allocation may need to
3040 // suspend all threads and another thread may need the dex_lock_ to
3041 // get to a suspend point.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003042 StackHandleScope<1> hs(self);
3043 Handle<mirror::DexCache> dex_cache(hs.NewHandle(AllocDexCache(self, dex_file)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003044 CHECK(dex_cache.Get() != nullptr) << "Failed to allocate dex cache for "
3045 << dex_file.GetLocation();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003046 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003047 WriterMutexLock mu(self, dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003048 if (IsDexFileRegisteredLocked(dex_file)) {
3049 return;
3050 }
3051 RegisterDexFileLocked(dex_file, dex_cache);
3052 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07003053}
3054
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003055void ClassLinker::RegisterDexFile(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003056 Handle<mirror::DexCache> dex_cache) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003057 WriterMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003058 RegisterDexFileLocked(dex_file, dex_cache);
3059}
3060
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003061mirror::DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003062 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003063 // Search assuming unique-ness of dex file.
Mathieu Chartier66f19252012-09-18 08:57:04 -07003064 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003065 mirror::DexCache* dex_cache = GetDexCache(i);
Mathieu Chartier66f19252012-09-18 08:57:04 -07003066 if (dex_cache->GetDexFile() == &dex_file) {
3067 return dex_cache;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003068 }
3069 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003070 // Search matching by location name.
3071 std::string location(dex_file.GetLocation());
3072 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003073 mirror::DexCache* dex_cache = GetDexCache(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003074 if (dex_cache->GetDexFile()->GetLocation() == location) {
3075 return dex_cache;
3076 }
3077 }
3078 // Failure, dump diagnostic and abort.
3079 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003080 mirror::DexCache* dex_cache = GetDexCache(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003081 LOG(ERROR) << "Registered dex file " << i << " = " << dex_cache->GetDexFile()->GetLocation();
3082 }
3083 LOG(FATAL) << "Failed to find DexCache for DexFile " << location;
Ian Rogerse0a02da2014-12-02 14:10:53 -08003084 UNREACHABLE();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003085}
3086
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003087void ClassLinker::FixupDexCaches(mirror::ArtMethod* resolution_method) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003088 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Ian Rogers19846512012-02-24 11:42:47 -08003089 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003090 mirror::DexCache* dex_cache = GetDexCache(i);
3091 dex_cache->Fixup(resolution_method);
Ian Rogers19846512012-02-24 11:42:47 -08003092 }
3093}
3094
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003095mirror::Class* ClassLinker::CreatePrimitiveClass(Thread* self, Primitive::Type type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003096 mirror::Class* klass = AllocClass(self, mirror::Class::PrimitiveClassSize());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003097 if (UNLIKELY(klass == nullptr)) {
3098 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003099 }
3100 return InitializePrimitiveClass(klass, type);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003101}
3102
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003103mirror::Class* ClassLinker::InitializePrimitiveClass(mirror::Class* primitive_class,
3104 Primitive::Type type) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003105 CHECK(primitive_class != nullptr);
Ian Rogers1f539342012-10-03 21:09:42 -07003106 // Must hold lock on object when initializing.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003107 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003108 StackHandleScope<1> hs(self);
3109 Handle<mirror::Class> h_class(hs.NewHandle(primitive_class));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003110 ObjectLock<mirror::Class> lock(self, h_class);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003111 primitive_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003112 primitive_class->SetPrimitiveType(type);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003113 primitive_class->SetStatus(mirror::Class::kStatusInitialized, self);
3114 const char* descriptor = Primitive::Descriptor(type);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003115 mirror::Class* existing = InsertClass(descriptor, primitive_class,
3116 ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003117 CHECK(existing == nullptr) << "InitPrimitiveClass(" << type << ") failed";
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003118 return primitive_class;
Carl Shapiro565f5072011-07-10 13:39:43 -07003119}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003120
Brian Carlstrombe977852011-07-19 14:54:54 -07003121// Create an array class (i.e. the class object for the array, not the
3122// array itself). "descriptor" looks like "[C" or "[[[[B" or
3123// "[Ljava/lang/String;".
3124//
3125// If "descriptor" refers to an array of primitives, look up the
3126// primitive type's internally-generated class object.
3127//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003128// "class_loader" is the class loader of the class that's referring to
3129// us. It's used to ensure that we're looking for the element type in
3130// the right context. It does NOT become the class loader for the
3131// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07003132//
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003133// Returns nullptr with an exception raised on failure.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003134mirror::Class* ClassLinker::CreateArrayClass(Thread* self, const char* descriptor, size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003135 Handle<mirror::ClassLoader> class_loader) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003136 // Identify the underlying component type
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003137 CHECK_EQ('[', descriptor[0]);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003138 StackHandleScope<2> hs(self);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003139 MutableHandle<mirror::Class> component_type(hs.NewHandle(FindClass(self, descriptor + 1,
3140 class_loader)));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003141 if (component_type.Get() == nullptr) {
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08003142 DCHECK(self->IsExceptionPending());
Andreas Gampedc13d7d2014-07-23 20:18:36 -07003143 // We need to accept erroneous classes as component types.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003144 const size_t component_hash = ComputeModifiedUtf8Hash(descriptor + 1);
3145 component_type.Assign(LookupClass(self, descriptor + 1, component_hash, class_loader.Get()));
Andreas Gampedc13d7d2014-07-23 20:18:36 -07003146 if (component_type.Get() == nullptr) {
3147 DCHECK(self->IsExceptionPending());
3148 return nullptr;
3149 } else {
3150 self->ClearException();
3151 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003152 }
Ian Rogers2d10b202014-05-12 19:15:18 -07003153 if (UNLIKELY(component_type->IsPrimitiveVoid())) {
3154 ThrowNoClassDefFoundError("Attempt to create array of void primitive type");
3155 return nullptr;
3156 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003157 // See if the component type is already loaded. Array classes are
3158 // always associated with the class loader of their underlying
3159 // element type -- an array of Strings goes with the loader for
3160 // java/lang/String -- so we need to look for it there. (The
3161 // caller should have checked for the existence of the class
3162 // before calling here, but they did so with *their* class loader,
3163 // not the component type's loader.)
3164 //
3165 // If we find it, the caller adds "loader" to the class' initiating
3166 // loader list, which should prevent us from going through this again.
3167 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003168 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003169 // are the same, because our caller (FindClass) just did the
3170 // lookup. (Even if we get this wrong we still have correct behavior,
3171 // because we effectively do this lookup again when we add the new
3172 // class to the hash table --- necessary because of possible races with
3173 // other threads.)
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003174 if (class_loader.Get() != component_type->GetClassLoader()) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003175 mirror::Class* new_class = LookupClass(self, descriptor, hash, component_type->GetClassLoader());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003176 if (new_class != nullptr) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07003177 return new_class;
3178 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003179 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07003180
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003181 // Fill out the fields in the Class.
3182 //
3183 // It is possible to execute some methods against arrays, because
3184 // all arrays are subclasses of java_lang_Object_, so we need to set
3185 // up a vtable. We can just point at the one in java_lang_Object_.
3186 //
3187 // Array classes are simple enough that we don't need to do a full
3188 // link step.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003189 auto new_class = hs.NewHandle<mirror::Class>(nullptr);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003190 if (UNLIKELY(!init_done_)) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003191 // Classes that were hand created, ie not by FindSystemClass
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003192 if (strcmp(descriptor, "[Ljava/lang/Class;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003193 new_class.Assign(GetClassRoot(kClassArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003194 } else if (strcmp(descriptor, "[Ljava/lang/Object;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003195 new_class.Assign(GetClassRoot(kObjectArrayClass));
Ian Rogers6f3dbba2014-10-14 17:41:57 -07003196 } else if (strcmp(descriptor, GetClassRootDescriptor(kJavaLangStringArrayClass)) == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003197 new_class.Assign(GetClassRoot(kJavaLangStringArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003198 } else if (strcmp(descriptor,
Ian Rogers6f3dbba2014-10-14 17:41:57 -07003199 GetClassRootDescriptor(kJavaLangReflectArtMethodArrayClass)) == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003200 new_class.Assign(GetClassRoot(kJavaLangReflectArtMethodArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003201 } else if (strcmp(descriptor,
Ian Rogers6f3dbba2014-10-14 17:41:57 -07003202 GetClassRootDescriptor(kJavaLangReflectArtFieldArrayClass)) == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003203 new_class.Assign(GetClassRoot(kJavaLangReflectArtFieldArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003204 } else if (strcmp(descriptor, "[C") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003205 new_class.Assign(GetClassRoot(kCharArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003206 } else if (strcmp(descriptor, "[I") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003207 new_class.Assign(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003208 }
3209 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003210 if (new_class.Get() == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003211 new_class.Assign(AllocClass(self, mirror::Array::ClassSize()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003212 if (new_class.Get() == nullptr) {
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08003213 return nullptr;
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003214 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003215 new_class->SetComponentType(component_type.Get());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003216 }
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003217 ObjectLock<mirror::Class> lock(self, new_class); // Must hold lock on object when initializing.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003218 DCHECK(new_class->GetComponentType() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003219 mirror::Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003220 new_class->SetSuperClass(java_lang_Object);
3221 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003222 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003223 new_class->SetClassLoader(component_type->GetClassLoader());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003224 new_class->SetStatus(mirror::Class::kStatusLoaded, self);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003225 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003226 StackHandleScope<mirror::Class::kImtSize> hs2(self,
3227 Runtime::Current()->GetImtUnimplementedMethod());
3228 new_class->PopulateEmbeddedImtAndVTable(&hs2);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003229 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003230 new_class->SetStatus(mirror::Class::kStatusInitialized, self);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003231 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07003232 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003233
3234
3235 // All arrays have java/lang/Cloneable and java/io/Serializable as
3236 // interfaces. We need to set that up here, so that stuff like
3237 // "instanceof" works right.
3238 //
3239 // Note: The GC could run during the call to FindSystemClass,
3240 // so we need to make sure the class object is GC-valid while we're in
3241 // there. Do this by clearing the interface list so the GC will just
3242 // think that the entries are null.
3243
3244
3245 // Use the single, global copies of "interfaces" and "iftable"
3246 // (remember not to free them for arrays).
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003247 {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07003248 mirror::IfTable* array_iftable = array_iftable_.Read();
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003249 CHECK(array_iftable != nullptr);
3250 new_class->SetIfTable(array_iftable);
3251 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003252
Elliott Hughes00626c22013-06-14 15:04:14 -07003253 // Inherit access flags from the component type.
3254 int access_flags = new_class->GetComponentType()->GetAccessFlags();
3255 // Lose any implementation detail flags; in particular, arrays aren't finalizable.
3256 access_flags &= kAccJavaFlagsMask;
3257 // Arrays can't be used as a superclass or interface, so we want to add "abstract final"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003258 // and remove "interface".
Elliott Hughes00626c22013-06-14 15:04:14 -07003259 access_flags |= kAccAbstract | kAccFinal;
3260 access_flags &= ~kAccInterface;
3261
3262 new_class->SetAccessFlags(access_flags);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003263
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003264 mirror::Class* existing = InsertClass(descriptor, new_class.Get(), hash);
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08003265 if (existing == nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003266 return new_class.Get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003267 }
3268 // Another thread must have loaded the class after we
3269 // started but before we finished. Abandon what we've
3270 // done.
3271 //
3272 // (Yes, this happens.)
3273
Brian Carlstrom07bb8552012-01-18 22:10:50 -08003274 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07003275}
3276
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003277mirror::Class* ClassLinker::FindPrimitiveClass(char type) {
Ian Rogers62f05122014-03-21 11:21:29 -07003278 switch (type) {
3279 case 'B':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003280 return GetClassRoot(kPrimitiveByte);
Ian Rogers62f05122014-03-21 11:21:29 -07003281 case 'C':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003282 return GetClassRoot(kPrimitiveChar);
Ian Rogers62f05122014-03-21 11:21:29 -07003283 case 'D':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003284 return GetClassRoot(kPrimitiveDouble);
Ian Rogers62f05122014-03-21 11:21:29 -07003285 case 'F':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003286 return GetClassRoot(kPrimitiveFloat);
Ian Rogers62f05122014-03-21 11:21:29 -07003287 case 'I':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003288 return GetClassRoot(kPrimitiveInt);
Ian Rogers62f05122014-03-21 11:21:29 -07003289 case 'J':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003290 return GetClassRoot(kPrimitiveLong);
Ian Rogers62f05122014-03-21 11:21:29 -07003291 case 'S':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003292 return GetClassRoot(kPrimitiveShort);
Ian Rogers62f05122014-03-21 11:21:29 -07003293 case 'Z':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003294 return GetClassRoot(kPrimitiveBoolean);
Ian Rogers62f05122014-03-21 11:21:29 -07003295 case 'V':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003296 return GetClassRoot(kPrimitiveVoid);
Ian Rogers62f05122014-03-21 11:21:29 -07003297 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003298 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07003299 }
Elliott Hughesbd935992011-08-22 11:59:34 -07003300 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003301 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003302 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003303}
3304
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003305mirror::Class* ClassLinker::InsertClass(const char* descriptor, mirror::Class* klass,
3306 size_t hash) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003307 if (VLOG_IS_ON(class_linker)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003308 mirror::DexCache* dex_cache = klass->GetDexCache();
Brian Carlstromae826982011-11-09 01:33:42 -08003309 std::string source;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003310 if (dex_cache != nullptr) {
Brian Carlstromae826982011-11-09 01:33:42 -08003311 source += " from ";
3312 source += dex_cache->GetLocation()->ToModifiedUtf8();
3313 }
3314 LOG(INFO) << "Loaded class " << descriptor << source;
3315 }
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003316 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003317 mirror::Class* existing = LookupClassFromTableLocked(descriptor, klass->GetClassLoader(), hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003318 if (existing != nullptr) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08003319 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07003320 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003321 if (kIsDebugBuild && !klass->IsTemp() && klass->GetClassLoader() == nullptr &&
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003322 dex_cache_image_class_lookup_required_) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003323 // Check a class loaded with the system class loader matches one in the image if the class
3324 // is in the image.
3325 existing = LookupClassFromImage(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003326 if (existing != nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003327 CHECK_EQ(klass, existing);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003328 }
3329 }
Mathieu Chartier4e305412014-02-19 10:54:44 -08003330 VerifyObject(klass);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003331 class_table_.InsertWithHash(GcRoot<mirror::Class>(klass), hash);
Mathieu Chartier893263b2014-03-04 11:07:42 -08003332 if (log_new_class_table_roots_) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003333 new_class_roots_.push_back(GcRoot<mirror::Class>(klass));
Mathieu Chartier893263b2014-03-04 11:07:42 -08003334 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003335 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003336}
3337
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003338mirror::Class* ClassLinker::UpdateClass(const char* descriptor, mirror::Class* klass,
3339 size_t hash) {
3340 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003341 auto existing_it = class_table_.FindWithHash(std::make_pair(descriptor, klass->GetClassLoader()),
3342 hash);
3343 if (existing_it == class_table_.end()) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003344 CHECK(klass->IsProxyClass());
3345 return nullptr;
3346 }
3347
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003348 mirror::Class* existing = existing_it->Read();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003349 CHECK_NE(existing, klass) << descriptor;
3350 CHECK(!existing->IsResolved()) << descriptor;
3351 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusResolving) << descriptor;
3352
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003353 CHECK(!klass->IsTemp()) << descriptor;
3354 if (kIsDebugBuild && klass->GetClassLoader() == nullptr &&
3355 dex_cache_image_class_lookup_required_) {
3356 // Check a class loaded with the system class loader matches one in the image if the class
3357 // is in the image.
3358 existing = LookupClassFromImage(descriptor);
3359 if (existing != nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003360 CHECK_EQ(klass, existing) << descriptor;
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003361 }
3362 }
3363 VerifyObject(klass);
3364
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003365 // Update the element in the hash set.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003366 *existing_it = GcRoot<mirror::Class>(klass);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003367 if (log_new_class_table_roots_) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003368 new_class_roots_.push_back(GcRoot<mirror::Class>(klass));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003369 }
3370
3371 return existing;
3372}
3373
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003374bool ClassLinker::RemoveClass(const char* descriptor, mirror::ClassLoader* class_loader) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003375 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003376 auto pair = std::make_pair(descriptor, class_loader);
3377 auto it = class_table_.Find(pair);
3378 if (it != class_table_.end()) {
3379 class_table_.Erase(it);
3380 return true;
3381 }
3382 it = pre_zygote_class_table_.Find(pair);
3383 if (it != pre_zygote_class_table_.end()) {
3384 pre_zygote_class_table_.Erase(it);
3385 return true;
Brian Carlstromae826982011-11-09 01:33:42 -08003386 }
3387 return false;
3388}
3389
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003390mirror::Class* ClassLinker::LookupClass(Thread* self, const char* descriptor, size_t hash,
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003391 mirror::ClassLoader* class_loader) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003392 {
Ian Rogers7b078e82014-09-10 14:44:24 -07003393 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003394 mirror::Class* result = LookupClassFromTableLocked(descriptor, class_loader, hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003395 if (result != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003396 return result;
3397 }
Sameer Abu Asal2c6de222013-05-02 17:38:59 -07003398 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003399 if (class_loader != nullptr || !dex_cache_image_class_lookup_required_) {
3400 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003401 } else {
3402 // Lookup failed but need to search dex_caches_.
3403 mirror::Class* result = LookupClassFromImage(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003404 if (result != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003405 InsertClass(descriptor, result, hash);
3406 } else {
3407 // Searching the image dex files/caches failed, we don't want to get into this situation
3408 // often as map searches are faster, so after kMaxFailedDexCacheLookups move all image
3409 // classes into the class table.
Ian Rogers68b56852014-08-29 20:19:11 -07003410 constexpr uint32_t kMaxFailedDexCacheLookups = 1000;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003411 if (++failed_dex_cache_class_lookups_ > kMaxFailedDexCacheLookups) {
3412 MoveImageClassesToClassTable();
3413 }
3414 }
3415 return result;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003416 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08003417}
3418
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003419mirror::Class* ClassLinker::LookupClassFromTableLocked(const char* descriptor,
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003420 mirror::ClassLoader* class_loader,
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003421 size_t hash) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003422 auto descriptor_pair = std::make_pair(descriptor, class_loader);
3423 auto it = pre_zygote_class_table_.FindWithHash(descriptor_pair, hash);
3424 if (it == pre_zygote_class_table_.end()) {
3425 it = class_table_.FindWithHash(descriptor_pair, hash);
3426 if (it == class_table_.end()) {
3427 return nullptr;
Ian Rogers5d76c432011-10-31 21:42:49 -07003428 }
3429 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003430 return it->Read();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003431}
3432
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003433static mirror::ObjectArray<mirror::DexCache>* GetImageDexCaches()
3434 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3435 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003436 CHECK(image != nullptr);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003437 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
3438 return root->AsObjectArray<mirror::DexCache>();
3439}
3440
3441void ClassLinker::MoveImageClassesToClassTable() {
3442 Thread* self = Thread::Current();
3443 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
3444 if (!dex_cache_image_class_lookup_required_) {
3445 return; // All dex cache classes are already in the class table.
3446 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07003447 ScopedAssertNoThreadSuspension ants(self, "Moving image classes to class table");
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003448 mirror::ObjectArray<mirror::DexCache>* dex_caches = GetImageDexCaches();
Ian Rogers1ff3c982014-08-12 02:30:58 -07003449 std::string temp;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003450 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
3451 mirror::DexCache* dex_cache = dex_caches->Get(i);
3452 mirror::ObjectArray<mirror::Class>* types = dex_cache->GetResolvedTypes();
3453 for (int32_t j = 0; j < types->GetLength(); j++) {
3454 mirror::Class* klass = types->Get(j);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003455 if (klass != nullptr) {
3456 DCHECK(klass->GetClassLoader() == nullptr);
Ian Rogers1ff3c982014-08-12 02:30:58 -07003457 const char* descriptor = klass->GetDescriptor(&temp);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003458 size_t hash = ComputeModifiedUtf8Hash(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003459 mirror::Class* existing = LookupClassFromTableLocked(descriptor, nullptr, hash);
3460 if (existing != nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003461 CHECK_EQ(existing, klass) << PrettyClassAndClassLoader(existing) << " != "
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003462 << PrettyClassAndClassLoader(klass);
3463 } else {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003464 class_table_.Insert(GcRoot<mirror::Class>(klass));
Mathieu Chartier893263b2014-03-04 11:07:42 -08003465 if (log_new_class_table_roots_) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003466 new_class_roots_.push_back(GcRoot<mirror::Class>(klass));
Mathieu Chartier893263b2014-03-04 11:07:42 -08003467 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003468 }
3469 }
Elliott Hughes6fa602d2011-12-02 17:54:25 -08003470 }
3471 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003472 dex_cache_image_class_lookup_required_ = false;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003473}
3474
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003475void ClassLinker::MoveClassTableToPreZygote() {
3476 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
3477 DCHECK(pre_zygote_class_table_.Empty());
3478 pre_zygote_class_table_ = std::move(class_table_);
3479 class_table_.Clear();
3480}
3481
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003482mirror::Class* ClassLinker::LookupClassFromImage(const char* descriptor) {
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07003483 ScopedAssertNoThreadSuspension ants(Thread::Current(), "Image class lookup");
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003484 mirror::ObjectArray<mirror::DexCache>* dex_caches = GetImageDexCaches();
3485 for (int32_t i = 0; i < dex_caches->GetLength(); ++i) {
3486 mirror::DexCache* dex_cache = dex_caches->Get(i);
3487 const DexFile* dex_file = dex_cache->GetDexFile();
Vladimir Marko801a8112014-01-06 14:28:16 +00003488 // Try binary searching the string/type index.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003489 const DexFile::StringId* string_id = dex_file->FindStringId(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003490 if (string_id != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003491 const DexFile::TypeId* type_id =
3492 dex_file->FindTypeId(dex_file->GetIndexForStringId(*string_id));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003493 if (type_id != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003494 uint16_t type_idx = dex_file->GetIndexForTypeId(*type_id);
3495 mirror::Class* klass = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003496 if (klass != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003497 return klass;
3498 }
3499 }
3500 }
3501 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003502 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003503}
3504
3505void ClassLinker::LookupClasses(const char* descriptor, std::vector<mirror::Class*>& result) {
3506 result.clear();
3507 if (dex_cache_image_class_lookup_required_) {
3508 MoveImageClassesToClassTable();
3509 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003510 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
3511 while (true) {
3512 auto it = class_table_.Find(descriptor);
3513 if (it == class_table_.end()) {
3514 break;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08003515 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003516 result.push_back(it->Read());
3517 class_table_.Erase(it);
3518 }
3519 for (mirror::Class* k : result) {
3520 class_table_.Insert(GcRoot<mirror::Class>(k));
3521 }
3522 size_t pre_zygote_start = result.size();
3523 // Now handle the pre zygote table.
3524 // Note: This dirties the pre-zygote table but shouldn't be an issue since LookupClasses is only
3525 // called from the debugger.
3526 while (true) {
3527 auto it = pre_zygote_class_table_.Find(descriptor);
3528 if (it == pre_zygote_class_table_.end()) {
3529 break;
3530 }
3531 result.push_back(it->Read());
3532 pre_zygote_class_table_.Erase(it);
3533 }
3534 for (size_t i = pre_zygote_start; i < result.size(); ++i) {
3535 pre_zygote_class_table_.Insert(GcRoot<mirror::Class>(result[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08003536 }
3537}
3538
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003539void ClassLinker::VerifyClass(Thread* self, Handle<mirror::Class> klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08003540 // TODO: assert that the monitor on the Class is held
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003541 ObjectLock<mirror::Class> lock(self, klass);
Elliott Hughesd9c67be2012-02-02 19:54:06 -08003542
Ian Rogers9ffb0392012-09-10 11:56:50 -07003543 // Don't attempt to re-verify if already sufficiently verified.
Andreas Gampebb0c7f62014-09-11 10:59:33 -07003544 if (klass->IsVerified()) {
Andreas Gampe48498592014-09-10 19:48:05 -07003545 EnsurePreverifiedMethods(klass);
jeffhao98eacac2011-09-14 16:11:53 -07003546 return;
3547 }
Andreas Gampebb0c7f62014-09-11 10:59:33 -07003548 if (klass->IsCompileTimeVerified() && Runtime::Current()->IsCompiler()) {
3549 return;
3550 }
jeffhao98eacac2011-09-14 16:11:53 -07003551
Ian Rogers9ffb0392012-09-10 11:56:50 -07003552 // The class might already be erroneous, for example at compile time if we attempted to verify
3553 // this class as a parent to another.
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08003554 if (klass->IsErroneous()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003555 ThrowEarlierClassFailure(klass.Get());
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08003556 return;
3557 }
3558
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003559 if (klass->GetStatus() == mirror::Class::kStatusResolved) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003560 klass->SetStatus(mirror::Class::kStatusVerifying, self);
Ian Rogers9ffb0392012-09-10 11:56:50 -07003561 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003562 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime)
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003563 << PrettyClass(klass.Get());
Ian Rogers9ffb0392012-09-10 11:56:50 -07003564 CHECK(!Runtime::Current()->IsCompiler());
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003565 klass->SetStatus(mirror::Class::kStatusVerifyingAtRuntime, self);
Ian Rogers9ffb0392012-09-10 11:56:50 -07003566 }
jeffhao98eacac2011-09-14 16:11:53 -07003567
Jeff Hao4a200f52014-04-01 14:58:49 -07003568 // Skip verification if disabled.
3569 if (!Runtime::Current()->IsVerificationEnabled()) {
3570 klass->SetStatus(mirror::Class::kStatusVerified, self);
Andreas Gampe48498592014-09-10 19:48:05 -07003571 EnsurePreverifiedMethods(klass);
Jeff Hao4a200f52014-04-01 14:58:49 -07003572 return;
3573 }
3574
Ian Rogers9ffb0392012-09-10 11:56:50 -07003575 // Verify super class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003576 StackHandleScope<2> hs(self);
3577 Handle<mirror::Class> super(hs.NewHandle(klass->GetSuperClass()));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003578 if (super.Get() != nullptr) {
Ian Rogers9ffb0392012-09-10 11:56:50 -07003579 // Acquire lock to prevent races on verifying the super class.
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003580 ObjectLock<mirror::Class> super_lock(self, super);
Ian Rogers1c5eb702012-02-01 09:18:34 -08003581
3582 if (!super->IsVerified() && !super->IsErroneous()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003583 VerifyClass(self, super);
Ian Rogers1c5eb702012-02-01 09:18:34 -08003584 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07003585 if (!super->IsCompileTimeVerified()) {
Brian Carlstromf3632832014-05-20 15:36:53 -07003586 std::string error_msg(
3587 StringPrintf("Rejecting class %s that attempts to sub-class erroneous class %s",
3588 PrettyDescriptor(klass.Get()).c_str(),
3589 PrettyDescriptor(super.Get()).c_str()));
Ian Rogers1c5eb702012-02-01 09:18:34 -08003590 LOG(ERROR) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003591 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException(nullptr)));
3592 if (cause.Get() != nullptr) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08003593 self->ClearException();
3594 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003595 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str());
3596 if (cause.Get() != nullptr) {
3597 self->GetException(nullptr)->SetCause(cause.Get());
Ian Rogers1c5eb702012-02-01 09:18:34 -08003598 }
Jeff Hao22cb09b2013-12-12 14:29:15 -08003599 ClassReference ref(klass->GetDexCache()->GetDexFile(), klass->GetDexClassDefIndex());
Vladimir Marko2b5eaa22013-12-13 13:59:30 +00003600 if (Runtime::Current()->IsCompiler()) {
3601 Runtime::Current()->GetCompilerCallbacks()->ClassRejected(ref);
3602 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003603 klass->SetStatus(mirror::Class::kStatusError, self);
Ian Rogers1c5eb702012-02-01 09:18:34 -08003604 return;
3605 }
3606 }
3607
Elliott Hughes634eb2e2012-03-22 16:06:28 -07003608 // Try to use verification information from the oat file, otherwise do runtime verification.
Ian Rogers4445a7e2012-10-05 17:19:13 -07003609 const DexFile& dex_file = *klass->GetDexCache()->GetDexFile();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003610 mirror::Class::Status oat_file_class_status(mirror::Class::kStatusNotReady);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003611 bool preverified = VerifyClassUsingOatFile(dex_file, klass.Get(), oat_file_class_status);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003612 if (oat_file_class_status == mirror::Class::kStatusError) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07003613 VLOG(class_linker) << "Skipping runtime verification of erroneous class "
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003614 << PrettyDescriptor(klass.Get()) << " in "
Ian Rogerse6bb3b22013-08-19 21:51:45 -07003615 << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003616 ThrowVerifyError(klass.Get(), "Rejecting class %s because it failed compile-time verification",
3617 PrettyDescriptor(klass.Get()).c_str());
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003618 klass->SetStatus(mirror::Class::kStatusError, self);
jeffhaoec014232012-09-05 10:42:25 -07003619 return;
3620 }
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02003621 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
Ian Rogers62d6c772013-02-27 08:32:07 -08003622 std::string error_msg;
jeffhaof1e6b7c2012-06-05 18:33:30 -07003623 if (!preverified) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003624 verifier_failure = verifier::MethodVerifier::VerifyClass(self, klass.Get(),
Ian Rogers8b2c0b92013-09-19 02:56:49 -07003625 Runtime::Current()->IsCompiler(),
3626 &error_msg);
jeffhaof1e6b7c2012-06-05 18:33:30 -07003627 }
3628 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Ian Rogers529781d2012-07-23 17:24:29 -07003629 if (!preverified && verifier_failure != verifier::MethodVerifier::kNoFailure) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003630 VLOG(class_linker) << "Soft verification failure in class " << PrettyDescriptor(klass.Get())
Ian Rogers529781d2012-07-23 17:24:29 -07003631 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
3632 << " because: " << error_msg;
3633 }
Ian Rogers1f539342012-10-03 21:09:42 -07003634 self->AssertNoPendingException();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07003635 // Make sure all classes referenced by catch blocks are resolved.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003636 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07003637 if (verifier_failure == verifier::MethodVerifier::kNoFailure) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003638 // Even though there were no verifier failures we need to respect whether the super-class
3639 // was verified or requiring runtime reverification.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003640 if (super.Get() == nullptr || super->IsVerified()) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003641 klass->SetStatus(mirror::Class::kStatusVerified, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003642 } else {
3643 CHECK_EQ(super->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003644 klass->SetStatus(mirror::Class::kStatusRetryVerificationAtRuntime, self);
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07003645 // Pretend a soft failure occured so that we don't consider the class verified below.
3646 verifier_failure = verifier::MethodVerifier::kSoftFailure;
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003647 }
jeffhaoe4f0b2a2012-08-30 11:18:57 -07003648 } else {
3649 CHECK_EQ(verifier_failure, verifier::MethodVerifier::kSoftFailure);
3650 // Soft failures at compile time should be retried at runtime. Soft
3651 // failures at runtime will be handled by slow paths in the generated
3652 // code. Set status accordingly.
3653 if (Runtime::Current()->IsCompiler()) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003654 klass->SetStatus(mirror::Class::kStatusRetryVerificationAtRuntime, self);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07003655 } else {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003656 klass->SetStatus(mirror::Class::kStatusVerified, self);
Andreas Gampebb0c7f62014-09-11 10:59:33 -07003657 // As this is a fake verified status, make sure the methods are _not_ marked preverified
3658 // later.
Ian Rogers7b078e82014-09-10 14:44:24 -07003659 klass->SetPreverified();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07003660 }
3661 }
jeffhao5cfd6fb2011-09-27 13:54:29 -07003662 } else {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003663 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass.Get())
Ian Rogers1c5eb702012-02-01 09:18:34 -08003664 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
3665 << " because: " << error_msg;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003666 self->AssertNoPendingException();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003667 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str());
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003668 klass->SetStatus(mirror::Class::kStatusError, self);
jeffhao5cfd6fb2011-09-27 13:54:29 -07003669 }
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02003670 if (preverified || verifier_failure == verifier::MethodVerifier::kNoFailure) {
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07003671 // Class is verified so we don't need to do any access check on its methods.
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02003672 // Let the interpreter know it by setting the kAccPreverified flag onto each
3673 // method.
3674 // Note: we're going here during compilation and at runtime. When we set the
3675 // kAccPreverified flag when compiling image classes, the flag is recorded
3676 // in the image and is set when loading the image.
Andreas Gampe48498592014-09-10 19:48:05 -07003677 EnsurePreverifiedMethods(klass);
3678 }
3679}
3680
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003681void ClassLinker::EnsurePreverifiedMethods(Handle<mirror::Class> klass) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003682 if (!klass->IsPreverified()) {
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02003683 klass->SetPreverifiedFlagOnAllMethods();
Ian Rogers7b078e82014-09-10 14:44:24 -07003684 klass->SetPreverified();
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02003685 }
jeffhao98eacac2011-09-14 16:11:53 -07003686}
3687
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003688bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, mirror::Class* klass,
3689 mirror::Class::Status& oat_file_class_status) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07003690 // If we're compiling, we can only verify the class using the oat file if
3691 // we are not compiling the image or if the class we're verifying is not part of
3692 // the app. In other words, we will only check for preverification of bootclasspath
3693 // classes.
3694 if (Runtime::Current()->IsCompiler()) {
3695 // Are we compiling the bootclasspath?
3696 if (!Runtime::Current()->UseCompileTimeClassPath()) {
3697 return false;
3698 }
3699 // We are compiling an app (not the image).
3700
3701 // Is this an app class? (I.e. not a bootclasspath class)
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003702 if (klass->GetClassLoader() != nullptr) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07003703 return false;
3704 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003705 }
Anwar Ghuloum044d2832013-07-17 15:22:31 -07003706
Vladimir Markoaa4497d2014-09-05 14:01:17 +01003707 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003708 // In case we run without an image there won't be a backing oat file.
3709 if (oat_dex_file == nullptr) {
Anwar Ghuloumad256bb2013-07-18 14:58:55 -07003710 return false;
3711 }
3712
Ian Rogers8b2c0b92013-09-19 02:56:49 -07003713 uint16_t class_def_index = klass->GetDexClassDefIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +01003714 oat_file_class_status = oat_dex_file->GetOatClass(class_def_index).GetStatus();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003715 if (oat_file_class_status == mirror::Class::kStatusVerified ||
3716 oat_file_class_status == mirror::Class::kStatusInitialized) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07003717 return true;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003718 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003719 if (oat_file_class_status == mirror::Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07003720 // Compile time verification failed with a soft error. Compile time verification can fail
3721 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08003722 // class ... {
3723 // Foo x;
3724 // .... () {
3725 // if (...) {
3726 // v1 gets assigned a type of resolved class Foo
3727 // } else {
3728 // v1 gets assigned a type of unresolved class Bar
3729 // }
3730 // iput x = v1
3731 // } }
3732 // when we merge v1 following the if-the-else it results in Conflict
3733 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
3734 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
3735 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
3736 // at compile time).
3737 return false;
3738 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003739 if (oat_file_class_status == mirror::Class::kStatusError) {
jeffhao1ac29442012-03-26 11:37:32 -07003740 // Compile time verification failed with a hard error. This is caused by invalid instructions
3741 // in the class. These errors are unrecoverable.
3742 return false;
3743 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003744 if (oat_file_class_status == mirror::Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08003745 // Status is uninitialized if we couldn't determine the status at compile time, for example,
3746 // not loading the class.
3747 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
3748 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003749 return false;
3750 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07003751 std::string temp;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07003752 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003753 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " "
Ian Rogers1ff3c982014-08-12 02:30:58 -07003754 << klass->GetDescriptor(&temp);
Ian Rogerse0a02da2014-12-02 14:10:53 -08003755 UNREACHABLE();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003756}
3757
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003758void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003759 Handle<mirror::Class> klass) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003760 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
3761 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
3762 }
3763 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
3764 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
3765 }
3766}
3767
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003768void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file,
Brian Carlstromea46f952013-07-30 01:26:50 -07003769 mirror::ArtMethod* method) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003770 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
3771 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003772 if (code_item == nullptr) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003773 return; // native or abstract method
3774 }
3775 if (code_item->tries_size_ == 0) {
3776 return; // nothing to process
3777 }
Ian Rogers13735952014-10-08 12:43:28 -07003778 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003779 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
3780 ClassLinker* linker = Runtime::Current()->GetClassLinker();
3781 for (uint32_t idx = 0; idx < handlers_size; idx++) {
3782 CatchHandlerIterator iterator(handlers_ptr);
3783 for (; iterator.HasNext(); iterator.Next()) {
3784 // Ensure exception types are resolved so that they don't need resolution to be delivered,
3785 // unresolved exception types will be ignored by exception delivery
3786 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003787 mirror::Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003788 if (exception_type == nullptr) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003789 DCHECK(Thread::Current()->IsExceptionPending());
3790 Thread::Current()->ClearException();
3791 }
3792 }
3793 }
3794 handlers_ptr = iterator.EndDataPointer();
3795 }
3796}
3797
Brian Carlstromea46f952013-07-30 01:26:50 -07003798static void CheckProxyConstructor(mirror::ArtMethod* constructor);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003799static void CheckProxyMethod(Handle<mirror::ArtMethod> method,
3800 Handle<mirror::ArtMethod> prototype);
Ian Rogersc2b44472011-12-14 21:17:17 -08003801
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -07003802mirror::Class* ClassLinker::CreateProxyClass(ScopedObjectAccessAlreadyRunnable& soa, jstring name,
Mathieu Chartier590fee92013-09-13 13:46:47 -07003803 jobjectArray interfaces, jobject loader,
3804 jobjectArray methods, jobjectArray throws) {
3805 Thread* self = soa.Self();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003806 StackHandleScope<8> hs(self);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003807 MutableHandle<mirror::Class> klass(hs.NewHandle(
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003808 AllocClass(self, GetClassRoot(kJavaLangClass), sizeof(mirror::Class))));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003809 if (klass.Get() == nullptr) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003810 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003811 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003812 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003813 DCHECK(klass->GetClass() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003814 klass->SetObjectSize(sizeof(mirror::Proxy));
Andreas Gampe48498592014-09-10 19:48:05 -07003815 // Set the class access flags incl. preverified, so we do not try to set the flag on the methods.
3816 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal | kAccPreverified);
Mathieu Chartier590fee92013-09-13 13:46:47 -07003817 klass->SetClassLoader(soa.Decode<mirror::ClassLoader*>(loader));
Ian Rogersc2b44472011-12-14 21:17:17 -08003818 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Mathieu Chartier590fee92013-09-13 13:46:47 -07003819 klass->SetName(soa.Decode<mirror::String*>(name));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003820 mirror::Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003821 klass->SetDexCache(proxy_class->GetDexCache());
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003822 klass->SetStatus(mirror::Class::kStatusIdx, self);
Ian Rogersc2b44472011-12-14 21:17:17 -08003823
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003824 // Instance fields are inherited, but we add a couple of static fields...
Ian Rogersa436fde2013-08-27 23:34:06 -07003825 {
3826 mirror::ObjectArray<mirror::ArtField>* sfields = AllocArtFieldArray(self, 2);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003827 if (UNLIKELY(sfields == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003828 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003829 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003830 }
3831 klass->SetSFields(sfields);
3832 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003833 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
3834 // our proxy, so Class.getInterfaces doesn't return the flattened set.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003835 Handle<mirror::ArtField> interfaces_sfield(hs.NewHandle(AllocArtField(self)));
3836 if (UNLIKELY(interfaces_sfield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003837 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003838 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003839 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003840 klass->SetStaticField(0, interfaces_sfield.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003841 interfaces_sfield->SetDexFieldIndex(0);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003842 interfaces_sfield->SetDeclaringClass(klass.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003843 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
3844 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003845 Handle<mirror::ArtField> throws_sfield(hs.NewHandle(AllocArtField(self)));
3846 if (UNLIKELY(throws_sfield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003847 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003848 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003849 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003850 klass->SetStaticField(1, throws_sfield.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003851 throws_sfield->SetDexFieldIndex(1);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003852 throws_sfield->SetDeclaringClass(klass.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003853 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04003854
Ian Rogers466bb252011-10-14 03:29:56 -07003855 // Proxies have 1 direct method, the constructor
Ian Rogersa436fde2013-08-27 23:34:06 -07003856 {
Mathieu Chartier590fee92013-09-13 13:46:47 -07003857 mirror::ObjectArray<mirror::ArtMethod>* directs = AllocArtMethodArray(self, 1);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003858 if (UNLIKELY(directs == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003859 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003860 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003861 }
3862 klass->SetDirectMethods(directs);
3863 mirror::ArtMethod* constructor = CreateProxyConstructor(self, klass, proxy_class);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003864 if (UNLIKELY(constructor == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003865 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003866 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003867 }
3868 klass->SetDirectMethod(0, constructor);
3869 }
Jesse Wilson95caa792011-10-12 18:14:17 -04003870
Mathieu Chartier590fee92013-09-13 13:46:47 -07003871 // Create virtual method using specified prototypes.
3872 size_t num_virtual_methods =
3873 soa.Decode<mirror::ObjectArray<mirror::ArtMethod>*>(methods)->GetLength();
Ian Rogersa436fde2013-08-27 23:34:06 -07003874 {
Brian Carlstromf3632832014-05-20 15:36:53 -07003875 mirror::ObjectArray<mirror::ArtMethod>* virtuals = AllocArtMethodArray(self,
3876 num_virtual_methods);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003877 if (UNLIKELY(virtuals == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003878 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003879 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003880 }
3881 klass->SetVirtualMethods(virtuals);
3882 }
Jesse Wilson95caa792011-10-12 18:14:17 -04003883 for (size_t i = 0; i < num_virtual_methods; ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003884 StackHandleScope<1> hs2(self);
Mathieu Chartier590fee92013-09-13 13:46:47 -07003885 mirror::ObjectArray<mirror::ArtMethod>* decoded_methods =
3886 soa.Decode<mirror::ObjectArray<mirror::ArtMethod>*>(methods);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003887 Handle<mirror::ArtMethod> prototype(hs2.NewHandle(decoded_methods->Get(i)));
Ian Rogersa436fde2013-08-27 23:34:06 -07003888 mirror::ArtMethod* clone = CreateProxyMethod(self, klass, prototype);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003889 if (UNLIKELY(clone == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003890 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003891 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003892 }
3893 klass->SetVirtualMethod(i, clone);
Jesse Wilson95caa792011-10-12 18:14:17 -04003894 }
Ian Rogersc2b44472011-12-14 21:17:17 -08003895
3896 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
Brian Carlstromf3632832014-05-20 15:36:53 -07003897 klass->SetStatus(mirror::Class::kStatusLoaded, self); // Now effectively in the loaded state.
Ian Rogers62d6c772013-02-27 08:32:07 -08003898 self->AssertNoPendingException();
Ian Rogersc2b44472011-12-14 21:17:17 -08003899
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003900 std::string descriptor(GetDescriptorForProxy(klass.Get()));
3901 mirror::Class* new_class = nullptr;
Ian Rogersc8982582012-09-07 16:53:25 -07003902 {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003903 // Must hold lock on object when resolved.
3904 ObjectLock<mirror::Class> resolution_lock(self, klass);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003905 // Link the fields and virtual methods, creating vtable and iftables
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003906 Handle<mirror::ObjectArray<mirror::Class> > h_interfaces(
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003907 hs.NewHandle(soa.Decode<mirror::ObjectArray<mirror::Class>*>(interfaces)));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003908 if (!LinkClass(self, descriptor.c_str(), klass, h_interfaces, &new_class)) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003909 klass->SetStatus(mirror::Class::kStatusError, self);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003910 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003911 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003912 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003913
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003914 CHECK(klass->IsRetired());
3915 CHECK_NE(klass.Get(), new_class);
3916 klass.Assign(new_class);
3917
3918 CHECK_EQ(interfaces_sfield->GetDeclaringClass(), new_class);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003919 interfaces_sfield->SetObject<false>(klass.Get(),
3920 soa.Decode<mirror::ObjectArray<mirror::Class>*>(interfaces));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003921 CHECK_EQ(throws_sfield->GetDeclaringClass(), new_class);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003922 throws_sfield->SetObject<false>(klass.Get(),
3923 soa.Decode<mirror::ObjectArray<mirror::ObjectArray<mirror::Class> >*>(throws));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003924
3925 {
3926 // Lock on klass is released. Lock new class object.
3927 ObjectLock<mirror::Class> initialization_lock(self, klass);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003928 klass->SetStatus(mirror::Class::kStatusInitialized, self);
Ian Rogersc8982582012-09-07 16:53:25 -07003929 }
Ian Rogersc2b44472011-12-14 21:17:17 -08003930
3931 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07003932 if (kIsDebugBuild) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003933 CHECK(klass->GetIFields() == nullptr);
Ian Rogersc2b44472011-12-14 21:17:17 -08003934 CheckProxyConstructor(klass->GetDirectMethod(0));
3935 for (size_t i = 0; i < num_virtual_methods; ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003936 StackHandleScope<2> hs2(self);
Mathieu Chartier590fee92013-09-13 13:46:47 -07003937 mirror::ObjectArray<mirror::ArtMethod>* decoded_methods =
3938 soa.Decode<mirror::ObjectArray<mirror::ArtMethod>*>(methods);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003939 Handle<mirror::ArtMethod> prototype(hs2.NewHandle(decoded_methods->Get(i)));
3940 Handle<mirror::ArtMethod> virtual_method(hs2.NewHandle(klass->GetVirtualMethod(i)));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003941 CheckProxyMethod(virtual_method, prototype);
Ian Rogersc2b44472011-12-14 21:17:17 -08003942 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003943
Mathieu Chartier590fee92013-09-13 13:46:47 -07003944 mirror::String* decoded_name = soa.Decode<mirror::String*>(name);
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003945 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
Mathieu Chartier590fee92013-09-13 13:46:47 -07003946 decoded_name->ToModifiedUtf8().c_str()));
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003947 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
3948
3949 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
Mathieu Chartier590fee92013-09-13 13:46:47 -07003950 decoded_name->ToModifiedUtf8().c_str()));
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003951 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08003952
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003953 CHECK_EQ(klass.Get()->GetInterfaces(),
Brian Carlstromf3632832014-05-20 15:36:53 -07003954 soa.Decode<mirror::ObjectArray<mirror::Class>*>(interfaces));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003955 CHECK_EQ(klass.Get()->GetThrows(),
Brian Carlstromf3632832014-05-20 15:36:53 -07003956 soa.Decode<mirror::ObjectArray<mirror::ObjectArray<mirror::Class>>*>(throws));
Ian Rogersc2b44472011-12-14 21:17:17 -08003957 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003958 mirror::Class* existing = InsertClass(descriptor.c_str(), klass.Get(),
3959 ComputeModifiedUtf8Hash(descriptor.c_str()));
Mathieu Chartier31b9d662013-10-14 11:53:12 -07003960 CHECK(existing == nullptr);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003961 return klass.Get();
Jesse Wilson95caa792011-10-12 18:14:17 -04003962}
3963
Ian Rogersef7d42f2014-01-06 12:55:46 -08003964std::string ClassLinker::GetDescriptorForProxy(mirror::Class* proxy_class) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003965 DCHECK(proxy_class->IsProxyClass());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003966 mirror::String* name = proxy_class->GetName();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003967 DCHECK(name != nullptr);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003968 return DotToDescriptor(name->ToModifiedUtf8().c_str());
3969}
3970
Ian Rogersef7d42f2014-01-06 12:55:46 -08003971mirror::ArtMethod* ClassLinker::FindMethodForProxy(mirror::Class* proxy_class,
3972 mirror::ArtMethod* proxy_method) {
Ian Rogers16f93672012-02-14 12:29:06 -08003973 DCHECK(proxy_class->IsProxyClass());
3974 DCHECK(proxy_method->IsProxyMethod());
3975 // Locate the dex cache of the original interface/Object
Andreas Gampe58a5af82014-07-31 16:23:49 -07003976 mirror::DexCache* dex_cache = nullptr;
Ian Rogers16f93672012-02-14 12:29:06 -08003977 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003978 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Ian Rogers16f93672012-02-14 12:29:06 -08003979 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003980 mirror::DexCache* a_dex_cache = GetDexCache(i);
Andreas Gampe58a5af82014-07-31 16:23:49 -07003981 if (proxy_method->HasSameDexCacheResolvedTypes(a_dex_cache->GetResolvedTypes())) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003982 dex_cache = a_dex_cache;
Ian Rogers16f93672012-02-14 12:29:06 -08003983 break;
3984 }
3985 }
3986 }
Andreas Gampe58a5af82014-07-31 16:23:49 -07003987 CHECK(dex_cache != nullptr);
Ian Rogers16f93672012-02-14 12:29:06 -08003988 uint32_t method_idx = proxy_method->GetDexMethodIndex();
Brian Carlstromea46f952013-07-30 01:26:50 -07003989 mirror::ArtMethod* resolved_method = dex_cache->GetResolvedMethod(method_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07003990 CHECK(resolved_method != nullptr);
Ian Rogers16f93672012-02-14 12:29:06 -08003991 return resolved_method;
3992}
3993
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003994
Brian Carlstromea46f952013-07-30 01:26:50 -07003995mirror::ArtMethod* ClassLinker::CreateProxyConstructor(Thread* self,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003996 Handle<mirror::Class> klass,
Brian Carlstromea46f952013-07-30 01:26:50 -07003997 mirror::Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07003998 // Create constructor for Proxy that must initialize h
Brian Carlstromea46f952013-07-30 01:26:50 -07003999 mirror::ObjectArray<mirror::ArtMethod>* proxy_direct_methods =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004000 proxy_class->GetDirectMethods();
Brian Carlstromea46f952013-07-30 01:26:50 -07004001 CHECK_EQ(proxy_direct_methods->GetLength(), 16);
4002 mirror::ArtMethod* proxy_constructor = proxy_direct_methods->Get(2);
Sebastien Hertzae94e352014-08-27 15:32:56 +02004003 // Ensure constructor is in dex cache so that we can use the dex cache to look up the overridden
4004 // constructor method.
4005 proxy_class->GetDexCache()->SetResolvedMethod(proxy_constructor->GetDexMethodIndex(),
4006 proxy_constructor);
Jeff Haodb8a6642014-08-14 17:18:52 -07004007 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
4008 // code_ too)
Jeff Haof0a3f092014-07-24 16:26:09 -07004009 mirror::ArtMethod* constructor = down_cast<mirror::ArtMethod*>(proxy_constructor->Clone(self));
4010 if (constructor == nullptr) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004011 CHECK(self->IsExceptionPending()); // OOME.
Jeff Haof0a3f092014-07-24 16:26:09 -07004012 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07004013 }
Ian Rogers466bb252011-10-14 03:29:56 -07004014 // Make this constructor public and fix the class to be our Proxy version
4015 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004016 constructor->SetDeclaringClass(klass.Get());
Ian Rogersc2b44472011-12-14 21:17:17 -08004017 return constructor;
4018}
4019
Brian Carlstromea46f952013-07-30 01:26:50 -07004020static void CheckProxyConstructor(mirror::ArtMethod* constructor)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004021 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07004022 CHECK(constructor->IsConstructor());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004023 CHECK_STREQ(constructor->GetName(), "<init>");
4024 CHECK_STREQ(constructor->GetSignature().ToString().c_str(),
4025 "(Ljava/lang/reflect/InvocationHandler;)V");
Ian Rogers466bb252011-10-14 03:29:56 -07004026 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04004027}
4028
Mathieu Chartierc528dba2013-11-26 12:00:11 -08004029mirror::ArtMethod* ClassLinker::CreateProxyMethod(Thread* self,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004030 Handle<mirror::Class> klass,
4031 Handle<mirror::ArtMethod> prototype) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004032 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
4033 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08004034 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004035 prototype.Get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004036 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07004037 // as necessary
Brian Carlstromea46f952013-07-30 01:26:50 -07004038 mirror::ArtMethod* method = down_cast<mirror::ArtMethod*>(prototype->Clone(self));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004039 if (UNLIKELY(method == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004040 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004041 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07004042 }
Ian Rogers466bb252011-10-14 03:29:56 -07004043
4044 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
4045 // the intersection of throw exceptions as defined in Proxy
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004046 method->SetDeclaringClass(klass.Get());
Ian Rogers466bb252011-10-14 03:29:56 -07004047 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04004048
Ian Rogers466bb252011-10-14 03:29:56 -07004049 // At runtime the method looks like a reference and argument saving method, clone the code
4050 // related parameters from this method.
Ian Rogersef7d42f2014-01-06 12:55:46 -08004051 method->SetEntryPointFromQuickCompiledCode(GetQuickProxyInvokeHandler());
4052 method->SetEntryPointFromPortableCompiledCode(GetPortableProxyInvokeHandler());
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07004053 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
Ian Rogers16f93672012-02-14 12:29:06 -08004054
Ian Rogersc2b44472011-12-14 21:17:17 -08004055 return method;
4056}
Jesse Wilson95caa792011-10-12 18:14:17 -04004057
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004058static void CheckProxyMethod(Handle<mirror::ArtMethod> method,
4059 Handle<mirror::ArtMethod> prototype)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004060 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07004061 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004062 CHECK(!prototype->IsFinal());
4063 CHECK(method->IsFinal());
4064 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08004065
4066 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
4067 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
Andreas Gampe58a5af82014-07-31 16:23:49 -07004068 CHECK(prototype->HasSameDexCacheResolvedMethods(method.Get()));
4069 CHECK(prototype->HasSameDexCacheResolvedTypes(method.Get()));
Ian Rogers19846512012-02-24 11:42:47 -08004070 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
4071
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004072 CHECK_STREQ(method->GetName(), prototype->GetName());
4073 CHECK_STREQ(method->GetShorty(), prototype->GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07004074 // More complex sanity - via dex cache
Ian Rogersded66a02014-10-28 18:12:55 -07004075 CHECK_EQ(method->GetInterfaceMethodIfProxy()->GetReturnType(), prototype->GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04004076}
4077
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004078static bool CanWeInitializeClass(mirror::Class* klass, bool can_init_statics,
4079 bool can_init_parents)
4080 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom610e49f2013-11-04 17:07:22 -08004081 if (can_init_statics && can_init_parents) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004082 return true;
4083 }
4084 if (!can_init_statics) {
4085 // Check if there's a class initializer.
Ian Rogersd91d6d62013-09-25 20:26:14 -07004086 mirror::ArtMethod* clinit = klass->FindClassInitializer();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004087 if (clinit != nullptr) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004088 return false;
4089 }
4090 // Check if there are encoded static values needing initialization.
4091 if (klass->NumStaticFields() != 0) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07004092 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004093 DCHECK(dex_class_def != nullptr);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004094 if (dex_class_def->static_values_off_ != 0) {
4095 return false;
4096 }
4097 }
4098 }
4099 if (!klass->IsInterface() && klass->HasSuperClass()) {
4100 mirror::Class* super_class = klass->GetSuperClass();
4101 if (!can_init_parents && !super_class->IsInitialized()) {
4102 return false;
4103 } else {
Brian Carlstrom610e49f2013-11-04 17:07:22 -08004104 if (!CanWeInitializeClass(super_class, can_init_statics, can_init_parents)) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004105 return false;
4106 }
4107 }
4108 }
4109 return true;
4110}
4111
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004112bool ClassLinker::InitializeClass(Thread* self, Handle<mirror::Class> klass,
Ian Rogers7b078e82014-09-10 14:44:24 -07004113 bool can_init_statics, bool can_init_parents) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004114 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
4115
4116 // Are we already initialized and therefore done?
4117 // Note: we differ from the JLS here as we don't do this under the lock, this is benign as
4118 // an initialized class will never change its state.
4119 if (klass->IsInitialized()) {
4120 return true;
4121 }
4122
4123 // Fast fail if initialization requires a full runtime. Not part of the JLS.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004124 if (!CanWeInitializeClass(klass.Get(), can_init_statics, can_init_parents)) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004125 return false;
4126 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004127
Ian Rogers7b078e82014-09-10 14:44:24 -07004128 self->AllowThreadSuspension();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004129 uint64_t t0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004130 {
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07004131 ObjectLock<mirror::Class> lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004132
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004133 // Re-check under the lock in case another thread initialized ahead of us.
4134 if (klass->IsInitialized()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004135 return true;
4136 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004137
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004138 // Was the class already found to be erroneous? Done under the lock to match the JLS.
Brian Carlstromd1422f82011-09-28 11:37:09 -07004139 if (klass->IsErroneous()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004140 ThrowEarlierClassFailure(klass.Get());
Brian Carlstromb23eab12014-10-08 17:55:21 -07004141 VlogClassInitializationFailure(klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -07004142 return false;
4143 }
4144
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004145 CHECK(klass->IsResolved()) << PrettyClass(klass.Get()) << ": state=" << klass->GetStatus();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004146
4147 if (!klass->IsVerified()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004148 VerifyClass(self, klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004149 if (!klass->IsVerified()) {
4150 // We failed to verify, expect either the klass to be erroneous or verification failed at
4151 // compile time.
4152 if (klass->IsErroneous()) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07004153 CHECK(self->IsExceptionPending());
Brian Carlstromb23eab12014-10-08 17:55:21 -07004154 VlogClassInitializationFailure(klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004155 } else {
4156 CHECK(Runtime::Current()->IsCompiler());
4157 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
jeffhaoa9b3bf42012-06-06 17:18:39 -07004158 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004159 return false;
Mathieu Chartier524507a2014-08-27 15:28:28 -07004160 } else {
4161 self->AssertNoPendingException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004162 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004163 }
4164
Brian Carlstromd1422f82011-09-28 11:37:09 -07004165 // If the class is kStatusInitializing, either this thread is
4166 // initializing higher up the stack or another thread has beat us
4167 // to initializing and we need to wait. Either way, this
4168 // invocation of InitializeClass will not be responsible for
4169 // running <clinit> and will return.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004170 if (klass->GetStatus() == mirror::Class::kStatusInitializing) {
Mathieu Chartier524507a2014-08-27 15:28:28 -07004171 // Could have got an exception during verification.
4172 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07004173 VlogClassInitializationFailure(klass);
Mathieu Chartier524507a2014-08-27 15:28:28 -07004174 return false;
4175 }
Elliott Hughes005ab2e2011-09-11 17:15:31 -07004176 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07004177 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004178 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004179 return true;
4180 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07004181 // No. That's fine. Wait for another thread to finish initializing.
4182 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004183 }
4184
4185 if (!ValidateSuperClassDescriptors(klass)) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004186 klass->SetStatus(mirror::Class::kStatusError, self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004187 return false;
4188 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004189 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004190
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004191 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusVerified) << PrettyClass(klass.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004192
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004193 // From here out other threads may observe that we're initializing and so changes of state
4194 // require the a notification.
Elliott Hughesdcc24742011-09-07 14:02:44 -07004195 klass->SetClinitThreadId(self->GetTid());
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004196 klass->SetStatus(mirror::Class::kStatusInitializing, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004197
4198 t0 = NanoTime();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004199 }
4200
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07004201 // Initialize super classes, must be done while initializing for the JLS.
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004202 if (!klass->IsInterface() && klass->HasSuperClass()) {
4203 mirror::Class* super_class = klass->GetSuperClass();
4204 if (!super_class->IsInitialized()) {
4205 CHECK(!super_class->IsInterface());
4206 CHECK(can_init_parents);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004207 StackHandleScope<1> hs(self);
4208 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
Ian Rogers7b078e82014-09-10 14:44:24 -07004209 bool super_initialized = InitializeClass(self, handle_scope_super, can_init_statics, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004210 if (!super_initialized) {
4211 // The super class was verified ahead of entering initializing, we should only be here if
4212 // the super class became erroneous due to initialization.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004213 CHECK(handle_scope_super->IsErroneous() && self->IsExceptionPending())
Brian Carlstromf3632832014-05-20 15:36:53 -07004214 << "Super class initialization failed for "
4215 << PrettyDescriptor(handle_scope_super.Get())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004216 << " that has unexpected status " << handle_scope_super->GetStatus()
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004217 << "\nPending exception:\n"
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004218 << (self->GetException(nullptr) != nullptr ? self->GetException(nullptr)->Dump() : "");
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07004219 ObjectLock<mirror::Class> lock(self, klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004220 // Initialization failed because the super-class is erroneous.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004221 klass->SetStatus(mirror::Class::kStatusError, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004222 return false;
4223 }
Ian Rogers1bddec32012-02-04 12:27:34 -08004224 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004225 }
4226
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004227 const size_t num_static_fields = klass->NumStaticFields();
4228 if (num_static_fields > 0) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07004229 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004230 CHECK(dex_class_def != nullptr);
Mathieu Chartierf8322842014-05-16 10:59:25 -07004231 const DexFile& dex_file = klass->GetDexFile();
Hiroshi Yamauchi67ef46a2014-08-21 15:59:43 -07004232 StackHandleScope<3> hs(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004233 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Mathieu Chartierf8322842014-05-16 10:59:25 -07004234 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004235
4236 // Eagerly fill in static fields so that the we don't have to do as many expensive
4237 // Class::FindStaticField in ResolveField.
4238 for (size_t i = 0; i < num_static_fields; ++i) {
4239 mirror::ArtField* field = klass->GetStaticField(i);
4240 const uint32_t field_idx = field->GetDexFieldIndex();
4241 mirror::ArtField* resolved_field = dex_cache->GetResolvedField(field_idx);
4242 if (resolved_field == nullptr) {
4243 dex_cache->SetResolvedField(field_idx, field);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004244 } else {
4245 DCHECK_EQ(field, resolved_field);
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004246 }
4247 }
4248
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004249 EncodedStaticFieldValueIterator value_it(dex_file, &dex_cache, &class_loader,
4250 this, *dex_class_def);
Ian Rogers13735952014-10-08 12:43:28 -07004251 const uint8_t* class_data = dex_file.GetClassData(*dex_class_def);
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004252 ClassDataItemIterator field_it(dex_file, class_data);
4253 if (value_it.HasNext()) {
4254 DCHECK(field_it.HasNextStaticField());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004255 CHECK(can_init_statics);
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004256 for ( ; value_it.HasNext(); value_it.Next(), field_it.Next()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004257 StackHandleScope<1> hs2(self);
4258 Handle<mirror::ArtField> field(hs2.NewHandle(
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004259 ResolveField(dex_file, field_it.GetMemberIndex(), dex_cache, class_loader, true)));
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01004260 if (Runtime::Current()->IsActiveTransaction()) {
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004261 value_it.ReadValueToField<true>(field);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01004262 } else {
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004263 value_it.ReadValueToField<false>(field);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01004264 }
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004265 DCHECK(!value_it.HasNext() || field_it.HasNextStaticField());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004266 }
4267 }
4268 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004269
Ian Rogersd91d6d62013-09-25 20:26:14 -07004270 mirror::ArtMethod* clinit = klass->FindClassInitializer();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004271 if (clinit != nullptr) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004272 CHECK(can_init_statics);
Ian Rogers5d27faf2014-05-02 17:17:18 -07004273 JValue result;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004274 clinit->Invoke(self, nullptr, 0, &result, "V");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004275 }
4276
Ian Rogers7b078e82014-09-10 14:44:24 -07004277 self->AllowThreadSuspension();
Elliott Hughes83df2ac2011-10-11 16:37:54 -07004278 uint64_t t1 = NanoTime();
4279
Ian Rogersbdfb1a52012-01-12 14:05:22 -08004280 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004281 {
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07004282 ObjectLock<mirror::Class> lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004283
4284 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07004285 WrapExceptionInInitializer(klass);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004286 klass->SetStatus(mirror::Class::kStatusError, self);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08004287 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004288 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07004289 RuntimeStats* global_stats = Runtime::Current()->GetStats();
4290 RuntimeStats* thread_stats = self->GetStats();
4291 ++global_stats->class_init_count;
4292 ++thread_stats->class_init_count;
4293 global_stats->class_init_time_ns += (t1 - t0);
4294 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07004295 // Set the class as initialized except if failed to initialize static fields.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004296 klass->SetStatus(mirror::Class::kStatusInitialized, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004297 if (VLOG_IS_ON(class_linker)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07004298 std::string temp;
4299 LOG(INFO) << "Initialized class " << klass->GetDescriptor(&temp) << " from " <<
Mathieu Chartierf8322842014-05-16 10:59:25 -07004300 klass->GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08004301 }
Brian Carlstrom073278c2014-02-19 15:21:21 -08004302 // Opportunistically set static method trampolines to their destination.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004303 FixupStaticTrampolines(klass.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004304 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004305 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08004306 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004307}
4308
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004309bool ClassLinker::WaitForInitializeClass(Handle<mirror::Class> klass, Thread* self,
Mathieu Chartierc528dba2013-11-26 12:00:11 -08004310 ObjectLock<mirror::Class>& lock)
Ian Rogersb726dcb2012-09-05 08:57:23 -07004311 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004312 while (true) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004313 self->AssertNoPendingException();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004314 CHECK(!klass->IsInitialized());
Ian Rogers05f30572013-02-20 12:13:11 -08004315 lock.WaitIgnoringInterrupts();
Brian Carlstromd1422f82011-09-28 11:37:09 -07004316
4317 // When we wake up, repeat the test for init-in-progress. If
4318 // there's an exception pending (only possible if
Brian Carlstromb23eab12014-10-08 17:55:21 -07004319 // we were not using WaitIgnoringInterrupts), bail out.
Brian Carlstromd1422f82011-09-28 11:37:09 -07004320 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07004321 WrapExceptionInInitializer(klass);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004322 klass->SetStatus(mirror::Class::kStatusError, self);
Brian Carlstromd1422f82011-09-28 11:37:09 -07004323 return false;
4324 }
4325 // Spurious wakeup? Go back to waiting.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004326 if (klass->GetStatus() == mirror::Class::kStatusInitializing) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004327 continue;
4328 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004329 if (klass->GetStatus() == mirror::Class::kStatusVerified && Runtime::Current()->IsCompiler()) {
Ian Rogers3d1548d2012-09-24 14:08:03 -07004330 // Compile time initialization failed.
4331 return false;
4332 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07004333 if (klass->IsErroneous()) {
4334 // The caller wants an exception, but it was thrown in a
4335 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07004336 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004337 PrettyDescriptor(klass.Get()).c_str());
Brian Carlstromb23eab12014-10-08 17:55:21 -07004338 VlogClassInitializationFailure(klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -07004339 return false;
4340 }
4341 if (klass->IsInitialized()) {
4342 return true;
4343 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004344 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass.Get()) << " is "
Mathieu Chartierc528dba2013-11-26 12:00:11 -08004345 << klass->GetStatus();
Brian Carlstromd1422f82011-09-28 11:37:09 -07004346 }
Ian Rogers07140832014-09-30 15:43:59 -07004347 UNREACHABLE();
Brian Carlstromd1422f82011-09-28 11:37:09 -07004348}
4349
Ian Rogersb5fb2072014-12-02 17:22:02 -08004350static bool HasSameSignatureWithDifferentClassLoaders(Thread* self,
4351 Handle<mirror::ArtMethod> method1,
4352 Handle<mirror::ArtMethod> method2)
4353 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4354 {
4355 StackHandleScope<1> hs(self);
4356 Handle<mirror::Class> return_type(hs.NewHandle(method1->GetReturnType()));
4357 if (UNLIKELY(method2->GetReturnType() != return_type.Get())) {
4358 return false;
4359 }
4360 }
4361 const DexFile::TypeList* types1 = method1->GetParameterTypeList();
4362 const DexFile::TypeList* types2 = method2->GetParameterTypeList();
4363 if (types1 == nullptr) {
4364 return (types2 == nullptr) || (types2->Size() == 0);
4365 } else if (UNLIKELY(types2 == nullptr)) {
4366 return types1->Size() == 0;
4367 }
4368 uint32_t num_types = types1->Size();
4369 if (UNLIKELY(num_types != types2->Size())) {
4370 return false;
4371 }
4372 for (uint32_t i = 0; i < num_types; ++i) {
4373 mirror::Class* param_type =
4374 method1->GetClassFromTypeIndex(types1->GetTypeItem(i).type_idx_, true);
4375 mirror::Class* other_param_type =
4376 method2->GetClassFromTypeIndex(types2->GetTypeItem(i).type_idx_, true);
4377 if (UNLIKELY(param_type != other_param_type)) {
4378 return false;
4379 }
4380 }
4381 return true;
4382}
4383
4384
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004385bool ClassLinker::ValidateSuperClassDescriptors(Handle<mirror::Class> klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004386 if (klass->IsInterface()) {
4387 return true;
4388 }
Ian Rogers151f2212014-05-06 11:27:27 -07004389 // Begin with the methods local to the superclass.
Ian Rogersded66a02014-10-28 18:12:55 -07004390 Thread* self = Thread::Current();
4391 StackHandleScope<2> hs(self);
Ian Rogersb5fb2072014-12-02 17:22:02 -08004392 MutableHandle<mirror::ArtMethod> h_m(hs.NewHandle<mirror::ArtMethod>(nullptr));
4393 MutableHandle<mirror::ArtMethod> super_h_m(hs.NewHandle<mirror::ArtMethod>(nullptr));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004394 if (klass->HasSuperClass() &&
4395 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004396 for (int i = klass->GetSuperClass()->GetVTableLength() - 1; i >= 0; --i) {
Ian Rogersb5fb2072014-12-02 17:22:02 -08004397 h_m.Assign(klass->GetVTableEntry(i));
4398 super_h_m.Assign(klass->GetSuperClass()->GetVTableEntry(i));
4399 if (h_m.Get() != super_h_m.Get() &&
4400 !HasSameSignatureWithDifferentClassLoaders(self, h_m, super_h_m)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004401 ThrowLinkageError(klass.Get(),
4402 "Class %s method %s resolves differently in superclass %s",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004403 PrettyDescriptor(klass.Get()).c_str(),
Ian Rogersb5fb2072014-12-02 17:22:02 -08004404 PrettyMethod(h_m.Get()).c_str(),
Ian Rogers151f2212014-05-06 11:27:27 -07004405 PrettyDescriptor(klass->GetSuperClass()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004406 return false;
4407 }
4408 }
4409 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07004410 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
Ian Rogers151f2212014-05-06 11:27:27 -07004411 if (klass->GetClassLoader() != klass->GetIfTable()->GetInterface(i)->GetClassLoader()) {
4412 uint32_t num_methods = klass->GetIfTable()->GetInterface(i)->NumVirtualMethods();
4413 for (uint32_t j = 0; j < num_methods; ++j) {
Ian Rogersb5fb2072014-12-02 17:22:02 -08004414 h_m.Assign(klass->GetIfTable()->GetMethodArray(i)->GetWithoutChecks(j));
4415 super_h_m.Assign(klass->GetIfTable()->GetInterface(i)->GetVirtualMethod(j));
4416 if (h_m.Get() != super_h_m.Get() &&
4417 !HasSameSignatureWithDifferentClassLoaders(self, h_m, super_h_m)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004418 ThrowLinkageError(klass.Get(),
4419 "Class %s method %s resolves differently in interface %s",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004420 PrettyDescriptor(klass.Get()).c_str(),
Ian Rogersb5fb2072014-12-02 17:22:02 -08004421 PrettyMethod(h_m.Get()).c_str(),
Ian Rogers151f2212014-05-06 11:27:27 -07004422 PrettyDescriptor(klass->GetIfTable()->GetInterface(i)).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004423 return false;
4424 }
4425 }
4426 }
4427 }
4428 return true;
4429}
4430
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004431bool ClassLinker::EnsureInitialized(Thread* self, Handle<mirror::Class> c, bool can_init_fields,
4432 bool can_init_parents) {
Mathieu Chartier0cd81352014-05-22 16:48:55 -07004433 DCHECK(c.Get() != nullptr);
Mathieu Chartier524507a2014-08-27 15:28:28 -07004434 if (c->IsInitialized()) {
Andreas Gampe48498592014-09-10 19:48:05 -07004435 EnsurePreverifiedMethods(c);
Mathieu Chartier524507a2014-08-27 15:28:28 -07004436 return true;
4437 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004438 const bool success = InitializeClass(self, c, can_init_fields, can_init_parents);
Mathieu Chartier524507a2014-08-27 15:28:28 -07004439 if (!success) {
4440 if (can_init_fields && can_init_parents) {
4441 CHECK(self->IsExceptionPending()) << PrettyClass(c.Get());
4442 }
4443 } else {
4444 self->AssertNoPendingException();
Ian Rogers595799e2012-01-11 17:32:51 -08004445 }
4446 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07004447}
4448
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004449void ClassLinker::FixupTemporaryDeclaringClass(mirror::Class* temp_class, mirror::Class* new_class) {
4450 mirror::ObjectArray<mirror::ArtField>* fields = new_class->GetIFields();
4451 if (fields != nullptr) {
4452 for (int index = 0; index < fields->GetLength(); index ++) {
4453 if (fields->Get(index)->GetDeclaringClass() == temp_class) {
4454 fields->Get(index)->SetDeclaringClass(new_class);
4455 }
4456 }
4457 }
4458
4459 fields = new_class->GetSFields();
4460 if (fields != nullptr) {
4461 for (int index = 0; index < fields->GetLength(); index ++) {
4462 if (fields->Get(index)->GetDeclaringClass() == temp_class) {
4463 fields->Get(index)->SetDeclaringClass(new_class);
4464 }
4465 }
4466 }
4467
4468 mirror::ObjectArray<mirror::ArtMethod>* methods = new_class->GetDirectMethods();
4469 if (methods != nullptr) {
4470 for (int index = 0; index < methods->GetLength(); index ++) {
4471 if (methods->Get(index)->GetDeclaringClass() == temp_class) {
4472 methods->Get(index)->SetDeclaringClass(new_class);
4473 }
4474 }
4475 }
4476
4477 methods = new_class->GetVirtualMethods();
4478 if (methods != nullptr) {
4479 for (int index = 0; index < methods->GetLength(); index ++) {
4480 if (methods->Get(index)->GetDeclaringClass() == temp_class) {
4481 methods->Get(index)->SetDeclaringClass(new_class);
4482 }
4483 }
4484 }
4485}
4486
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004487bool ClassLinker::LinkClass(Thread* self, const char* descriptor, Handle<mirror::Class> klass,
4488 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004489 mirror::Class** new_class) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004490 CHECK_EQ(mirror::Class::kStatusLoaded, klass->GetStatus());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004491
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004492 if (!LinkSuperClass(klass)) {
4493 return false;
4494 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004495 StackHandleScope<mirror::Class::kImtSize> imt_handle_scope(
4496 self, Runtime::Current()->GetImtUnimplementedMethod());
4497 if (!LinkMethods(self, klass, interfaces, &imt_handle_scope)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004498 return false;
4499 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004500 if (!LinkInstanceFields(self, klass)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004501 return false;
4502 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004503 size_t class_size;
Ian Rogers7b078e82014-09-10 14:44:24 -07004504 if (!LinkStaticFields(self, klass, &class_size)) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07004505 return false;
4506 }
4507 CreateReferenceInstanceOffsets(klass);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004508 CHECK_EQ(mirror::Class::kStatusLoaded, klass->GetStatus());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004509
4510 if (!klass->IsTemp() || (!init_done_ && klass->GetClassSize() == class_size)) {
4511 // We don't need to retire this class as it has no embedded tables or it was created the
4512 // correct size during class linker initialization.
4513 CHECK_EQ(klass->GetClassSize(), class_size) << PrettyDescriptor(klass.Get());
4514
4515 if (klass->ShouldHaveEmbeddedImtAndVTable()) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004516 klass->PopulateEmbeddedImtAndVTable(&imt_handle_scope);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004517 }
4518
4519 // This will notify waiters on klass that saw the not yet resolved
4520 // class in the class_table_ during EnsureResolved.
4521 klass->SetStatus(mirror::Class::kStatusResolved, self);
4522 *new_class = klass.Get();
4523 } else {
4524 CHECK(!klass->IsResolved());
4525 // Retire the temporary class and create the correctly sized resolved class.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004526 *new_class = klass->CopyOf(self, class_size, &imt_handle_scope);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004527 if (UNLIKELY(*new_class == nullptr)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004528 CHECK(self->IsExceptionPending()); // Expect an OOME.
4529 klass->SetStatus(mirror::Class::kStatusError, self);
4530 return false;
4531 }
4532
4533 CHECK_EQ((*new_class)->GetClassSize(), class_size);
4534 StackHandleScope<1> hs(self);
4535 auto new_class_h = hs.NewHandleWrapper<mirror::Class>(new_class);
4536 ObjectLock<mirror::Class> lock(self, new_class_h);
4537
4538 FixupTemporaryDeclaringClass(klass.Get(), new_class_h.Get());
4539
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08004540 mirror::Class* existing = UpdateClass(descriptor, new_class_h.Get(),
4541 ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004542 CHECK(existing == nullptr || existing == klass.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004543
4544 // This will notify waiters on temp class that saw the not yet resolved class in the
4545 // class_table_ during EnsureResolved.
4546 klass->SetStatus(mirror::Class::kStatusRetired, self);
4547
4548 CHECK_EQ(new_class_h->GetStatus(), mirror::Class::kStatusResolving);
4549 // This will notify waiters on new_class that saw the not yet resolved
4550 // class in the class_table_ during EnsureResolved.
4551 new_class_h->SetStatus(mirror::Class::kStatusResolved, self);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004552 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004553 return true;
4554}
4555
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004556bool ClassLinker::LoadSuperAndInterfaces(Handle<mirror::Class> klass, const DexFile& dex_file) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004557 CHECK_EQ(mirror::Class::kStatusIdx, klass->GetStatus());
Ian Rogers8b2c0b92013-09-19 02:56:49 -07004558 const DexFile::ClassDef& class_def = dex_file.GetClassDef(klass->GetDexClassDefIndex());
4559 uint16_t super_class_idx = class_def.superclass_idx_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004560 if (super_class_idx != DexFile::kDexNoIndex16) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004561 mirror::Class* super_class = ResolveType(dex_file, super_class_idx, klass.Get());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004562 if (super_class == nullptr) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07004563 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004564 return false;
4565 }
Ian Rogersbe125a92012-01-11 15:19:49 -08004566 // Verify
4567 if (!klass->CanAccess(super_class)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004568 ThrowIllegalAccessError(klass.Get(), "Class %s extended by class %s is inaccessible",
Ian Rogers62d6c772013-02-27 08:32:07 -08004569 PrettyDescriptor(super_class).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004570 PrettyDescriptor(klass.Get()).c_str());
Ian Rogersbe125a92012-01-11 15:19:49 -08004571 return false;
4572 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004573 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004574 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004575 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -07004576 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004577 if (interfaces != nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004578 for (size_t i = 0; i < interfaces->Size(); i++) {
4579 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004580 mirror::Class* interface = ResolveType(dex_file, idx, klass.Get());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004581 if (interface == nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004582 DCHECK(Thread::Current()->IsExceptionPending());
4583 return false;
4584 }
4585 // Verify
4586 if (!klass->CanAccess(interface)) {
4587 // TODO: the RI seemed to ignore this in my testing.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004588 ThrowIllegalAccessError(klass.Get(), "Interface %s implemented by class %s is inaccessible",
Ian Rogers62d6c772013-02-27 08:32:07 -08004589 PrettyDescriptor(interface).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004590 PrettyDescriptor(klass.Get()).c_str());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004591 return false;
4592 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004593 }
4594 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07004595 // Mark the class as loaded.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004596 klass->SetStatus(mirror::Class::kStatusLoaded, nullptr);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004597 return true;
4598}
4599
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004600bool ClassLinker::LinkSuperClass(Handle<mirror::Class> klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004601 CHECK(!klass->IsPrimitive());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004602 mirror::Class* super = klass->GetSuperClass();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004603 if (klass.Get() == GetClassRoot(kJavaLangObject)) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004604 if (super != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004605 ThrowClassFormatError(klass.Get(), "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004606 return false;
4607 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004608 return true;
4609 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004610 if (super == nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004611 ThrowLinkageError(klass.Get(), "No superclass defined for class %s",
4612 PrettyDescriptor(klass.Get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004613 return false;
4614 }
4615 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07004616 if (super->IsFinal() || super->IsInterface()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004617 ThrowIncompatibleClassChangeError(klass.Get(), "Superclass %s of %s is %s",
Ian Rogers62d6c772013-02-27 08:32:07 -08004618 PrettyDescriptor(super).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004619 PrettyDescriptor(klass.Get()).c_str(),
Ian Rogers62d6c772013-02-27 08:32:07 -08004620 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004621 return false;
4622 }
4623 if (!klass->CanAccess(super)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004624 ThrowIllegalAccessError(klass.Get(), "Superclass %s is inaccessible to class %s",
Ian Rogers62d6c772013-02-27 08:32:07 -08004625 PrettyDescriptor(super).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004626 PrettyDescriptor(klass.Get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004627 return false;
4628 }
Elliott Hughes20cde902011-10-04 17:37:27 -07004629
Brian Carlstromf3632832014-05-20 15:36:53 -07004630 // Inherit kAccClassIsFinalizable from the superclass in case this
4631 // class doesn't override finalize.
Elliott Hughes20cde902011-10-04 17:37:27 -07004632 if (super->IsFinalizable()) {
4633 klass->SetFinalizable();
4634 }
4635
Elliott Hughes2da50362011-10-10 16:57:08 -07004636 // Inherit reference flags (if any) from the superclass.
4637 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
4638 if (reference_flags != 0) {
4639 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
4640 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07004641 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07004642 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004643 ThrowLinkageError(klass.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08004644 "Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004645 PrettyDescriptor(klass.Get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07004646 return false;
4647 }
Elliott Hughes2da50362011-10-10 16:57:08 -07004648
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004649 if (kIsDebugBuild) {
4650 // Ensure super classes are fully resolved prior to resolving fields..
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004651 while (super != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004652 CHECK(super->IsResolved());
4653 super = super->GetSuperClass();
4654 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004655 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004656 return true;
4657}
4658
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004659// Populate the class vtable and itable. Compute return type indices.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004660bool ClassLinker::LinkMethods(Thread* self, Handle<mirror::Class> klass,
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004661 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
4662 StackHandleScope<mirror::Class::kImtSize>* out_imt) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004663 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004664 if (klass->IsInterface()) {
4665 // No vtable.
4666 size_t count = klass->NumVirtualMethods();
4667 if (!IsUint(16, count)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004668 ThrowClassFormatError(klass.Get(), "Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004669 return false;
4670 }
Carl Shapiro565f5072011-07-10 13:39:43 -07004671 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004672 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004673 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004674 } else if (!LinkVirtualMethods(self, klass)) { // Link virtual methods first.
4675 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004676 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004677 return LinkInterfaceMethods(self, klass, interfaces, out_imt); // Link interface method last.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004678}
4679
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004680// Comparator for name and signature of a method, used in finding overriding methods. Implementation
4681// avoids the use of handles, if it didn't then rather than compare dex files we could compare dex
4682// caches in the implementation below.
4683class MethodNameAndSignatureComparator FINAL : public ValueObject {
4684 public:
4685 explicit MethodNameAndSignatureComparator(mirror::ArtMethod* method)
4686 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
4687 dex_file_(method->GetDexFile()), mid_(&dex_file_->GetMethodId(method->GetDexMethodIndex())),
4688 name_(nullptr), name_len_(0) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004689 DCHECK(!method->IsProxyMethod()) << PrettyMethod(method);
4690 }
4691
4692 const char* GetName() {
4693 if (name_ == nullptr) {
4694 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_);
4695 }
4696 return name_;
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004697 }
4698
4699 bool HasSameNameAndSignature(mirror::ArtMethod* other)
4700 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4701 DCHECK(!other->IsProxyMethod()) << PrettyMethod(other);
4702 const DexFile* other_dex_file = other->GetDexFile();
4703 const DexFile::MethodId& other_mid = other_dex_file->GetMethodId(other->GetDexMethodIndex());
4704 if (dex_file_ == other_dex_file) {
4705 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_;
4706 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004707 GetName(); // Only used to make sure its calculated.
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004708 uint32_t other_name_len;
4709 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_,
4710 &other_name_len);
4711 if (name_len_ != other_name_len || strcmp(name_, other_name) != 0) {
4712 return false;
4713 }
4714 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid);
4715 }
4716
4717 private:
4718 // Dex file for the method to compare against.
4719 const DexFile* const dex_file_;
4720 // MethodId for the method to compare against.
4721 const DexFile::MethodId* const mid_;
4722 // Lazily computed name from the dex file's strings.
4723 const char* name_;
4724 // Lazily computed name length.
4725 uint32_t name_len_;
4726};
4727
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004728class LinkVirtualHashTable {
4729 public:
4730 LinkVirtualHashTable(Handle<mirror::Class> klass, size_t hash_size, uint32_t* hash_table)
4731 : klass_(klass), hash_size_(hash_size), hash_table_(hash_table) {
4732 std::fill(hash_table_, hash_table_ + hash_size_, invalid_index_);
4733 }
4734 void Add(uint32_t virtual_method_index) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4735 mirror::ArtMethod* local_method = klass_->GetVirtualMethodDuringLinking(virtual_method_index);
4736 const char* name = local_method->GetName();
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08004737 uint32_t hash = ComputeModifiedUtf8Hash(name);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004738 uint32_t index = hash % hash_size_;
4739 // Linear probe until we have an empty slot.
4740 while (hash_table_[index] != invalid_index_) {
4741 if (++index == hash_size_) {
4742 index = 0;
4743 }
4744 }
4745 hash_table_[index] = virtual_method_index;
4746 }
4747 uint32_t FindAndRemove(MethodNameAndSignatureComparator* comparator)
4748 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4749 const char* name = comparator->GetName();
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08004750 uint32_t hash = ComputeModifiedUtf8Hash(name);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004751 size_t index = hash % hash_size_;
4752 while (true) {
4753 const uint32_t value = hash_table_[index];
4754 // Since linear probe makes continuous blocks, hitting an invalid index means we are done
4755 // the block and can safely assume not found.
4756 if (value == invalid_index_) {
4757 break;
4758 }
4759 if (value != removed_index_) { // This signifies not already overriden.
4760 mirror::ArtMethod* virtual_method =
4761 klass_->GetVirtualMethodDuringLinking(value);
4762 if (comparator->HasSameNameAndSignature(virtual_method->GetInterfaceMethodIfProxy())) {
4763 hash_table_[index] = removed_index_;
4764 return value;
4765 }
4766 }
4767 if (++index == hash_size_) {
4768 index = 0;
4769 }
4770 }
4771 return GetNotFoundIndex();
4772 }
4773 static uint32_t GetNotFoundIndex() {
4774 return invalid_index_;
4775 }
4776
4777 private:
4778 static const uint32_t invalid_index_;
4779 static const uint32_t removed_index_;
4780
4781 Handle<mirror::Class> klass_;
4782 const size_t hash_size_;
4783 uint32_t* const hash_table_;
4784};
4785
4786const uint32_t LinkVirtualHashTable::invalid_index_ = std::numeric_limits<uint32_t>::max();
4787const uint32_t LinkVirtualHashTable::removed_index_ = std::numeric_limits<uint32_t>::max() - 1;
4788
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004789bool ClassLinker::LinkVirtualMethods(Thread* self, Handle<mirror::Class> klass) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004790 const size_t num_virtual_methods = klass->NumVirtualMethods();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004791 if (klass->HasSuperClass()) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004792 const size_t super_vtable_length = klass->GetSuperClass()->GetVTableLength();
4793 const size_t max_count = num_virtual_methods + super_vtable_length;
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004794 StackHandleScope<2> hs(self);
Mingyao Yang38eecb02014-08-13 14:51:03 -07004795 Handle<mirror::Class> super_class(hs.NewHandle(klass->GetSuperClass()));
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004796 MutableHandle<mirror::ObjectArray<mirror::ArtMethod>> vtable;
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004797 if (super_class->ShouldHaveEmbeddedImtAndVTable()) {
4798 vtable = hs.NewHandle(AllocArtMethodArray(self, max_count));
4799 if (UNLIKELY(vtable.Get() == nullptr)) {
4800 CHECK(self->IsExceptionPending()); // OOME.
4801 return false;
4802 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004803 for (size_t i = 0; i < super_vtable_length; i++) {
4804 vtable->SetWithoutChecks<false>(i, super_class->GetEmbeddedVTableEntry(i));
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004805 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004806 if (num_virtual_methods == 0) {
4807 klass->SetVTable(vtable.Get());
4808 return true;
4809 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004810 } else {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004811 mirror::ObjectArray<mirror::ArtMethod>* super_vtable = super_class->GetVTable();
4812 CHECK(super_vtable != nullptr) << PrettyClass(super_class.Get());
4813 if (num_virtual_methods == 0) {
4814 klass->SetVTable(super_vtable);
4815 return true;
4816 }
4817 vtable = hs.NewHandle(super_vtable->CopyOf(self, max_count));
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004818 if (UNLIKELY(vtable.Get() == nullptr)) {
4819 CHECK(self->IsExceptionPending()); // OOME.
4820 return false;
4821 }
Ian Rogersa436fde2013-08-27 23:34:06 -07004822 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004823 // How the algorithm works:
4824 // 1. Populate hash table by adding num_virtual_methods from klass. The values in the hash
4825 // table are: invalid_index for unused slots, index super_vtable_length + i for a virtual
4826 // method which has not been matched to a vtable method, and j if the virtual method at the
4827 // index overrode the super virtual method at index j.
4828 // 2. Loop through super virtual methods, if they overwrite, update hash table to j
4829 // (j < super_vtable_length) to avoid redundant checks. (TODO maybe use this info for reducing
4830 // the need for the initial vtable which we later shrink back down).
4831 // 3. Add non overridden methods to the end of the vtable.
4832 static constexpr size_t kMaxStackHash = 250;
4833 const size_t hash_table_size = num_virtual_methods * 3;
4834 uint32_t* hash_table_ptr;
4835 std::unique_ptr<uint32_t[]> hash_heap_storage;
4836 if (hash_table_size <= kMaxStackHash) {
4837 hash_table_ptr = reinterpret_cast<uint32_t*>(
4838 alloca(hash_table_size * sizeof(*hash_table_ptr)));
4839 } else {
4840 hash_heap_storage.reset(new uint32_t[hash_table_size]);
4841 hash_table_ptr = hash_heap_storage.get();
4842 }
4843 LinkVirtualHashTable hash_table(klass, hash_table_size, hash_table_ptr);
4844 // Add virtual methods to the hash table.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004845 for (size_t i = 0; i < num_virtual_methods; ++i) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004846 hash_table.Add(i);
4847 }
4848 // Loop through each super vtable method and see if they are overriden by a method we added to
4849 // the hash table.
4850 for (size_t j = 0; j < super_vtable_length; ++j) {
4851 // Search the hash table to see if we are overidden by any method.
4852 mirror::ArtMethod* super_method = vtable->GetWithoutChecks(j);
4853 MethodNameAndSignatureComparator super_method_name_comparator(
4854 super_method->GetInterfaceMethodIfProxy());
4855 uint32_t hash_index = hash_table.FindAndRemove(&super_method_name_comparator);
4856 if (hash_index != hash_table.GetNotFoundIndex()) {
4857 mirror::ArtMethod* virtual_method = klass->GetVirtualMethodDuringLinking(hash_index);
4858 if (klass->CanAccessMember(super_method->GetDeclaringClass(),
4859 super_method->GetAccessFlags())) {
4860 if (super_method->IsFinal()) {
4861 ThrowLinkageError(klass.Get(), "Method %s overrides final method in class %s",
4862 PrettyMethod(virtual_method).c_str(),
4863 super_method->GetDeclaringClassDescriptor());
4864 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004865 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004866 vtable->SetWithoutChecks<false>(j, virtual_method);
4867 virtual_method->SetMethodIndex(j);
4868 } else {
4869 LOG(WARNING) << "Before Android 4.1, method " << PrettyMethod(virtual_method)
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004870 << " would have incorrectly overridden the package-private method in "
4871 << PrettyDescriptor(super_method->GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004872 }
4873 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004874 }
4875 // Add the non overridden methods at the end.
4876 size_t actual_count = super_vtable_length;
4877 for (size_t i = 0; i < num_virtual_methods; ++i) {
4878 mirror::ArtMethod* local_method = klass->GetVirtualMethodDuringLinking(i);
4879 size_t method_idx = local_method->GetMethodIndexDuringLinking();
4880 if (method_idx < super_vtable_length &&
4881 local_method == vtable->GetWithoutChecks(method_idx)) {
4882 continue;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004883 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004884 vtable->SetWithoutChecks<false>(actual_count, local_method);
4885 local_method->SetMethodIndex(actual_count);
4886 ++actual_count;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004887 }
4888 if (!IsUint(16, actual_count)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004889 ThrowClassFormatError(klass.Get(), "Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004890 return false;
4891 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004892 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004893 CHECK_LE(actual_count, max_count);
4894 if (actual_count < max_count) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004895 vtable.Assign(vtable->CopyOf(self, actual_count));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004896 if (UNLIKELY(vtable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004897 CHECK(self->IsExceptionPending()); // OOME.
4898 return false;
4899 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004900 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004901 klass->SetVTable(vtable.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004902 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004903 CHECK_EQ(klass.Get(), GetClassRoot(kJavaLangObject));
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07004904 if (!IsUint(16, num_virtual_methods)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004905 ThrowClassFormatError(klass.Get(), "Too many methods: %d",
4906 static_cast<int>(num_virtual_methods));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004907 return false;
4908 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004909 mirror::ObjectArray<mirror::ArtMethod>* vtable = AllocArtMethodArray(self, num_virtual_methods);
4910 if (UNLIKELY(vtable == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004911 CHECK(self->IsExceptionPending()); // OOME.
4912 return false;
4913 }
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07004914 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07004915 mirror::ArtMethod* virtual_method = klass->GetVirtualMethodDuringLinking(i);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004916 vtable->SetWithoutChecks<false>(i, virtual_method);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004917 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004918 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004919 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004920 }
4921 return true;
4922}
4923
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004924bool ClassLinker::LinkInterfaceMethods(Thread* self, Handle<mirror::Class> klass,
4925 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
4926 StackHandleScope<mirror::Class::kImtSize>* out_imt) {
Mathieu Chartierd035c2d2014-10-27 17:30:20 -07004927 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004928 Runtime* const runtime = Runtime::Current();
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004929 const bool has_superclass = klass->HasSuperClass();
4930 const size_t super_ifcount = has_superclass ? klass->GetSuperClass()->GetIfTableCount() : 0U;
4931 const bool have_interfaces = interfaces.Get() != nullptr;
4932 const size_t num_interfaces =
4933 have_interfaces ? interfaces->GetLength() : klass->NumDirectInterfaces();
4934 if (num_interfaces == 0) {
4935 if (super_ifcount == 0) {
4936 // Class implements no interfaces.
4937 DCHECK_EQ(klass->GetIfTableCount(), 0);
4938 DCHECK(klass->GetIfTable() == nullptr);
4939 return true;
4940 }
Ian Rogers9bc81912012-10-11 21:43:36 -07004941 // Class implements same interfaces as parent, are any of these not marker interfaces?
4942 bool has_non_marker_interface = false;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004943 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable();
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004944 for (size_t i = 0; i < super_ifcount; ++i) {
Ian Rogers9bc81912012-10-11 21:43:36 -07004945 if (super_iftable->GetMethodArrayCount(i) > 0) {
4946 has_non_marker_interface = true;
4947 break;
4948 }
4949 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004950 // Class just inherits marker interfaces from parent so recycle parent's iftable.
Ian Rogers9bc81912012-10-11 21:43:36 -07004951 if (!has_non_marker_interface) {
Ian Rogers9bc81912012-10-11 21:43:36 -07004952 klass->SetIfTable(super_iftable);
4953 return true;
4954 }
4955 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004956 size_t ifcount = super_ifcount + num_interfaces;
4957 for (size_t i = 0; i < num_interfaces; i++) {
4958 mirror::Class* interface = have_interfaces ?
4959 interfaces->GetWithoutChecks(i) : mirror::Class::GetDirectInterface(self, klass, i);
4960 DCHECK(interface != nullptr);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004961 if (UNLIKELY(!interface->IsInterface())) {
4962 std::string temp;
4963 ThrowIncompatibleClassChangeError(klass.Get(), "Class %s implements non-interface class %s",
4964 PrettyDescriptor(klass.Get()).c_str(),
4965 PrettyDescriptor(interface->GetDescriptor(&temp)).c_str());
4966 return false;
4967 }
4968 ifcount += interface->GetIfTableCount();
4969 }
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004970 MutableHandle<mirror::IfTable> iftable(hs.NewHandle(AllocIfTable(self, ifcount)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004971 if (UNLIKELY(iftable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004972 CHECK(self->IsExceptionPending()); // OOME.
4973 return false;
4974 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004975 if (super_ifcount != 0) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004976 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07004977 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004978 mirror::Class* super_interface = super_iftable->GetInterface(i);
Ian Rogers9bc81912012-10-11 21:43:36 -07004979 iftable->SetInterface(i, super_interface);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07004980 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004981 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004982 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004983 // Flatten the interface inheritance hierarchy.
4984 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004985 for (size_t i = 0; i < num_interfaces; i++) {
Mathieu Chartierd035c2d2014-10-27 17:30:20 -07004986 mirror::Class* interface = have_interfaces ? interfaces->Get(i) :
4987 mirror::Class::GetDirectInterface(self, klass, i);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004988 // Check if interface is already in iftable
4989 bool duplicate = false;
4990 for (size_t j = 0; j < idx; j++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004991 mirror::Class* existing_interface = iftable->GetInterface(j);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004992 if (existing_interface == interface) {
4993 duplicate = true;
4994 break;
4995 }
4996 }
4997 if (!duplicate) {
4998 // Add this non-duplicate interface.
Ian Rogers9bc81912012-10-11 21:43:36 -07004999 iftable->SetInterface(idx++, interface);
Ian Rogersb52b01a2012-01-12 17:01:38 -08005000 // Add this interface's non-duplicate super-interfaces.
5001 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005002 mirror::Class* super_interface = interface->GetIfTable()->GetInterface(j);
Ian Rogersb52b01a2012-01-12 17:01:38 -08005003 bool super_duplicate = false;
5004 for (size_t k = 0; k < idx; k++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005005 mirror::Class* existing_interface = iftable->GetInterface(k);
Ian Rogersb52b01a2012-01-12 17:01:38 -08005006 if (existing_interface == super_interface) {
5007 super_duplicate = true;
5008 break;
5009 }
5010 }
5011 if (!super_duplicate) {
Ian Rogers9bc81912012-10-11 21:43:36 -07005012 iftable->SetInterface(idx++, super_interface);
Ian Rogersb52b01a2012-01-12 17:01:38 -08005013 }
5014 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005015 }
5016 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005017 self->AllowThreadSuspension();
Ian Rogersb52b01a2012-01-12 17:01:38 -08005018 // Shrink iftable in case duplicates were found
5019 if (idx < ifcount) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005020 DCHECK_NE(num_interfaces, 0U);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005021 iftable.Assign(down_cast<mirror::IfTable*>(iftable->CopyOf(self, idx * mirror::IfTable::kMax)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005022 if (UNLIKELY(iftable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07005023 CHECK(self->IsExceptionPending()); // OOME.
5024 return false;
5025 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08005026 ifcount = idx;
5027 } else {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005028 DCHECK_EQ(idx, ifcount);
Ian Rogersb52b01a2012-01-12 17:01:38 -08005029 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005030 klass->SetIfTable(iftable.Get());
Elliott Hughes4681c802011-09-25 18:04:37 -07005031 // If we're an interface, we don't need the vtable pointers, so we're done.
Ian Rogers9bc81912012-10-11 21:43:36 -07005032 if (klass->IsInterface()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005033 return true;
5034 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005035 size_t miranda_list_size = 0;
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005036 size_t max_miranda_methods = 0; // The max size of miranda_list.
5037 for (size_t i = 0; i < ifcount; ++i) {
5038 max_miranda_methods += iftable->GetInterface(i)->NumVirtualMethods();
5039 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005040 MutableHandle<mirror::ObjectArray<mirror::ArtMethod>>
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005041 miranda_list(hs.NewHandle(AllocArtMethodArray(self, max_miranda_methods)));
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005042 MutableHandle<mirror::ObjectArray<mirror::ArtMethod>> vtable(
5043 hs.NewHandle(klass->GetVTableDuringLinking()));
5044 // Copy the IMT from the super class if possible.
5045 bool extend_super_iftable = false;
5046 if (has_superclass) {
5047 mirror::Class* super_class = klass->GetSuperClass();
5048 extend_super_iftable = true;
5049 if (super_class->ShouldHaveEmbeddedImtAndVTable()) {
5050 for (size_t i = 0; i < mirror::Class::kImtSize; ++i) {
5051 out_imt->SetReference(i, super_class->GetEmbeddedImTableEntry(i));
5052 }
5053 } else {
5054 // No imt in the super class, need to reconstruct from the iftable.
5055 mirror::IfTable* if_table = super_class->GetIfTable();
5056 mirror::ArtMethod* conflict_method = runtime->GetImtConflictMethod();
5057 const size_t length = super_class->GetIfTableCount();
5058 for (size_t i = 0; i < length; ++i) {
5059 mirror::Class* interface = iftable->GetInterface(i);
5060 const size_t num_virtuals = interface->NumVirtualMethods();
5061 const size_t method_array_count = if_table->GetMethodArrayCount(i);
5062 DCHECK_EQ(num_virtuals, method_array_count);
5063 if (method_array_count == 0) {
5064 continue;
5065 }
5066 mirror::ObjectArray<mirror::ArtMethod>* method_array = if_table->GetMethodArray(i);
5067 for (size_t j = 0; j < num_virtuals; ++j) {
5068 mirror::ArtMethod* method = method_array->GetWithoutChecks(j);
5069 if (method->IsMiranda()) {
5070 continue;
5071 }
5072 mirror::ArtMethod* interface_method = interface->GetVirtualMethod(j);
5073 uint32_t imt_index = interface_method->GetDexMethodIndex() % mirror::Class::kImtSize;
5074 mirror::ArtMethod* imt_ref = out_imt->GetReference(imt_index)->AsArtMethod();
5075 if (imt_ref == runtime->GetImtUnimplementedMethod()) {
5076 out_imt->SetReference(imt_index, method);
5077 } else if (imt_ref != conflict_method) {
5078 out_imt->SetReference(imt_index, conflict_method);
5079 }
5080 }
5081 }
5082 }
5083 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07005084 for (size_t i = 0; i < ifcount; ++i) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005085 self->AllowThreadSuspension();
Mathieu Chartierc528dba2013-11-26 12:00:11 -08005086 size_t num_methods = iftable->GetInterface(i)->NumVirtualMethods();
Ian Rogers9bc81912012-10-11 21:43:36 -07005087 if (num_methods > 0) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08005088 StackHandleScope<2> hs2(self);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005089 const bool is_super = i < super_ifcount;
5090 const bool super_interface = is_super && extend_super_iftable;
5091 Handle<mirror::ObjectArray<mirror::ArtMethod>> method_array;
5092 Handle<mirror::ObjectArray<mirror::ArtMethod>> input_array;
5093 if (super_interface) {
5094 mirror::IfTable* if_table = klass->GetSuperClass()->GetIfTable();
5095 DCHECK(if_table != nullptr);
5096 DCHECK(if_table->GetMethodArray(i) != nullptr);
5097 // If we are working on a super interface, try extending the existing method array.
Andreas Gampe277ccbd2014-11-03 21:36:10 -08005098 method_array = hs2.NewHandle(if_table->GetMethodArray(i)->Clone(self)->
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005099 AsObjectArray<mirror::ArtMethod>());
5100 // We are overwriting a super class interface, try to only virtual methods instead of the
5101 // whole vtable.
Andreas Gampe277ccbd2014-11-03 21:36:10 -08005102 input_array = hs2.NewHandle(klass->GetVirtualMethods());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005103 } else {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08005104 method_array = hs2.NewHandle(AllocArtMethodArray(self, num_methods));
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005105 // A new interface, we need the whole vtable incase a new interface method is implemented
5106 // in the whole superclass.
5107 input_array = vtable;
5108 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005109 if (UNLIKELY(method_array.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07005110 CHECK(self->IsExceptionPending()); // OOME.
5111 return false;
5112 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005113 iftable->SetMethodArray(i, method_array.Get());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005114 if (input_array.Get() == nullptr) {
5115 // If the added virtual methods is empty, do nothing.
5116 DCHECK(super_interface);
5117 continue;
5118 }
Ian Rogers62d6c772013-02-27 08:32:07 -08005119 for (size_t j = 0; j < num_methods; ++j) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005120 mirror::ArtMethod* interface_method = iftable->GetInterface(i)->GetVirtualMethod(j);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005121 MethodNameAndSignatureComparator interface_name_comparator(
5122 interface_method->GetInterfaceMethodIfProxy());
Ian Rogers9bc81912012-10-11 21:43:36 -07005123 int32_t k;
5124 // For each method listed in the interface's method list, find the
5125 // matching method in our class's method list. We want to favor the
5126 // subclass over the superclass, which just requires walking
5127 // back from the end of the vtable. (This only matters if the
5128 // superclass defines a private method and this class redefines
5129 // it -- otherwise it would use the same vtable slot. In .dex files
5130 // those don't end up in the virtual method table, so it shouldn't
5131 // matter which direction we go. We walk it backward anyway.)
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005132 for (k = input_array->GetLength() - 1; k >= 0; --k) {
5133 mirror::ArtMethod* vtable_method = input_array->GetWithoutChecks(k);
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005134 mirror::ArtMethod* vtable_method_for_name_comparison =
5135 vtable_method->GetInterfaceMethodIfProxy();
5136 if (interface_name_comparator.HasSameNameAndSignature(
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005137 vtable_method_for_name_comparison)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005138 if (!vtable_method->IsAbstract() && !vtable_method->IsPublic()) {
Brian Carlstromf3632832014-05-20 15:36:53 -07005139 ThrowIllegalAccessError(
5140 klass.Get(),
5141 "Method '%s' implementing interface method '%s' is not public",
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005142 PrettyMethod(vtable_method).c_str(),
5143 PrettyMethod(interface_method).c_str());
Ian Rogers9bc81912012-10-11 21:43:36 -07005144 return false;
5145 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005146 method_array->SetWithoutChecks<false>(j, vtable_method);
Jeff Hao88474b42013-10-23 16:24:40 -07005147 // Place method in imt if entry is empty, place conflict otherwise.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005148 uint32_t imt_index = interface_method->GetDexMethodIndex() % mirror::Class::kImtSize;
5149 mirror::ArtMethod* imt_ref = out_imt->GetReference(imt_index)->AsArtMethod();
5150 mirror::ArtMethod* conflict_method = runtime->GetImtConflictMethod();
5151 if (imt_ref == runtime->GetImtUnimplementedMethod()) {
5152 out_imt->SetReference(imt_index, vtable_method);
5153 } else if (imt_ref != conflict_method) {
5154 // If we are not a conflict and we have the same signature and name as the imt entry,
5155 // it must be that we overwrote a superclass vtable entry.
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005156 MethodNameAndSignatureComparator imt_ref_name_comparator(
5157 imt_ref->GetInterfaceMethodIfProxy());
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005158 if (imt_ref_name_comparator.HasSameNameAndSignature(
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005159 vtable_method_for_name_comparison)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005160 out_imt->SetReference(imt_index, vtable_method);
5161 } else {
5162 out_imt->SetReference(imt_index, conflict_method);
5163 }
Jeff Hao88474b42013-10-23 16:24:40 -07005164 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005165 break;
5166 }
5167 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005168 if (k < 0 && !super_interface) {
5169 mirror::ArtMethod* miranda_method = nullptr;
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005170 for (size_t l = 0; l < miranda_list_size; ++l) {
5171 mirror::ArtMethod* mir_method = miranda_list->Get(l);
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005172 if (interface_name_comparator.HasSameNameAndSignature(mir_method)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005173 miranda_method = mir_method;
Ian Rogers9bc81912012-10-11 21:43:36 -07005174 break;
5175 }
5176 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005177 if (miranda_method == nullptr) {
Ian Rogersa436fde2013-08-27 23:34:06 -07005178 // Point the interface table at a phantom slot.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005179 miranda_method = interface_method->Clone(self)->AsArtMethod();
5180 if (UNLIKELY(miranda_method == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07005181 CHECK(self->IsExceptionPending()); // OOME.
5182 return false;
5183 }
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005184 DCHECK_LT(miranda_list_size, max_miranda_methods);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005185 miranda_list->Set<false>(miranda_list_size++, miranda_method);
Ian Rogers9bc81912012-10-11 21:43:36 -07005186 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005187 method_array->SetWithoutChecks<false>(j, miranda_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005188 }
5189 }
5190 }
5191 }
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005192 if (miranda_list_size > 0) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07005193 int old_method_count = klass->NumVirtualMethods();
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005194 int new_method_count = old_method_count + miranda_list_size;
Ian Rogersa436fde2013-08-27 23:34:06 -07005195 mirror::ObjectArray<mirror::ArtMethod>* virtuals;
5196 if (old_method_count == 0) {
5197 virtuals = AllocArtMethodArray(self, new_method_count);
5198 } else {
5199 virtuals = klass->GetVirtualMethods()->CopyOf(self, new_method_count);
5200 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005201 if (UNLIKELY(virtuals == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07005202 CHECK(self->IsExceptionPending()); // OOME.
5203 return false;
5204 }
5205 klass->SetVirtualMethods(virtuals);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005206
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005207 int old_vtable_count = vtable->GetLength();
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005208 int new_vtable_count = old_vtable_count + miranda_list_size;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005209 vtable.Assign(vtable->CopyOf(self, new_vtable_count));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005210 if (UNLIKELY(vtable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07005211 CHECK(self->IsExceptionPending()); // OOME.
5212 return false;
5213 }
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07005214 for (size_t i = 0; i < miranda_list_size; ++i) {
5215 mirror::ArtMethod* method = miranda_list->Get(i);
Ian Rogers9074b992011-10-26 17:41:55 -07005216 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07005217 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
5218 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
5219 klass->SetVirtualMethod(old_method_count + i, method);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005220 vtable->SetWithoutChecks<false>(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005221 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005222 // TODO: do not assign to the vtable field until it is fully constructed.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005223 klass->SetVTable(vtable.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005224 }
Elliott Hughes4681c802011-09-25 18:04:37 -07005225
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005226 if (kIsDebugBuild) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08005227 mirror::ObjectArray<mirror::ArtMethod>* check_vtable = klass->GetVTableDuringLinking();
5228 for (int i = 0; i < check_vtable->GetLength(); ++i) {
5229 CHECK(check_vtable->GetWithoutChecks(i) != nullptr);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005230 }
Elliott Hughes4681c802011-09-25 18:04:37 -07005231 }
5232
Ian Rogers7b078e82014-09-10 14:44:24 -07005233 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005234 return true;
5235}
5236
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005237bool ClassLinker::LinkInstanceFields(Thread* self, Handle<mirror::Class> klass) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005238 CHECK(klass.Get() != nullptr);
Ian Rogers7b078e82014-09-10 14:44:24 -07005239 return LinkFields(self, klass, false, nullptr);
Brian Carlstrom4873d462011-08-21 15:23:39 -07005240}
5241
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005242bool ClassLinker::LinkStaticFields(Thread* self, Handle<mirror::Class> klass, size_t* class_size) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005243 CHECK(klass.Get() != nullptr);
Ian Rogers7b078e82014-09-10 14:44:24 -07005244 return LinkFields(self, klass, true, class_size);
Brian Carlstrom4873d462011-08-21 15:23:39 -07005245}
5246
Brian Carlstromdbc05252011-09-09 01:59:59 -07005247struct LinkFieldsComparator {
Mathieu Chartier590fee92013-09-13 13:46:47 -07005248 explicit LinkFieldsComparator() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
5249 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07005250 // No thread safety analysis as will be called from STL. Checked lock held in constructor.
Ian Rogersef7d42f2014-01-06 12:55:46 -08005251 bool operator()(mirror::ArtField* field1, mirror::ArtField* field2)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005252 NO_THREAD_SAFETY_ANALYSIS {
Fred Shih37f05ef2014-07-16 18:38:08 -07005253 // First come reference fields, then 64-bit, then 32-bit, and then 16-bit, then finally 8-bit.
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07005254 Primitive::Type type1 = field1->GetTypeAsPrimitiveType();
5255 Primitive::Type type2 = field2->GetTypeAsPrimitiveType();
Ian Rogersef7d42f2014-01-06 12:55:46 -08005256 if (type1 != type2) {
Vladimir Markod5777482014-11-12 17:02:02 +00005257 if (type1 == Primitive::kPrimNot) {
5258 // Reference always goes first.
5259 return true;
Ian Rogersef7d42f2014-01-06 12:55:46 -08005260 }
Vladimir Markod5777482014-11-12 17:02:02 +00005261 if (type2 == Primitive::kPrimNot) {
5262 // Reference always goes first.
5263 return false;
5264 }
5265 size_t size1 = Primitive::ComponentSize(type1);
5266 size_t size2 = Primitive::ComponentSize(type2);
5267 if (size1 != size2) {
5268 // Larger primitive types go first.
5269 return size1 > size2;
5270 }
5271 // Primitive types differ but sizes match. Arbitrarily order by primitive type.
5272 return type1 < type2;
Brian Carlstromdbc05252011-09-09 01:59:59 -07005273 }
Vladimir Marko7a7c1db2014-11-17 15:13:34 +00005274 // Same basic group? Then sort by dex field index. This is guaranteed to be sorted
5275 // by name and for equal names by type id index.
5276 // NOTE: This works also for proxies. Their static fields are assigned appropriate indexes.
5277 return field1->GetDexFieldIndex() < field2->GetDexFieldIndex();
Brian Carlstromdbc05252011-09-09 01:59:59 -07005278 }
5279};
5280
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005281bool ClassLinker::LinkFields(Thread* self, Handle<mirror::Class> klass, bool is_static,
Ian Rogers7b078e82014-09-10 14:44:24 -07005282 size_t* class_size) {
5283 self->AllowThreadSuspension();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005284 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07005285 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005286
Brian Carlstromea46f952013-07-30 01:26:50 -07005287 mirror::ObjectArray<mirror::ArtField>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07005288 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005289
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005290 // Initialize field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07005291 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07005292 if (is_static) {
Vladimir Marko76649e82014-11-10 18:32:59 +00005293 field_offset = klass->GetFirstReferenceStaticFieldOffsetDuringLinking();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07005294 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005295 mirror::Class* super_class = klass->GetSuperClass();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005296 if (super_class != nullptr) {
Brian Carlstromf3632832014-05-20 15:36:53 -07005297 CHECK(super_class->IsResolved())
5298 << PrettyClass(klass.Get()) << " " << PrettyClass(super_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005299 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005300 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005301 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005302
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005303 CHECK_EQ(num_fields == 0, fields == nullptr) << PrettyClass(klass.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005304
Brian Carlstromdbc05252011-09-09 01:59:59 -07005305 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07005306 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromea46f952013-07-30 01:26:50 -07005307 std::deque<mirror::ArtField*> grouped_and_sorted_fields;
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07005308 const char* old_no_suspend_cause = self->StartAssertNoThreadSuspension(
Fred Shih37f05ef2014-07-16 18:38:08 -07005309 "Naked ArtField references in deque");
Brian Carlstromdbc05252011-09-09 01:59:59 -07005310 for (size_t i = 0; i < num_fields; i++) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005311 mirror::ArtField* f = fields->Get(i);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005312 CHECK(f != nullptr) << PrettyClass(klass.Get());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005313 grouped_and_sorted_fields.push_back(f);
Brian Carlstromdbc05252011-09-09 01:59:59 -07005314 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07005315 std::sort(grouped_and_sorted_fields.begin(), grouped_and_sorted_fields.end(),
5316 LinkFieldsComparator());
Brian Carlstromdbc05252011-09-09 01:59:59 -07005317
Fred Shih381e4ca2014-08-25 17:24:27 -07005318 // References should be at the front.
Brian Carlstromdbc05252011-09-09 01:59:59 -07005319 size_t current_field = 0;
5320 size_t num_reference_fields = 0;
Fred Shih381e4ca2014-08-25 17:24:27 -07005321 FieldGaps gaps;
5322
Brian Carlstromdbc05252011-09-09 01:59:59 -07005323 for (; current_field < num_fields; current_field++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07005324 mirror::ArtField* field = grouped_and_sorted_fields.front();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07005325 Primitive::Type type = field->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07005326 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07005327 if (isPrimitive) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07005328 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005329 }
Vladimir Marko76649e82014-11-10 18:32:59 +00005330 if (UNLIKELY(!IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(
5331 field_offset.Uint32Value()))) {
Fred Shih381e4ca2014-08-25 17:24:27 -07005332 MemberOffset old_offset = field_offset;
5333 field_offset = MemberOffset(RoundUp(field_offset.Uint32Value(), 4));
5334 AddFieldGap(old_offset.Uint32Value(), field_offset.Uint32Value(), &gaps);
5335 }
Vladimir Marko76649e82014-11-10 18:32:59 +00005336 DCHECK(IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07005337 grouped_and_sorted_fields.pop_front();
5338 num_reference_fields++;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005339 field->SetOffset(field_offset);
Vladimir Marko76649e82014-11-10 18:32:59 +00005340 field_offset = MemberOffset(field_offset.Uint32Value() +
5341 sizeof(mirror::HeapReference<mirror::Object>));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005342 }
Fred Shih381e4ca2014-08-25 17:24:27 -07005343 // Gaps are stored as a max heap which means that we must shuffle from largest to smallest
5344 // otherwise we could end up with suboptimal gap fills.
Vladimir Marko76649e82014-11-10 18:32:59 +00005345 ShuffleForward<8>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
5346 ShuffleForward<4>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
5347 ShuffleForward<2>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
5348 ShuffleForward<1>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
Fred Shih37f05ef2014-07-16 18:38:08 -07005349 CHECK(grouped_and_sorted_fields.empty()) << "Missed " << grouped_and_sorted_fields.size() <<
5350 " fields.";
Ian Rogers7b078e82014-09-10 14:44:24 -07005351 self->EndAssertNoThreadSuspension(old_no_suspend_cause);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005352
Elliott Hughesadb460d2011-10-05 17:02:34 -07005353 // We lie to the GC about the java.lang.ref.Reference.referent field, so it doesn't scan it.
Mathieu Chartier0cd81352014-05-22 16:48:55 -07005354 if (!is_static && klass->DescriptorEquals("Ljava/lang/ref/Reference;")) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07005355 // We know there are no non-reference fields in the Reference classes, and we know
5356 // that 'referent' is alphabetically last, so this is easy...
Brian Carlstromf3632832014-05-20 15:36:53 -07005357 CHECK_EQ(num_reference_fields, num_fields) << PrettyClass(klass.Get());
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07005358 CHECK_STREQ(fields->Get(num_fields - 1)->GetName(), "referent") << PrettyClass(klass.Get());
Elliott Hughesadb460d2011-10-05 17:02:34 -07005359 --num_reference_fields;
5360 }
5361
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005362 size_t size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005363 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07005364 if (is_static) {
5365 klass->SetNumReferenceStaticFields(num_reference_fields);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005366 *class_size = size;
Brian Carlstrom3320cf42011-10-04 14:58:28 -07005367 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005368 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07005369 if (!klass->IsVariableSize()) {
Mathieu Chartier2d721012014-11-10 11:08:06 -08005370 if (klass->DescriptorEquals("Ljava/lang/reflect/ArtMethod;")) {
5371 klass->SetObjectSize(mirror::ArtMethod::InstanceSize(sizeof(void*)));
5372 } else {
5373 std::string temp;
5374 DCHECK_GE(size, sizeof(mirror::Object)) << klass->GetDescriptor(&temp);
5375 size_t previous_size = klass->GetObjectSize();
5376 if (previous_size != 0) {
5377 // Make sure that we didn't originally have an incorrect size.
5378 CHECK_EQ(previous_size, size) << klass->GetDescriptor(&temp);
5379 }
5380 klass->SetObjectSize(size);
Mathieu Chartier79b4f382013-10-23 15:21:37 -07005381 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005382 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005383 }
Vladimir Marko76649e82014-11-10 18:32:59 +00005384
5385 if (kIsDebugBuild) {
5386 // Make sure that the fields array is ordered by name but all reference
5387 // offsets are at the beginning as far as alignment allows.
5388 MemberOffset start_ref_offset = is_static
5389 ? klass->GetFirstReferenceStaticFieldOffsetDuringLinking()
5390 : klass->GetFirstReferenceInstanceFieldOffset();
5391 MemberOffset end_ref_offset(start_ref_offset.Uint32Value() +
5392 num_reference_fields *
5393 sizeof(mirror::HeapReference<mirror::Object>));
5394 MemberOffset current_ref_offset = start_ref_offset;
5395 for (size_t i = 0; i < num_fields; i++) {
5396 mirror::ArtField* field = fields->Get(i);
5397 if ((false)) { // enable to debug field layout
5398 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
5399 << " class=" << PrettyClass(klass.Get())
5400 << " field=" << PrettyField(field)
5401 << " offset="
5402 << field->GetField32(mirror::ArtField::OffsetOffset());
5403 }
5404 if (i != 0) {
5405 mirror::ArtField* prev_field = fields->Get(i - 1u);
Vladimir Marko7a7c1db2014-11-17 15:13:34 +00005406 // NOTE: The field names can be the same. This is not possible in the Java language
5407 // but it's valid Java/dex bytecode and for example proguard can generate such bytecode.
5408 CHECK_LE(strcmp(prev_field->GetName(), field->GetName()), 0);
Vladimir Marko76649e82014-11-10 18:32:59 +00005409 }
5410 Primitive::Type type = field->GetTypeAsPrimitiveType();
5411 bool is_primitive = type != Primitive::kPrimNot;
5412 if (klass->DescriptorEquals("Ljava/lang/ref/Reference;") &&
5413 strcmp("referent", field->GetName()) == 0) {
5414 is_primitive = true; // We lied above, so we have to expect a lie here.
5415 }
5416 MemberOffset offset = field->GetOffsetDuringLinking();
5417 if (is_primitive) {
5418 if (offset.Uint32Value() < end_ref_offset.Uint32Value()) {
5419 // Shuffled before references.
5420 size_t type_size = Primitive::ComponentSize(type);
5421 CHECK_LT(type_size, sizeof(mirror::HeapReference<mirror::Object>));
5422 CHECK_LT(offset.Uint32Value(), start_ref_offset.Uint32Value());
5423 CHECK_LE(offset.Uint32Value() + type_size, start_ref_offset.Uint32Value());
5424 CHECK(!IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(offset.Uint32Value()));
5425 }
5426 } else {
5427 CHECK_EQ(current_ref_offset.Uint32Value(), offset.Uint32Value());
5428 current_ref_offset = MemberOffset(current_ref_offset.Uint32Value() +
5429 sizeof(mirror::HeapReference<mirror::Object>));
5430 }
5431 }
5432 CHECK_EQ(current_ref_offset.Uint32Value(), end_ref_offset.Uint32Value());
5433 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005434 return true;
5435}
5436
Vladimir Marko76649e82014-11-10 18:32:59 +00005437// Set the bitmap of reference instance field offsets.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005438void ClassLinker::CreateReferenceInstanceOffsets(Handle<mirror::Class> klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005439 uint32_t reference_offsets = 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005440 mirror::Class* super_class = klass->GetSuperClass();
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07005441 // Leave the reference offsets as 0 for mirror::Object (the class field is handled specially).
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005442 if (super_class != nullptr) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005443 reference_offsets = super_class->GetReferenceInstanceOffsets();
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07005444 // Compute reference offsets unless our superclass overflowed.
5445 if (reference_offsets != mirror::Class::kClassWalkSuper) {
5446 size_t num_reference_fields = klass->NumReferenceInstanceFieldsDuringLinking();
Vladimir Marko76649e82014-11-10 18:32:59 +00005447 if (num_reference_fields != 0u) {
5448 // All of the fields that contain object references are guaranteed be grouped in memory
5449 // starting at an appropriately aligned address after super class object data.
5450 uint32_t start_offset = RoundUp(super_class->GetObjectSize(),
5451 sizeof(mirror::HeapReference<mirror::Object>));
5452 uint32_t start_bit = (start_offset - mirror::kObjectHeaderSize) /
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07005453 sizeof(mirror::HeapReference<mirror::Object>);
Vladimir Marko76649e82014-11-10 18:32:59 +00005454 if (start_bit + num_reference_fields > 32) {
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07005455 reference_offsets = mirror::Class::kClassWalkSuper;
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07005456 } else {
Vladimir Marko76649e82014-11-10 18:32:59 +00005457 reference_offsets |= (0xffffffffu << start_bit) &
5458 (0xffffffffu >> (32 - (start_bit + num_reference_fields)));
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07005459 }
5460 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07005461 }
5462 }
Mingyao Yangfaff0f02014-09-10 12:03:22 -07005463 klass->SetReferenceInstanceOffsets(reference_offsets);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005464}
5465
Mathieu Chartier590fee92013-09-13 13:46:47 -07005466mirror::String* ClassLinker::ResolveString(const DexFile& dex_file, uint32_t string_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005467 Handle<mirror::DexCache> dex_cache) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005468 DCHECK(dex_cache.Get() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005469 mirror::String* resolved = dex_cache->GetResolvedString(string_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005470 if (resolved != nullptr) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005471 return resolved;
5472 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07005473 uint32_t utf16_length;
5474 const char* utf8_data = dex_file.StringDataAndUtf16LengthByIdx(string_idx, &utf16_length);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005475 mirror::String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005476 dex_cache->SetResolvedString(string_idx, string);
5477 return string;
5478}
5479
Mathieu Chartier590fee92013-09-13 13:46:47 -07005480mirror::Class* ClassLinker::ResolveType(const DexFile& dex_file, uint16_t type_idx,
Ian Rogersef7d42f2014-01-06 12:55:46 -08005481 mirror::Class* referrer) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005482 StackHandleScope<2> hs(Thread::Current());
5483 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache()));
5484 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader()));
Mathieu Chartier590fee92013-09-13 13:46:47 -07005485 return ResolveType(dex_file, type_idx, dex_cache, class_loader);
5486}
5487
5488mirror::Class* ClassLinker::ResolveType(const DexFile& dex_file, uint16_t type_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005489 Handle<mirror::DexCache> dex_cache,
5490 Handle<mirror::ClassLoader> class_loader) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005491 DCHECK(dex_cache.Get() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005492 mirror::Class* resolved = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005493 if (resolved == nullptr) {
Ian Rogers98379392014-02-24 16:53:16 -08005494 Thread* self = Thread::Current();
Ian Rogers0571d352011-11-03 19:51:38 -07005495 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Ian Rogers98379392014-02-24 16:53:16 -08005496 resolved = FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005497 if (resolved != nullptr) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05005498 // TODO: we used to throw here if resolved's class loader was not the
5499 // boot class loader. This was to permit different classes with the
5500 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005501 dex_cache->SetResolvedType(type_idx, resolved);
5502 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08005503 CHECK(self->IsExceptionPending())
Ian Rogerscab01012012-01-10 17:35:46 -08005504 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers62d6c772013-02-27 08:32:07 -08005505 // Convert a ClassNotFoundException to a NoClassDefFoundError.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005506 StackHandleScope<1> hs(self);
5507 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException(nullptr)));
Ian Rogers62d6c772013-02-27 08:32:07 -08005508 if (cause->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005509 DCHECK(resolved == nullptr); // No Handle needed to preserve resolved.
Ian Rogers98379392014-02-24 16:53:16 -08005510 self->ClearException();
jeffhao8cd6dda2012-02-22 10:15:34 -08005511 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005512 self->GetException(nullptr)->SetCause(cause.Get());
jeffhao8cd6dda2012-02-22 10:15:34 -08005513 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005514 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005515 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005516 DCHECK((resolved == nullptr) || resolved->IsResolved() || resolved->IsErroneous())
Brian Carlstromabcf7ae2013-09-23 22:19:52 -07005517 << PrettyDescriptor(resolved) << " " << resolved->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005518 return resolved;
5519}
5520
Mathieu Chartier0cd81352014-05-22 16:48:55 -07005521mirror::ArtMethod* ClassLinker::ResolveMethod(const DexFile& dex_file, uint32_t method_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005522 Handle<mirror::DexCache> dex_cache,
5523 Handle<mirror::ClassLoader> class_loader,
5524 Handle<mirror::ArtMethod> referrer,
Ian Rogersd91d6d62013-09-25 20:26:14 -07005525 InvokeType type) {
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005526 DCHECK(dex_cache.Get() != nullptr);
Ian Rogers08f753d2012-08-24 14:35:25 -07005527 // Check for hit in the dex cache.
Brian Carlstromea46f952013-07-30 01:26:50 -07005528 mirror::ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx);
Mathieu Chartier0cd81352014-05-22 16:48:55 -07005529 if (resolved != nullptr && !resolved->IsRuntimeMethod()) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005530 return resolved;
5531 }
Ian Rogers08f753d2012-08-24 14:35:25 -07005532 // Fail, get the declaring class.
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005533 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005534 mirror::Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005535 if (klass == nullptr) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07005536 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005537 return nullptr;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005538 }
Ian Rogers08f753d2012-08-24 14:35:25 -07005539 // Scan using method_idx, this saves string compares but will only hit for matching dex
5540 // caches/files.
5541 switch (type) {
5542 case kDirect: // Fall-through.
5543 case kStatic:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005544 resolved = klass->FindDirectMethod(dex_cache.Get(), method_idx);
Ian Rogers08f753d2012-08-24 14:35:25 -07005545 break;
5546 case kInterface:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005547 resolved = klass->FindInterfaceMethod(dex_cache.Get(), method_idx);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005548 DCHECK(resolved == nullptr || resolved->GetDeclaringClass()->IsInterface());
Ian Rogers08f753d2012-08-24 14:35:25 -07005549 break;
5550 case kSuper: // Fall-through.
5551 case kVirtual:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005552 resolved = klass->FindVirtualMethod(dex_cache.Get(), method_idx);
Ian Rogers08f753d2012-08-24 14:35:25 -07005553 break;
5554 default:
5555 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -07005556 UNREACHABLE();
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07005557 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005558 if (resolved == nullptr) {
Ian Rogers08f753d2012-08-24 14:35:25 -07005559 // Search by name, which works across dex files.
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005560 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
Ian Rogersd91d6d62013-09-25 20:26:14 -07005561 const Signature signature = dex_file.GetMethodSignature(method_id);
Ian Rogers08f753d2012-08-24 14:35:25 -07005562 switch (type) {
5563 case kDirect: // Fall-through.
5564 case kStatic:
jeffhao8cd6dda2012-02-22 10:15:34 -08005565 resolved = klass->FindDirectMethod(name, signature);
Ian Rogers08f753d2012-08-24 14:35:25 -07005566 break;
5567 case kInterface:
5568 resolved = klass->FindInterfaceMethod(name, signature);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005569 DCHECK(resolved == nullptr || resolved->GetDeclaringClass()->IsInterface());
Ian Rogers08f753d2012-08-24 14:35:25 -07005570 break;
5571 case kSuper: // Fall-through.
5572 case kVirtual:
5573 resolved = klass->FindVirtualMethod(name, signature);
5574 break;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005575 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005576 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005577 // If we found a method, check for incompatible class changes.
5578 if (LIKELY(resolved != nullptr && !resolved->CheckIncompatibleClassChange(type))) {
Ian Rogers08f753d2012-08-24 14:35:25 -07005579 // Be a good citizen and update the dex cache to speed subsequent calls.
5580 dex_cache->SetResolvedMethod(method_idx, resolved);
5581 return resolved;
5582 } else {
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005583 // If we had a method, it's an incompatible-class-change error.
5584 if (resolved != nullptr) {
5585 ThrowIncompatibleClassChangeError(type, resolved->GetInvokeType(), resolved, referrer.Get());
5586 } else {
5587 // We failed to find the method which means either an access error, an incompatible class
5588 // change, or no such method. First try to find the method among direct and virtual methods.
5589 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
5590 const Signature signature = dex_file.GetMethodSignature(method_id);
5591 switch (type) {
5592 case kDirect:
5593 case kStatic:
Ian Rogers08f753d2012-08-24 14:35:25 -07005594 resolved = klass->FindVirtualMethod(name, signature);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005595 // Note: kDirect and kStatic are also mutually exclusive, but in that case we would
5596 // have had a resolved method before, which triggers the "true" branch above.
5597 break;
5598 case kInterface:
5599 case kVirtual:
5600 case kSuper:
5601 resolved = klass->FindDirectMethod(name, signature);
5602 break;
5603 }
5604
5605 // If we found something, check that it can be accessed by the referrer.
Ian Rogerse0a02da2014-12-02 14:10:53 -08005606 bool exception_generated = false;
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005607 if (resolved != nullptr && referrer.Get() != nullptr) {
5608 mirror::Class* methods_class = resolved->GetDeclaringClass();
5609 mirror::Class* referring_class = referrer->GetDeclaringClass();
5610 if (!referring_class->CanAccess(methods_class)) {
5611 ThrowIllegalAccessErrorClassForMethodDispatch(referring_class, methods_class,
5612 resolved, type);
Ian Rogerse0a02da2014-12-02 14:10:53 -08005613 exception_generated = true;
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005614 } else if (!referring_class->CanAccessMember(methods_class,
5615 resolved->GetAccessFlags())) {
5616 ThrowIllegalAccessErrorMethod(referring_class, resolved);
Ian Rogerse0a02da2014-12-02 14:10:53 -08005617 exception_generated = true;
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005618 }
5619 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08005620 if (!exception_generated) {
5621 // Otherwise, throw an IncompatibleClassChangeError if we found something, and check
5622 // interface methods and throw if we find the method there. If we find nothing, throw a
5623 // NoSuchMethodError.
5624 switch (type) {
5625 case kDirect:
5626 case kStatic:
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005627 if (resolved != nullptr) {
5628 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer.Get());
5629 } else {
Ian Rogerse0a02da2014-12-02 14:10:53 -08005630 resolved = klass->FindInterfaceMethod(name, signature);
5631 if (resolved != nullptr) {
5632 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer.Get());
5633 } else {
5634 ThrowNoSuchMethodError(type, klass, name, signature);
5635 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005636 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08005637 break;
5638 case kInterface:
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005639 if (resolved != nullptr) {
Ian Rogerse0a02da2014-12-02 14:10:53 -08005640 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get());
5641 } else {
5642 resolved = klass->FindVirtualMethod(name, signature);
5643 if (resolved != nullptr) {
5644 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer.Get());
5645 } else {
5646 ThrowNoSuchMethodError(type, klass, name, signature);
5647 }
5648 }
5649 break;
5650 case kSuper:
5651 if (resolved != nullptr) {
5652 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get());
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005653 } else {
5654 ThrowNoSuchMethodError(type, klass, name, signature);
5655 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08005656 break;
5657 case kVirtual:
5658 if (resolved != nullptr) {
5659 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get());
5660 } else {
5661 resolved = klass->FindInterfaceMethod(name, signature);
5662 if (resolved != nullptr) {
5663 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer.Get());
5664 } else {
5665 ThrowNoSuchMethodError(type, klass, name, signature);
5666 }
5667 }
5668 break;
5669 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005670 }
Ian Rogers08f753d2012-08-24 14:35:25 -07005671 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08005672 Thread::Current()->AssertPendingException();
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07005673 return nullptr;
Ian Rogers08f753d2012-08-24 14:35:25 -07005674 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005675}
5676
Mathieu Chartier590fee92013-09-13 13:46:47 -07005677mirror::ArtField* ClassLinker::ResolveField(const DexFile& dex_file, uint32_t field_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005678 Handle<mirror::DexCache> dex_cache,
5679 Handle<mirror::ClassLoader> class_loader,
Brian Carlstrome8104522013-10-15 21:56:36 -07005680 bool is_static) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005681 DCHECK(dex_cache.Get() != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07005682 mirror::ArtField* resolved = dex_cache->GetResolvedField(field_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07005683 if (resolved != nullptr) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005684 return resolved;
5685 }
5686 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
Mathieu Chartierf8322842014-05-16 10:59:25 -07005687 Thread* const self = Thread::Current();
5688 StackHandleScope<1> hs(self);
5689 Handle<mirror::Class> klass(
5690 hs.NewHandle(ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader)));
Andreas Gampe58a5af82014-07-31 16:23:49 -07005691 if (klass.Get() == nullptr) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08005692 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampe58a5af82014-07-31 16:23:49 -07005693 return nullptr;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005694 }
5695
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07005696 if (is_static) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005697 resolved = mirror::Class::FindStaticField(self, klass, dex_cache.Get(), field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07005698 } else {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005699 resolved = klass->FindInstanceField(dex_cache.Get(), field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07005700 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005701
Andreas Gampe58a5af82014-07-31 16:23:49 -07005702 if (resolved == nullptr) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005703 const char* name = dex_file.GetFieldName(field_id);
5704 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
5705 if (is_static) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005706 resolved = mirror::Class::FindStaticField(self, klass, name, type);
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005707 } else {
5708 resolved = klass->FindInstanceField(name, type);
5709 }
Andreas Gampe58a5af82014-07-31 16:23:49 -07005710 if (resolved == nullptr) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005711 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass.Get(), type, name);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005712 return nullptr;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005713 }
Ian Rogersb067ac22011-12-13 18:05:09 -08005714 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005715 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08005716 return resolved;
5717}
5718
Brian Carlstromea46f952013-07-30 01:26:50 -07005719mirror::ArtField* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005720 uint32_t field_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005721 Handle<mirror::DexCache> dex_cache,
5722 Handle<mirror::ClassLoader> class_loader) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005723 DCHECK(dex_cache.Get() != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07005724 mirror::ArtField* resolved = dex_cache->GetResolvedField(field_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07005725 if (resolved != nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08005726 return resolved;
5727 }
5728 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
Mathieu Chartierf8322842014-05-16 10:59:25 -07005729 Thread* self = Thread::Current();
5730 StackHandleScope<1> hs(self);
5731 Handle<mirror::Class> klass(
5732 hs.NewHandle(ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005733 if (klass.Get() == nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08005734 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005735 return nullptr;
Ian Rogersb067ac22011-12-13 18:05:09 -08005736 }
5737
Ian Rogersdfb325e2013-10-30 01:00:44 -07005738 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_));
5739 StringPiece type(dex_file.StringDataByIdx(
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005740 dex_file.GetTypeId(field_id.type_idx_).descriptor_idx_));
Mathieu Chartierf8322842014-05-16 10:59:25 -07005741 resolved = mirror::Class::FindField(self, klass, name, type);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005742 if (resolved != nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08005743 dex_cache->SetResolvedField(field_idx, resolved);
5744 } else {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005745 ThrowNoSuchFieldError("", klass.Get(), type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005746 }
5747 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07005748}
5749
Brian Carlstromea46f952013-07-30 01:26:50 -07005750const char* ClassLinker::MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005751 uint32_t* length) {
5752 mirror::Class* declaring_class = referrer->GetDeclaringClass();
5753 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
Ian Rogers4445a7e2012-10-05 17:19:13 -07005754 const DexFile& dex_file = *dex_cache->GetDexFile();
Ian Rogersad25ac52011-10-04 19:13:33 -07005755 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08005756 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07005757}
5758
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005759void ClassLinker::DumpAllClasses(int flags) {
5760 if (dex_cache_image_class_lookup_required_) {
5761 MoveImageClassesToClassTable();
5762 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07005763 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
5764 // lock held, because it might need to resolve a field's type, which would try to take the lock.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005765 std::vector<mirror::Class*> all_classes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07005766 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07005767 ReaderMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005768 for (GcRoot<mirror::Class>& it : class_table_) {
5769 all_classes.push_back(it.Read());
Ian Rogers5d76c432011-10-31 21:42:49 -07005770 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07005771 }
5772
5773 for (size_t i = 0; i < all_classes.size(); ++i) {
5774 all_classes[i]->DumpClass(std::cerr, flags);
5775 }
5776}
5777
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08005778static OatFile::OatMethod CreateOatMethod(const void* code, bool is_portable) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005779 CHECK_EQ(kUsePortableCompiler, is_portable);
5780 CHECK(code != nullptr);
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08005781 const uint8_t* base = reinterpret_cast<const uint8_t*>(code); // Base of data points at code.
5782 base -= sizeof(void*); // Move backward so that code_offset != 0.
5783 const uint32_t code_offset = sizeof(void*);
5784 return OatFile::OatMethod(base, code_offset);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005785}
5786
5787bool ClassLinker::IsPortableResolutionStub(const void* entry_point) const {
5788 return (entry_point == GetPortableResolutionStub()) ||
5789 (portable_resolution_trampoline_ == entry_point);
5790}
5791
5792bool ClassLinker::IsQuickResolutionStub(const void* entry_point) const {
5793 return (entry_point == GetQuickResolutionStub()) ||
5794 (quick_resolution_trampoline_ == entry_point);
5795}
5796
5797bool ClassLinker::IsPortableToInterpreterBridge(const void* entry_point) const {
5798 return (entry_point == GetPortableToInterpreterBridge());
5799 // TODO: portable_to_interpreter_bridge_trampoline_ == entry_point;
5800}
5801
5802bool ClassLinker::IsQuickToInterpreterBridge(const void* entry_point) const {
5803 return (entry_point == GetQuickToInterpreterBridge()) ||
5804 (quick_to_interpreter_bridge_trampoline_ == entry_point);
5805}
5806
5807bool ClassLinker::IsQuickGenericJniStub(const void* entry_point) const {
5808 return (entry_point == GetQuickGenericJniStub()) ||
5809 (quick_generic_jni_trampoline_ == entry_point);
5810}
5811
5812const void* ClassLinker::GetRuntimeQuickGenericJniStub() const {
5813 return GetQuickGenericJniStub();
5814}
5815
5816void ClassLinker::SetEntryPointsToCompiledCode(mirror::ArtMethod* method, const void* method_code,
5817 bool is_portable) const {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08005818 OatFile::OatMethod oat_method = CreateOatMethod(method_code, is_portable);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005819 oat_method.LinkMethod(method);
5820 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
5821 // Create bridges to transition between different kinds of compiled bridge.
5822 if (method->GetEntryPointFromPortableCompiledCode() == nullptr) {
5823 method->SetEntryPointFromPortableCompiledCode(GetPortableToQuickBridge());
5824 } else {
5825 CHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr);
5826 method->SetEntryPointFromQuickCompiledCode(GetQuickToPortableBridge());
5827 method->SetIsPortableCompiled();
5828 }
5829}
5830
5831void ClassLinker::SetEntryPointsToInterpreter(mirror::ArtMethod* method) const {
5832 if (!method->IsNative()) {
5833 method->SetEntryPointFromInterpreter(artInterpreterToInterpreterBridge);
5834 method->SetEntryPointFromPortableCompiledCode(GetPortableToInterpreterBridge());
5835 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
5836 } else {
5837 const void* quick_method_code = GetQuickGenericJniStub();
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08005838 OatFile::OatMethod oat_method = CreateOatMethod(quick_method_code, false);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005839 oat_method.LinkMethod(method);
5840 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
5841 method->SetEntryPointFromPortableCompiledCode(GetPortableToQuickBridge());
5842 }
5843}
5844
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005845void ClassLinker::DumpForSigQuit(std::ostream& os) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005846 Thread* self = Thread::Current();
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005847 if (dex_cache_image_class_lookup_required_) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005848 ScopedObjectAccess soa(self);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005849 MoveImageClassesToClassTable();
5850 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005851 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005852 os << "Zygote loaded classes=" << pre_zygote_class_table_.Size() << " post zygote classes="
5853 << class_table_.Size() << "\n";
Elliott Hughescac6cc72011-11-03 20:31:21 -07005854}
5855
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005856size_t ClassLinker::NumLoadedClasses() {
5857 if (dex_cache_image_class_lookup_required_) {
5858 MoveImageClassesToClassTable();
5859 }
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07005860 ReaderMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005861 // Only return non zygote classes since these are the ones which apps which care about.
5862 return class_table_.Size();
Elliott Hughese27955c2011-08-26 15:21:24 -07005863}
5864
Brian Carlstrom47d237a2011-10-18 15:08:33 -07005865pid_t ClassLinker::GetClassesLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -07005866 return Locks::classlinker_classes_lock_->GetExclusiveOwnerTid();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07005867}
5868
5869pid_t ClassLinker::GetDexLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07005870 return dex_lock_.GetExclusiveOwnerTid();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07005871}
5872
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005873void ClassLinker::SetClassRoot(ClassRoot class_root, mirror::Class* klass) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005874 DCHECK(!init_done_);
5875
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005876 DCHECK(klass != nullptr);
5877 DCHECK(klass->GetClassLoader() == nullptr);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005878
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07005879 mirror::ObjectArray<mirror::Class>* class_roots = class_roots_.Read();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005880 DCHECK(class_roots != nullptr);
5881 DCHECK(class_roots->Get(class_root) == nullptr);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07005882 class_roots->Set<false>(class_root, klass);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005883}
5884
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005885const char* ClassLinker::GetClassRootDescriptor(ClassRoot class_root) {
5886 static const char* class_roots_descriptors[] = {
5887 "Ljava/lang/Class;",
5888 "Ljava/lang/Object;",
5889 "[Ljava/lang/Class;",
5890 "[Ljava/lang/Object;",
5891 "Ljava/lang/String;",
5892 "Ljava/lang/DexCache;",
5893 "Ljava/lang/ref/Reference;",
5894 "Ljava/lang/reflect/ArtField;",
5895 "Ljava/lang/reflect/ArtMethod;",
5896 "Ljava/lang/reflect/Proxy;",
5897 "[Ljava/lang/String;",
5898 "[Ljava/lang/reflect/ArtField;",
5899 "[Ljava/lang/reflect/ArtMethod;",
5900 "Ljava/lang/ClassLoader;",
5901 "Ljava/lang/Throwable;",
5902 "Ljava/lang/ClassNotFoundException;",
5903 "Ljava/lang/StackTraceElement;",
5904 "Z",
5905 "B",
5906 "C",
5907 "D",
5908 "F",
5909 "I",
5910 "J",
5911 "S",
5912 "V",
5913 "[Z",
5914 "[B",
5915 "[C",
5916 "[D",
5917 "[F",
5918 "[I",
5919 "[J",
5920 "[S",
5921 "[Ljava/lang/StackTraceElement;",
5922 };
Andreas Gampe575e78c2014-11-03 23:41:03 -08005923 static_assert(arraysize(class_roots_descriptors) == size_t(kClassRootsMax),
5924 "Mismatch between class descriptors and class-root enum");
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005925
5926 const char* descriptor = class_roots_descriptors[class_root];
5927 CHECK(descriptor != nullptr);
5928 return descriptor;
5929}
5930
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005931std::size_t ClassLinker::ClassDescriptorHashEquals::operator()(const GcRoot<mirror::Class>& root)
5932 const {
5933 std::string temp;
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005934 return ComputeModifiedUtf8Hash(root.Read()->GetDescriptor(&temp));
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005935}
5936
5937bool ClassLinker::ClassDescriptorHashEquals::operator()(const GcRoot<mirror::Class>& a,
5938 const GcRoot<mirror::Class>& b) {
5939 if (a.Read()->GetClassLoader() != b.Read()->GetClassLoader()) {
5940 return false;
5941 }
5942 std::string temp;
5943 return a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp));
5944}
5945
5946std::size_t ClassLinker::ClassDescriptorHashEquals::operator()(
5947 const std::pair<const char*, mirror::ClassLoader*>& element) const {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005948 return ComputeModifiedUtf8Hash(element.first);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005949}
5950
5951bool ClassLinker::ClassDescriptorHashEquals::operator()(
5952 const GcRoot<mirror::Class>& a, const std::pair<const char*, mirror::ClassLoader*>& b) {
5953 if (a.Read()->GetClassLoader() != b.second) {
5954 return false;
5955 }
5956 return a.Read()->DescriptorEquals(b.first);
5957}
5958
5959bool ClassLinker::ClassDescriptorHashEquals::operator()(const GcRoot<mirror::Class>& a,
5960 const char* descriptor) {
5961 return a.Read()->DescriptorEquals(descriptor);
5962}
5963
5964std::size_t ClassLinker::ClassDescriptorHashEquals::operator()(const char* descriptor) const {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005965 return ComputeModifiedUtf8Hash(descriptor);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005966}
5967
Sebastien Hertz6963e442014-11-26 22:11:27 +01005968bool ClassLinker::MayBeCalledWithDirectCodePointer(mirror::ArtMethod* m) {
5969 // Non-image methods don't use direct code pointer.
5970 if (!m->GetDeclaringClass()->IsBootStrapClassLoaded()) {
5971 return false;
5972 }
5973 if (m->IsPrivate()) {
5974 // The method can only be called inside its own oat file. Therefore it won't be called using
5975 // its direct code if the oat file has been compiled in PIC mode.
5976 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
5977 const DexFile& dex_file = m->GetDeclaringClass()->GetDexFile();
5978 const OatFile::OatDexFile* oat_dex_file = class_linker->FindOpenedOatDexFileForDexFile(dex_file);
5979 if (oat_dex_file == nullptr) {
5980 // No oat file: the method has not been compiled.
5981 return false;
5982 }
5983 const OatFile* oat_file = oat_dex_file->GetOatFile();
5984 return oat_file != nullptr && !oat_file->IsPic();
5985 } else {
5986 // The method can be called outside its own oat file. Therefore it won't be called using its
5987 // direct code pointer only if all loaded oat files have been compiled in PIC mode.
5988 ReaderMutexLock mu(Thread::Current(), dex_lock_);
5989 for (const OatFile* oat_file : oat_files_) {
5990 if (!oat_file->IsPic()) {
5991 return true;
5992 }
5993 }
5994 return false;
5995 }
5996}
5997
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005998} // namespace art